Skip to Content.
Sympa Menu

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

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 (b2adac9868fc47c3d4fb056aa3e62f5901c4d21e)
  • Date: Mon, 24 Mar 2008 12:04:01 -0500

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

ChangeLog | 1 +
usr/share/man/man5/grimoire.5 | 2 +-
var/lib/sorcery/modules/libcodex | 2 +-
var/lib/sorcery/modules/libtablet | 2 +-
4 files changed, 4 insertions(+), 3 deletions(-)

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

grimoire.5, libcodex, libtablet: made BUILD_API=2 the default

diff --git a/ChangeLog b/ChangeLog
index 3210c15..b1ca18a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
* libcodex: made a few trivial optimisations, making the remaining
relevant
functions return by reference
fixed ENTERED typo in codex_clear_current_spell and two comments
+ * grimoire.5, libcodex, libtablet: made BUILD_API=2 the default

2008-03-24 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* Start 1.15 development stream.
diff --git a/usr/share/man/man5/grimoire.5 b/usr/share/man/man5/grimoire.5
index bd6b791..de52f03 100644
--- a/usr/share/man/man5/grimoire.5
+++ b/usr/share/man/man5/grimoire.5
@@ -30,7 +30,7 @@ used. The default instructions for each description file
can be found in
.PP
This manpage describes build_api 2. The older build_api 1 is
deprecated and getting removed.
-For spells to work with api2, BUILD_API=2 needs to be set in DETAILS.
+For spells to work with api1, BUILD_API=1 needs to be set in DETAILS.
.PP
A better description of these file are found on the website, under the spell
howto:
diff --git a/var/lib/sorcery/modules/libcodex
b/var/lib/sorcery/modules/libcodex
index c8cf3a5..4a74bf8 100755
--- a/var/lib/sorcery/modules/libcodex
+++ b/var/lib/sorcery/modules/libcodex
@@ -647,7 +647,7 @@ function codex_set_current_spell() {
# set a default build api if there isn't one already
# this isn't strictly necessary as other code should be able to handle the
# lack of this variable, but I want to play it safe.
- [[ -z $BUILD_API ]] && BUILD_API=1
+ [[ -z $BUILD_API ]] && BUILD_API=2
true
}

diff --git a/var/lib/sorcery/modules/libtablet
b/var/lib/sorcery/modules/libtablet
index 794523e..bd7a2b7 100755
--- a/var/lib/sorcery/modules/libtablet
+++ b/var/lib/sorcery/modules/libtablet
@@ -555,7 +555,7 @@ function tablet_set_spell() {

BUILD_API=$(<$SPELL_DIRECTORY/build_api)
# if BUILD_API isnt set something is wrong, but just be safe
- [[ -z $BUILD_API ]] && BUILD_API=1
+ [[ -z $BUILD_API ]] && BUILD_API=2

INST_LOG=$SPELL_DIRECTORY/logs/install
MD5_LOG=$SPELL_DIRECTORY/logs/md5sum



  • [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (b2adac9868fc47c3d4fb056aa3e62f5901c4d21e), Jaka Kranjc, 03/24/2008

Archive powered by MHonArc 2.6.24.

Top of Page