summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaka Kranjc2006-06-21 18:28:41 +0200
committerArwed v. Merkatz2006-06-23 10:28:23 +0200
commita248c1bb18acb51222f90143762aafa1276a2df0 (patch)
tree36c773c7d936c16def4ce46331e1d96161bf0e43
parent1320b12787c3870ab584360d175c4da49611d8bd (diff)
replaced fast_up_depends with show_up_depends, bug #12665
(cherry picked from 790b0c9c07e4df3000f47c76b66e7368d1fbba2f commit)
-rw-r--r--ChangeLog3
-rw-r--r--audio-libs/wavpack/HISTORY3
-rwxr-xr-xaudio-libs/wavpack/UP_TRIGGERS2
-rw-r--r--crypto/openssl/HISTORY3
-rwxr-xr-xcrypto/openssl/UP_TRIGGERS2
-rw-r--r--database/db/HISTORY3
-rwxr-xr-xdatabase/db/UP_TRIGGERS2
-rw-r--r--database/firebird/HISTORY3
-rwxr-xr-xdatabase/firebird/UP_TRIGGERS2
-rwxr-xr-xlibcompat4
-rw-r--r--libs/expat/HISTORY3
-rwxr-xr-xlibs/expat/UP_TRIGGERS2
-rw-r--r--perl-cpan/perl/HISTORY3
-rwxr-xr-xperl-cpan/perl/UP_TRIGGERS2
-rw-r--r--video-libs/gstreamer/HISTORY3
-rwxr-xr-xvideo-libs/gstreamer/UP_TRIGGERS2
16 files changed, 33 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 75992e1c2f..5d8544eb5e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2006-06-21 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
+ * libcompat: replaced fast_up_depends with show_up_depends, bug #12665,
+
2006-05-27 Arwed v. Merkatz <v.merkatz@gmx.net>
* video/ffmpeg-cvs, video/ffmpeg-svn: renamed ffmpeg-cvs to ffmpeg-svn
diff --git a/audio-libs/wavpack/HISTORY b/audio-libs/wavpack/HISTORY
index 649e1128e8..f850c14b08 100644
--- a/audio-libs/wavpack/HISTORY
+++ b/audio-libs/wavpack/HISTORY
@@ -1,3 +1,6 @@
+2006-06-16 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
+ * UP_TRIGGERS: replaced fast_up_depends with show_up_depends, bug #12665
+
2006-05-23 Arwed v. Merkatz <v.merkatz@gmx.net>
* DETAILS: updated SOURCE_HASH, see bug #11986
* PRE_BUILD, debug-fix.patch: removed, fixed in the updated tarball
diff --git a/audio-libs/wavpack/UP_TRIGGERS b/audio-libs/wavpack/UP_TRIGGERS
index 4d8337f028..055b0027f7 100755
--- a/audio-libs/wavpack/UP_TRIGGERS
+++ b/audio-libs/wavpack/UP_TRIGGERS
@@ -2,7 +2,7 @@
local OLD_SPELL_VERSION=""
spell_ok $SPELL && OLD_SPELL_VERSION="$(installed_version $SPELL)"
if [ "$VERSION" != "$OLD_SPELL_VERSION" ]; then
- for each in $(fast_up_depends $SPELL 1); do
+ for each in $(show_up_depends $SPELL 1); do
up_trigger $each cast_self
done
fi
diff --git a/crypto/openssl/HISTORY b/crypto/openssl/HISTORY
index e1310711e8..073cc806f7 100644
--- a/crypto/openssl/HISTORY
+++ b/crypto/openssl/HISTORY
@@ -1,3 +1,6 @@
+2006-06-16 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
+ * UP_TRIGGERS: replaced fast_up_depends with show_up_depends, bug #12665
+
2006-04-28 Arwed v. Merkatz <v.merkatz@gmx.net>
* UP_TRIGGERS: replaced 'gaze depends' call with
fast_up_depends, bug #10661
diff --git a/crypto/openssl/UP_TRIGGERS b/crypto/openssl/UP_TRIGGERS
index 85921369e2..d9b53dc303 100755
--- a/crypto/openssl/UP_TRIGGERS
+++ b/crypto/openssl/UP_TRIGGERS
@@ -3,7 +3,7 @@
local OLD_SPELL_VERSION=""
spell_ok $SPELL && OLD_SPELL_VERSION="$(installed_version $SPELL)"
if [ "${VERSION/[a-z]*/}" != "${OLD_SPELL_VERSION/[a-z]*/}" ]; then
- for each in $(fast_up_depends $SPELL 1); do
+ for each in $(show_up_depends $SPELL 1); do
up_trigger $each cast_self
done
fi
diff --git a/database/db/HISTORY b/database/db/HISTORY
index 432a1e5337..0bafa4075b 100644
--- a/database/db/HISTORY
+++ b/database/db/HISTORY
@@ -1,3 +1,6 @@
+2006-06-16 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
+ * UP_TRIGGERS: replaced fast_up_depends with show_up_depends, bug #12665
+
2006-04-28 Arwed v. Merkatz <v.merkatz@gmx.net>
* UP_TRIGGERS: replaced 'gaze depends' call with
fast_up_depends, bug #10661
diff --git a/database/db/UP_TRIGGERS b/database/db/UP_TRIGGERS
index b0ccb43f04..5d79585a01 100755
--- a/database/db/UP_TRIGGERS
+++ b/database/db/UP_TRIGGERS
@@ -6,7 +6,7 @@ if spell_ok $SPELL; then
if test "${VERSION:0:3}" != "${OLD_SPELL_VERSION:0:3}"; then
message "This is a possibly incompatible update of libdb..."
message "Figuring out what spells need to be recast, this may take a while."
- for each in $(fast_up_depends $SPELL); do
+ for each in $(show_up_depends $SPELL); do
if gaze install $each | xargs readelf -d 2> /dev/null |
grep -q "NEEDED.*libdb\(\|_cxx\)-${OLD_SPELL_VERSION:0:3}"; then
up_trigger $each cast_self
diff --git a/database/firebird/HISTORY b/database/firebird/HISTORY
index e897e0e29d..f20bf1f170 100644
--- a/database/firebird/HISTORY
+++ b/database/firebird/HISTORY
@@ -1,3 +1,6 @@
+2006-06-16 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
+ * UP_TRIGGERS: replaced fast_up_depends with show_up_depends, bug #12665
+
2006-04-28 Arwed v. Merkatz <v.merkatz@gmx.net>
* UP_TRIGGERS: replaced 'gaze depends' call with
fast_up_depends, bug #10661
diff --git a/database/firebird/UP_TRIGGERS b/database/firebird/UP_TRIGGERS
index 858fccd913..9410eec698 100755
--- a/database/firebird/UP_TRIGGERS
+++ b/database/firebird/UP_TRIGGERS
@@ -7,7 +7,7 @@ if spell_ok $SPELL; then
if test "${VERSION:0:1}" != "${OLD_SPELL_VERSION:0:1}"; then
message "This is a possibly incompatible update of firebird..."
message "Figuring out what spells need to be recast, this may take a while."
- for each in $(fast_up_depends $SPELL 1); do
+ for each in $(show_up_depends $SPELL 1); do
if gaze install $each | xargs readelf -d 2> /dev/null |
grep -q "NEEDED.*libfbclient.so.${OLD_SPELL_VERSION:0:1}"; then
up_trigger $each cast_self
diff --git a/libcompat b/libcompat
index 59dbcb4de7..f9a8145846 100755
--- a/libcompat
+++ b/libcompat
@@ -8,7 +8,7 @@ function sub_depends() {
## Grimoire gaze depends alternative
## Uses gaze depends if the internal sorcery function isn't available
#-------------------------------------------------------------------------
-declare -f fast_up_depends &> /dev/null ||
-function fast_up_depends() {
+declare -f show_up_depends &> /dev/null ||
+function show_up_depends() {
gaze -q depends --fast "$@"
}
diff --git a/libs/expat/HISTORY b/libs/expat/HISTORY
index 1ff1fa80b3..e5ecb4cd61 100644
--- a/libs/expat/HISTORY
+++ b/libs/expat/HISTORY
@@ -1,3 +1,6 @@
+2006-06-16 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
+ * UP_TRIGGERS: replaced fast_up_depends with show_up_depends, bug #12665
+
2006-04-28 Arwed v. Merkatz <v.merkatz@gmx.net>
* UP_TRIGGERS: replaced 'gaze depends' call with
fast_up_depends, bug #10661
diff --git a/libs/expat/UP_TRIGGERS b/libs/expat/UP_TRIGGERS
index 9dfcdee81c..cc2f87964a 100755
--- a/libs/expat/UP_TRIGGERS
+++ b/libs/expat/UP_TRIGGERS
@@ -6,7 +6,7 @@ if spell_ok $SPELL; then
if test "${VERSION:0:3}" != "${OLD_SPELL_VERSION:0:3}"; then
message "This is a possibly incompatible update of libexpat..."
message "Figuring out what spells need to be recast, this may take a while."
- for each in $(fast_up_depends $SPELL); do
+ for each in $(show_up_depends $SPELL); do
if gaze install $each | xargs readelf -d 2> /dev/null |
grep -q "NEEDED.*libexpat.so.0"; then
up_trigger $each cast_self
diff --git a/perl-cpan/perl/HISTORY b/perl-cpan/perl/HISTORY
index f14586bbb7..127c23627b 100644
--- a/perl-cpan/perl/HISTORY
+++ b/perl-cpan/perl/HISTORY
@@ -1,3 +1,6 @@
+2006-06-16 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
+ * UP_TRIGGERS: replaced fast_up_depends with show_up_depends, bug #12665
+
2006-04-28 Arwed v. Merkatz <v.merkatz@gmx.net>
* UP_TRIGGERS: replaced 'gaze depends' call with
fast_up_depends, bug #10661
diff --git a/perl-cpan/perl/UP_TRIGGERS b/perl-cpan/perl/UP_TRIGGERS
index b7bff5dcc5..ec58396249 100755
--- a/perl-cpan/perl/UP_TRIGGERS
+++ b/perl-cpan/perl/UP_TRIGGERS
@@ -1,7 +1,7 @@
local OLD_SPELL_VERSION=""
spell_ok $SPELL && OLD_SPELL_VERSION="$(installed_version $SPELL)"
if [ "$VERSION" != "$OLD_SPELL_VERSION" ]; then
- for name in $(fast_up_depends perl); do
+ for name in $(show_up_depends perl); do
if test -f $INSTALL_LOGS/$name-$(installed_version $name); then
if grep -q "$TRACK_ROOT/usr/lib/perl5.*\.pm$" \
$INSTALL_LOGS/$name-$(installed_version $name); then
diff --git a/video-libs/gstreamer/HISTORY b/video-libs/gstreamer/HISTORY
index 034baef63f..119df9a12d 100644
--- a/video-libs/gstreamer/HISTORY
+++ b/video-libs/gstreamer/HISTORY
@@ -1,3 +1,6 @@
+2006-06-16 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
+ * UP_TRIGGERS: replaced fast_up_depends with show_up_depends, bug #12665
+
2006-04-28 Arwed v. Merkatz <v.merkatz@gmx.net>
* UP_TRIGGERS: replaced 'gaze depends' call with
fast_up_depends, bug #10661
diff --git a/video-libs/gstreamer/UP_TRIGGERS b/video-libs/gstreamer/UP_TRIGGERS
index 0461c39b54..a086fb3a23 100755
--- a/video-libs/gstreamer/UP_TRIGGERS
+++ b/video-libs/gstreamer/UP_TRIGGERS
@@ -4,7 +4,7 @@
local OLD_SPELL_VERSION=""
spell_ok $SPELL && OLD_SPELL_VERSION="$(installed_version $SPELL)"
if [ "${OLD_SPELL_VERSION:0:3}" = "0.8" ]; then
- for each in $(fast_up_depends $SPELL 1); do
+ for each in $(show_up_depends $SPELL 1); do
up_trigger $each cast_self
done
fi