summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 86426fe)
raw | patch | inline | side by side (parent: 86426fe)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 19 Jul 2001 03:11:24 +0000 (03:11 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 19 Jul 2001 03:11:24 +0000 (03:11 +0000) |
. Makefile has the release tgz builder in it
. dummy_config.py is an empty config file that replaces the config.py in the
release
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@5 57a73879-2fb5-44c3-a270-3262357dd7e2
. dummy_config.py is an empty config file that replaces the config.py in the
release
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@5 57a73879-2fb5-44c3-a270-3262357dd7e2
Makefile | [new file with mode: 0644] | patch | blob |
dummy_config.py | [new file with mode: 0644] | patch | blob |
diff --git a/Makefile b/Makefile
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+VERSION = 0.1.3
+FILES = cgitb.py date.py roundup-mailgw.py roundup_cgi.py server.py \
+ config.py hyperdb.py roundup.py roundupdb.py template.py \
+ README CHANGES templates roundup.cgi style.css
+PACKAGE = roundup-${VERSION}
+PACKAGE_DIR = /tmp/roundup-${VERSION}
+
+
+release:
+ rm -rf /tmp/${PACKAGE}
+ mkdir /tmp/${PACKAGE}
+ cp -r ${FILES} /tmp/${PACKAGE}
+ cp dummy_config.py /tmp/${PACKAGE}
+ (cd /tmp; tar zcf ${PACKAGE}.tgz ${PACKAGE})
+ mv /tmp/${PACKAGE}.tgz .
+
+clean:
+ rm -f *.pyc *.tgz
diff --git a/dummy_config.py b/dummy_config.py
--- /dev/null
+++ b/dummy_config.py
@@ -0,0 +1,20 @@
+# This is the directory that the database is going to be stored in
+# eg. DATABASE = '/home/httpd/html/roundup/db'
+DATABASE =
+
+# The email address that mail to roundup should go to
+# eg. ISSUE_TRACKER_EMAIL = 'issue_tracker@bizarsoftware.com.au'
+ISSUE_TRACKER_EMAIL =
+
+# The email address that roundup will complain to if it runs into trouble
+# eg. ADMIN_EMAIL = "roundup-admin@bizarsoftware.com.au"
+ADMIN_EMAIL =
+
+# The SMTP mail host that roundup will use to send mail
+# eg. MAILHOST = 'goanna.adroit.net'
+MAILHOST =
+
+# Somewhere for roundup to log stuff internally sent to stdout or stderr
+# eg. LOG = '/home/httpd/html/roundup/roundup.log'
+LOG =
+