Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (4568ea29b0d08d544e21301c5b347058c183f4cd)

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 sorcery by Jaka Kranjc (4568ea29b0d08d544e21301c5b347058c183f4cd)
  • Date: Thu, 17 Apr 2008 10:16:26 -0500

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

ChangeLog | 1 +
var/lib/sorcery/modules/libsorcery | 6 +++++-
2 files changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 4568ea29b0d08d544e21301c5b347058c183f4cd
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

don't queue held spells

diff --git a/ChangeLog b/ChangeLog
index 6226588..27845e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@
removed an extra space in list_install_queue
reformatted and sanitized list_install_queue
also add held spells to the (tablet) version cache
+ don't queue held spells

2008-04-16 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* scribe.8: don't mention local grimoires for reindex-version,
nothing good
diff --git a/var/lib/sorcery/modules/libsorcery
b/var/lib/sorcery/modules/libsorcery
index b57abe8..e0bc73b 100755
--- a/var/lib/sorcery/modules/libsorcery
+++ b/var/lib/sorcery/modules/libsorcery
@@ -969,8 +969,12 @@ function update_install_queue() {
}
}
} ' > $tmp_queue 2> $recheck_queue
+ local spell
+ for spell in $(get_all_spells_with_status held); do
+ sed -i "/^$spell /d" $tmp_queue $recheck_queue
+ done
if [[ $VERBOSE_QUEUING == on ]]; then
- local spell message
+ local message
while read spell message; do
message "$SPELL_COLOR$spell$DEFAULT_COLOR: $message"
done < $tmp_queue



  • [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (4568ea29b0d08d544e21301c5b347058c183f4cd), Jaka Kranjc, 04/17/2008

Archive powered by MHonArc 2.6.24.

Top of Page