Code

Added stuff to help with release generation.
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 19 Jul 2001 03:11:24 +0000 (03:11 +0000)
committerrichard <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

Makefile [new file with mode: 0644]
dummy_config.py [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..b662ffc
--- /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
new file mode 100644 (file)
index 0000000..185ed15
--- /dev/null
@@ -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 = 
+