Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (2f4f6b278f873282c5a1c0c1905a9c3479688328)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (2f4f6b278f873282c5a1c0c1905a9c3479688328)
  • Date: Sun, 15 Jun 2008 11:20:53 -0500

GIT changes to master grimoire by Jaka Kranjc <lynxlynxlynx AT sourcemage.org>:

graphics/exiv2/HISTORY | 4 ++++
graphics/exiv2/UP_TRIGGERS | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 2f4f6b278f873282c5a1c0c1905a9c3479688328
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

exiv2: fixed UP_TRIGGERS

diff --git a/graphics/exiv2/HISTORY b/graphics/exiv2/HISTORY
index 061572d..2de5b93 100644
--- a/graphics/exiv2/HISTORY
+++ b/graphics/exiv2/HISTORY
@@ -1,3 +1,7 @@
+2008-06-15 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * UP_TRIGGERS: use the correct version when checking if a spell needs
to
+ be triggered - the previous check was broken for at least the last
bump
+
2008-06-06 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 0.17

diff --git a/graphics/exiv2/UP_TRIGGERS b/graphics/exiv2/UP_TRIGGERS
index eaedfbe..c3d0eae 100755
--- a/graphics/exiv2/UP_TRIGGERS
+++ b/graphics/exiv2/UP_TRIGGERS
@@ -1,5 +1,5 @@
# up_trigger everything on major version updates
-
+local OLD_SO_VERSION=2
local OLD_SPELL_VERSION=""
if spell_ok $SPELL; then
OLD_SPELL_VERSION="$(installed_version $SPELL)"
@@ -8,7 +8,7 @@ if spell_ok $SPELL; then
message "Figuring out what spells need to be recast, this may take a
while."
for each in $(show_up_depends $SPELL 1); do
if gaze install $each | xargs readelf -d 2> /dev/null |
- grep -q "NEEDED.*libexiv2-${OLD_SPELL_VERSION}.so"; then
+ grep -q "NEEDED.*libexiv2.so.${OLD_SO_VERSION}"; then
up_trigger $each cast_self
fi
done



  • [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (2f4f6b278f873282c5a1c0c1905a9c3479688328), Jaka Kranjc, 06/15/2008

Archive powered by MHonArc 2.6.24.

Top of Page