Skip to content

Commit 8a33713

Browse files
author
Richard Jones
committed
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
1 parent 345e52e commit 8a33713

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

Makefile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
VERSION = 0.1.3
2+
FILES = cgitb.py date.py roundup-mailgw.py roundup_cgi.py server.py \
3+
config.py hyperdb.py roundup.py roundupdb.py template.py \
4+
README CHANGES templates roundup.cgi style.css
5+
PACKAGE = roundup-${VERSION}
6+
PACKAGE_DIR = /tmp/roundup-${VERSION}
7+
8+
9+
release:
10+
rm -rf /tmp/${PACKAGE}
11+
mkdir /tmp/${PACKAGE}
12+
cp -r ${FILES} /tmp/${PACKAGE}
13+
cp dummy_config.py /tmp/${PACKAGE}
14+
(cd /tmp; tar zcf ${PACKAGE}.tgz ${PACKAGE})
15+
mv /tmp/${PACKAGE}.tgz .
16+
17+
clean:
18+
rm -f *.pyc *.tgz

dummy_config.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This is the directory that the database is going to be stored in
2+
# eg. DATABASE = '/home/httpd/html/roundup/db'
3+
DATABASE =
4+
5+
# The email address that mail to roundup should go to
6+
# eg. ISSUE_TRACKER_EMAIL = '[email protected]'
7+
ISSUE_TRACKER_EMAIL =
8+
9+
# The email address that roundup will complain to if it runs into trouble
10+
# eg. ADMIN_EMAIL = "[email protected]"
11+
ADMIN_EMAIL =
12+
13+
# The SMTP mail host that roundup will use to send mail
14+
# eg. MAILHOST = 'goanna.adroit.net'
15+
MAILHOST =
16+
17+
# Somewhere for roundup to log stuff internally sent to stdout or stderr
18+
# eg. LOG = '/home/httpd/html/roundup/roundup.log'
19+
LOG =
20+

0 commit comments

Comments
 (0)