Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (4e1a7227d4c62ea11022944d7b797b261a1a17fc)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (4e1a7227d4c62ea11022944d7b797b261a1a17fc)
  • Date: Mon, 18 Feb 2008 21:12:44 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

python-pypi/trac/CONFIGURE | 6 +++---
python-pypi/trac/DEPENDS | 34 +++++++++++++++++++---------------
python-pypi/trac/DETAILS | 39 +++++++++++++--------------------------
python-pypi/trac/HISTORY | 8 ++++++++
python-pypi/trac/INSTALL | 5 +----
python-pypi/trac/PREPARE | 6 ------
python-pypi/trac/trac.ini | 6 ------
7 files changed, 44 insertions(+), 60 deletions(-)

New commits:
commit 4e1a7227d4c62ea11022944d7b797b261a1a17fc
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

trac: => 0.11b1 + lots of fixes

diff --git a/python-pypi/trac/CONFIGURE b/python-pypi/trac/CONFIGURE
index ed315fb..1a47aad 100755
--- a/python-pypi/trac/CONFIGURE
+++ b/python-pypi/trac/CONFIGURE
@@ -1,5 +1,5 @@
-config_query_list TRAC_DATABASE "Which database would you like?" postgresql
sqlite
+config_query_list TRAC_DB "Which database would you like?" sqlite mysql
postgresql &&

-if [[ "${TRAC_DATABASE}" == "postgresql" ]]; then
- config_query_list TRAC_POSTGRES_DRIVER "Which python interface to
postgresql would you like?" pypgsql psycopg2
+if [[ $TRAC_DB == postgresql ]]; then
+ config_query_list TRAC_POSTGRES_DRIVER "Which python interface to
postgresql would you like?" pypgsql psycopg2
fi
diff --git a/python-pypi/trac/DEPENDS b/python-pypi/trac/DEPENDS
index d868579..a2875a2 100755
--- a/python-pypi/trac/DEPENDS
+++ b/python-pypi/trac/DEPENDS
@@ -1,18 +1,22 @@
-depends clearsilver &&
depends python &&
-depends subversion &&

-if [[ "${TRAC_DATABASE}" == "sqlite" ]]; then
- depends pysqlite &&
- depends sqlite
-elif [[ "${TRAC_DATABASE}" == "postgresql" ]]; then
- depends postgresql &&
- depends ${TRAC_POSTGRES_DRIVER}
-fi
+runtime_depends genshi &&
+runtime_depends subversion &&
+runtime_depends setuptools &&

-optional_depends enscript '' '' 'For syntax hilighting' &&
-optional_depends diffutils '' '' 'for wiki document differencing' &&
-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'
+if [[ $TRAC_DB == sqlite ]]; then
+ runtime_depends pysqlite &&
+ runtime_depends sqlite
+elif [[ $TRAC_DB == mysql ]]; then
+ runtime_depends mysql-python &&
+ runtime_depends mysql
+elif [[ $TRAC_DB == postgresql ]]; then
+ runtime_depends $TRAC_POSTGRES_DRIVER &&
+ runtime_depends postgresql
+fi &&
+
+suggest_depends WEBSERVER "" "" "To run connected to a ``real'' webserver" &&
+suggest_depends mod_python "" "" "For faster execution with Apache
(recommended)" &&
+suggest_depends pygments "" "" "For syntax highlighting (Pygments)" &&
+suggest_depends enscript "" "" "For syntax highlighting (Enscript)" &&
+suggest_depends docutils "" "" "For reStructuredText (RST) support in wiki"
diff --git a/python-pypi/trac/DETAILS b/python-pypi/trac/DETAILS
index e016afb..12f8dd0 100755
--- a/python-pypi/trac/DETAILS
+++ b/python-pypi/trac/DETAILS
@@ -1,30 +1,17 @@
SPELL=trac
-if [[ "${TRAC_HEAD}" == "y" ]]; then
- if [[ "${TRAC_HEAD_AUTOUPDATE}" == "y" ]]; then
- VERSION=$(date +%Y%m%d)
- else
- VERSION=0.9.6
- fi
- SOURCE_IGNORE='volatile'
- SOURCE="$SPELL-$VERSION.tar.bz2"
- SOURCE_HINTS=old_svn_compat
- SOURCE_URL[0]="svn://svn.edgewall.com/repos/trac/trunk/:$SPELL-$VERSION"
- FORCE_DOWNLOAD=on
-else
- VERSION=0.9.6
-
SOURCE_HASH='sha512:41b74d1d2cc925c9e5032b166029cfb81e76aa9fce8585bb5f2d3619e24d73c1da7cc737f80741d42d9ae606d90f8e9caeb6ca1d5061fa5512c5cbaefefb04d4'
- SOURCE="$SPELL-$VERSION.tar.gz"
- SOURCE_URL[0]="http://ftp.edgewall.com/pub/trac/$SOURCE";
-fi
-SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
- WEB_SITE="http://www.edgewall.com/$SPELL/";
- FRESHMEAT_URL="http://freshmeat.net/projects/$SPELL/";
- LICENSE[0]='GPL'
- UPDATED=20050730
- GATHER_DOCS=off
+ VERSION=0.11b1
+
SOURCE_HASH=sha512:5c382c4f5c00c007555249315fb802193173ae465fcb2c55d1c4b3853bff790fb176278c7f9866e070927428ee999eba91f3d3a0310d0dd1bafc0f6e7e2157d3
+ SOURCE=Trac-$VERSION.tar.gz
+ SOURCE_URL[0]=http://ftp.edgewall.com/pub/$SPELL/$SOURCE
+ SOURCE_URL[1]=ftp://ftp.edgewall.com/pub/$SPELL/$SOURCE
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/Trac-$VERSION
+ WEB_SITE=http://trac.edgewall.org/
+ LICENSE[0]=BSD
KEYWORDS="subversion python devel"
- SHORT='A combined issue tracker, Subversion interface, and Wiki'
+ SHORT="A combined issue tracker, repository interface, and wiki"
cat << EOF
-Trac is a minimalistic but highly useful issue tracker and software project
environment based around an integrated Wiki engine. Features include an
interface to Subversion (source revision control), a bug/issue tracking
database, and convenient report facilities.
+Trac is a minimalistic but highly useful issue tracker and software project
+environment based around an integrated Wiki engine. Features include an
+interface to Subversion (source revision control), a bug/issue tracking
+database, and convenient report facilities.
EOF
-## Auto-generated from Freshmeat.net's project descriptor
diff --git a/python-pypi/trac/HISTORY b/python-pypi/trac/HISTORY
index b87cc1f..5378d2a 100644
--- a/python-pypi/trac/HISTORY
+++ b/python-pypi/trac/HISTORY
@@ -1,3 +1,11 @@
+2008-02-19 Vlad Glagolev <stealth AT sourcemage.org>
+ * PREPARE: removed, there's no -current svn branch atm
+ * INSTALL: there's no global config now
+ * DEPENDS: new added, old removed
+ * CONFIGURE: added MySQL database support
+ * DETAILS: update to 0.11b1, fixed license, website, desc,
+ cleaned up
+
2008-01-13 Vlad Glagolev <stealth AT sourcemage.org>
* INSTALL: default_install

diff --git a/python-pypi/trac/INSTALL b/python-pypi/trac/INSTALL
index e59312c..d2daf7a 100755
--- a/python-pypi/trac/INSTALL
+++ b/python-pypi/trac/INSTALL
@@ -1,6 +1,3 @@
default_install &&

-# create system-wide Trac configuration
-install_config_file "$SCRIPT_DIRECTORY/trac.ini" "/etc/trac.ini" &&
-mkdir -pv "$INSTALL_ROOT/usr/share/trac/conf" &&
-ln -fnsv "/etc/trac.ini" "$INSTALL_ROOT/usr/share/trac/conf/trac.ini"
+install -m 755 cgi-bin/*cgi $INSTALL_ROOT/usr/bin
diff --git a/python-pypi/trac/PREPARE b/python-pypi/trac/PREPARE
deleted file mode 100755
index 212876c..0000000
--- a/python-pypi/trac/PREPARE
+++ /dev/null
@@ -1,6 +0,0 @@
-config_query TRAC_HEAD 'Would you like to use the latest source?' n &&
-if [[ "${TRAC_HEAD}" == "y" ]]
-then
- config_query TRAC_HEAD_AUTOUPDATE \
- "Automaticaly update the spell on sorcery queue/system-update?"
n
-fi
diff --git a/python-pypi/trac/trac.ini b/python-pypi/trac/trac.ini
deleted file mode 100644
index 25aa297..0000000
--- a/python-pypi/trac/trac.ini
+++ /dev/null
@@ -1,6 +0,0 @@
-# Trac global configuration
-[trac]
-check_auth_ip = true
-default_charset = iso-8859-15
-htdocs_location = /trac-static
-templates_dir = /usr/share/trac/templates



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (4e1a7227d4c62ea11022944d7b797b261a1a17fc), Vlad Glagolev, 02/18/2008

Archive powered by MHonArc 2.6.24.

Top of Page