Skip to Content.
Sympa Menu

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

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 (825a6d9890b101d0f0cb0ca0bb43dd368a974710)
  • Date: Wed, 1 Oct 2008 10:50:40 -0500

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

database/db/HISTORY | 3 +++
database/db/UP_TRIGGERS | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 825a6d9890b101d0f0cb0ca0bb43dd368a974710
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

db: only trigger the level 1 dependencies, not recursively

diff --git a/database/db/HISTORY b/database/db/HISTORY
index 17c94f3..1aad623 100644
--- a/database/db/HISTORY
+++ b/database/db/HISTORY
@@ -1,3 +1,6 @@
+2008-10-01 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * UP_TRIGGERS: only trigger the level 1 dependencies, not recursively
+
2008-09-28 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 4.7.25
note that the format of the logfile has changed
diff --git a/database/db/UP_TRIGGERS b/database/db/UP_TRIGGERS
index 5d79585..6b4e942 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 $(show_up_depends $SPELL); do
+ for each in $(show_up_depends $SPELL 1); 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



  • [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (825a6d9890b101d0f0cb0ca0bb43dd368a974710), Jaka Kranjc, 10/01/2008

Archive powered by MHonArc 2.6.24.

Top of Page