From 6d63bbcc4a4e6e13ce5c929494c3e64b0343e3b6 Mon Sep 17 00:00:00 2001 From: richard Date: Thu, 19 Jul 2001 03:11:24 +0000 Subject: [PATCH] Added stuff to help with release generation. . 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 | 18 ++++++++++++++++++ dummy_config.py | 20 ++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 Makefile create mode 100644 dummy_config.py diff --git a/Makefile b/Makefile new file mode 100644 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 index 0000000..185ed15 --- /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 = + -- 2.30.2