From: richard Date: Fri, 27 Jul 2001 07:20:17 +0000 (+0000) Subject: Makefile is now obsolete - setup does what it used to do. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ea3c4f3f9bb9a9782e62d8241c35e310f2d07843;p=roundup.git Makefile is now obsolete - setup does what it used to do. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@102 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/Makefile b/Makefile deleted file mode 100644 index f3a6998..0000000 --- a/Makefile +++ /dev/null @@ -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 diff --git a/setup.cfg b/setup.cfg index 9c3504e..55af5f8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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. +# # diff --git a/setup.py b/setup.py index 9af5f95..3725ae8 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ setup ( name = "roundup", 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 @@ setup ( name = "roundup", # # $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. #