Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Donald Johnson (615106e98a927dbe6024e7759f3a5a3f30b7879a)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Donald Johnson <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Donald Johnson (615106e98a927dbe6024e7759f3a5a3f30b7879a)
  • Date: Tue, 20 Oct 2009 17:58:27 -0500

GIT changes to master grimoire by Donald Johnson <ltdonny AT gmail.com>:

devel/python/HISTORY | 3 +--
devel/python/PRE_SUB_DEPENDS | 7 ++++---
devel/python/REPAIR^all^PRE_SUB_DEPENDS | 7 ++++---
devel/python/SUB_DEPENDS | 10 +++++++---
4 files changed, 16 insertions(+), 11 deletions(-)

New commits:
commit c7bbe1c5182fd66de63cdd0d2c4d1f84277b14cc
Author: Donald Johnson <ltdonny AT gmail.com>
Commit: Donald Johnson <ltdonny AT gmail.com>

python: updated subdepends files to include uppercase

commit 1eff67f5df7163e116f45c464826792cc5c5b5f9
Author: Donald Johnson <ltdonny AT gmail.com>
Commit: Donald Johnson <ltdonny AT gmail.com>

Revert "python: updated subdepends files to include uppercase"

python: incompatible syntax in {PRE_,}SUB_DEPENDS.

This reverts commit c5eb2cb017866717d152af5eb2b222667b7c69af.

diff --git a/devel/python/HISTORY b/devel/python/HISTORY
index cf1d8b6..b9f99df 100644
--- a/devel/python/HISTORY
+++ b/devel/python/HISTORY
@@ -1,6 +1,5 @@
2009-10-20 Donald Johnson <ltdonny AT gmail.com>
- * {PRE_,}SUB_DEPENDS: added sub from avahi and added uppercased
- statements
+ * {PRE_,}SUB_DEPENDS: added sub from avahi
* REPAIR^all^PRE_SUB_DEPENDS: created

2009-10-02 Vlad Glagolev <stealth AT sourcemage.org>
diff --git a/devel/python/PRE_SUB_DEPENDS b/devel/python/PRE_SUB_DEPENDS
index 4face16..fce0014 100755
--- a/devel/python/PRE_SUB_DEPENDS
+++ b/devel/python/PRE_SUB_DEPENDS
@@ -1,10 +1,11 @@
case $THIS_SUB_DEPENDS in
GDBM) is_depends_enabled $SPELL gdbm;;
- DB) ;&
+ DB) is_depends_enabled $SPELL db;;
+ SQLITE) is_depends_enabled $SPELL sqlite;;
+ EXPAT) is_depends_enabled $SPELL expat;;
+#Below is deprecated. Do not use
db) is_depends_enabled $SPELL db;;
- SQLITE) ;&
sqlite) is_depends_enabled $SPELL sqlite;;
- EXPAT) ;&
expat) is_depends_enabled $SPELL expat;;
*) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}"
return 1;;
diff --git a/devel/python/REPAIR^all^PRE_SUB_DEPENDS
b/devel/python/REPAIR^all^PRE_SUB_DEPENDS
index 4face16..fce0014 100755
--- a/devel/python/REPAIR^all^PRE_SUB_DEPENDS
+++ b/devel/python/REPAIR^all^PRE_SUB_DEPENDS
@@ -1,10 +1,11 @@
case $THIS_SUB_DEPENDS in
GDBM) is_depends_enabled $SPELL gdbm;;
- DB) ;&
+ DB) is_depends_enabled $SPELL db;;
+ SQLITE) is_depends_enabled $SPELL sqlite;;
+ EXPAT) is_depends_enabled $SPELL expat;;
+#Below is deprecated. Do not use
db) is_depends_enabled $SPELL db;;
- SQLITE) ;&
sqlite) is_depends_enabled $SPELL sqlite;;
- EXPAT) ;&
expat) is_depends_enabled $SPELL expat;;
*) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}"
return 1;;
diff --git a/devel/python/SUB_DEPENDS b/devel/python/SUB_DEPENDS
index 504484a..8c37f87 100755
--- a/devel/python/SUB_DEPENDS
+++ b/devel/python/SUB_DEPENDS
@@ -1,13 +1,17 @@
case $THIS_SUB_DEPENDS in
GDBM) message "GDBM support requested, forcing gdbm dependency" &&
depends gdbm;;
- DB) ;&
+ DB) message "DB support requested, forcing db dependency" &&
+ depends db;;
+ SQLITE) message "SQLite support requested, forcing sqlite dependency" &&
+ depends sqlite;;
+ EXPAT) message "XML parser module requested, forcing expat dependency" &&
+ depends expat;;
+#The below are deprecated
db) message "DB support requested, forcing db dependency" &&
depends db;;
- SQLITE) ;&
sqlite) message "SQLite support requested, forcing sqlite dependency" &&
depends sqlite;;
- EXPAT) ;&
expat) message "XML parser module requested, forcing expat dependency" &&
depends expat;;
*) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}"



  • [SM-Commit] GIT changes to master grimoire by Donald Johnson (615106e98a927dbe6024e7759f3a5a3f30b7879a), Donald Johnson, 10/20/2009

Archive powered by MHonArc 2.6.24.

Top of Page