File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed
Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments