Mercurial > p > roundup > code
changeset 97:ea5d6029a4bd
Makefile is now obsolete - setup does what it used to do.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 27 Jul 2001 07:20:17 +0000 |
| parents | 73c52eae999c |
| children | 16dcdab5ce70 |
| files | Makefile setup.cfg setup.py |
| diffstat | 3 files changed, 12 insertions(+), 19 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Fri Jul 27 07:18:32 2001 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -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} - (cd /tmp; tar zcf ${PACKAGE}.tar.gz ${PACKAGE}) - mv /tmp/${PACKAGE}.tar.gz . - -clean: - rm -f *.pyc *.tar.gz
--- a/setup.cfg Fri Jul 27 07:18:32 2001 +0000 +++ b/setup.cfg Fri Jul 27 07:20:17 2001 +0000 @@ -1,8 +1,13 @@ -# $Id: setup.cfg,v 1.1 2001-07-27 06:56:25 richard Exp $ +# $Id: setup.cfg,v 1.2 2001-07-27 07:20:17 richard Exp $ [install_scripts] install_dir=/usr/local/bin + # # $Log: not supported by cvs2svn $ +# Revision 1.1 2001/07/27 06:56:25 richard +# Added scripts to the setup and added the config so the default script +# install dir is /usr/local/bin. # +#
--- a/setup.py Fri Jul 27 07:18:32 2001 +0000 +++ b/setup.py Fri Jul 27 07:20:17 2001 +0000 @@ -1,6 +1,6 @@ #! /usr/bin/env python -# $Id: setup.py,v 1.3 2001-07-27 06:56:25 richard Exp $ +# $Id: setup.py,v 1.4 2001-07-27 07:20:17 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -23,6 +23,7 @@ version = "0.2.0", description = "roundup tracking system", author = "Richard Jones", + author_email = "richard@sourceforge.net", url = 'http://sourceforge.net/projects/roundup/', packages = packagelist, scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server'] @@ -33,6 +34,10 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.3 2001/07/27 06:56:25 richard +# Added scripts to the setup and added the config so the default script +# install dir is /usr/local/bin. +# # Revision 1.2 2001/07/26 07:14:27 richard # Made setup.py executable, added id and log. #
