Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by David Kowis (ccd64df2035c7b12d79c13d433d2086547959b81)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Kowis <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by David Kowis (ccd64df2035c7b12d79c13d433d2086547959b81)
  • Date: Sun, 6 Aug 2006 22:34:38 -0500

GIT changes to master grimoire by David Kowis <dkowis AT shlrm.org>:

python-devel/trac/CONFIGURE | 5 +++++
python-devel/trac/DEPENDS | 19 ++++++++++++++++---
python-devel/trac/HISTORY | 3 +++
3 files changed, 24 insertions(+), 3 deletions(-)

New commits:
commit ccd64df2035c7b12d79c13d433d2086547959b81
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

trac:
updated depends, and added configure questions for them

diff --git a/python-devel/trac/CONFIGURE b/python-devel/trac/CONFIGURE
new file mode 100755
index 0000000..ed315fb
--- /dev/null
+++ b/python-devel/trac/CONFIGURE
@@ -0,0 +1,5 @@
+config_query_list TRAC_DATABASE "Which database would you like?" postgresql
sqlite
+
+if [[ "${TRAC_DATABASE}" == "postgresql" ]]; then
+ config_query_list TRAC_POSTGRES_DRIVER "Which python interface to
postgresql would you like?" pypgsql psycopg2
+fi
diff --git a/python-devel/trac/DEPENDS b/python-devel/trac/DEPENDS
index f2f50d1..d286701 100755
--- a/python-devel/trac/DEPENDS
+++ b/python-devel/trac/DEPENDS
@@ -1,9 +1,22 @@
depends clearsilver &&
-depends pysqlite &&
-depends subversion &&
depends python &&

+if [[ "${TRAC_DATABASE}" == "sqlite" ]]; then
+ depends pysqlite &&
+ depends sqlite
+elif [[ "${TRAC_DATABASE}" == "postgresql" ]]; then
+ depends postgresql &&
+ depends ${TRAC_POSTGRES_DRIVER}
+fi
+
+if [[ "${TRAC_HEAD}" == "y" ]]; then
+ depends subversion
+else
+ optional_depends subversion '' '' 'For subversion scm support'
+fi &&
+optional_depends enscript '' '' 'For syntax hilighting' &&
optional_depends diffutils '' '' 'for wiki document differencing' &&
-optional_depends mod_python '' '' 'for faster execution' &&
+optional_depends WEBSERVER '' '' 'To run connected to a "real" webserver' &&
+optional_depends mod_python '' '' 'for faster execution (reccomended)' &&
optional_depends docutils '' '' 'for reStructuredText (RST) support in
wiki' &&
optional_depends setuptools '' '' 'to be able to add 3rd party plug-ins to
Trac'
diff --git a/python-devel/trac/HISTORY b/python-devel/trac/HISTORY
index ad5408c..9d3d99c 100644
--- a/python-devel/trac/HISTORY
+++ b/python-devel/trac/HISTORY
@@ -1,5 +1,8 @@
2006-08-06 David Kowis <dkowis AT shlrm.org>
* DETAILS: version bump to 0.9.6
+ * DEPENDS: cleaned up dependencies, and made the right things optional
+ Also added depends for postgresql backend
+ * CONFIGURE: added to enable questions about database backend

2006-04-19 Sergey Lipnevich <sergey AT sourcemage.org>
* DETAILS: upgrade to 0.9.5.



  • [SM-Commit] GIT changes to master grimoire by David Kowis (ccd64df2035c7b12d79c13d433d2086547959b81), David Kowis, 08/06/2006

Archive powered by MHonArc 2.6.24.

Top of Page