Code

Makefile is now obsolete - setup does what it used to do.
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 27 Jul 2001 07:20:17 +0000 (07:20 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 27 Jul 2001 07:20:17 +0000 (07:20 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@102 57a73879-2fb5-44c3-a270-3262357dd7e2

Makefile [deleted file]
setup.cfg
setup.py

diff --git a/Makefile b/Makefile
deleted file mode 100644 (file)
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
index 9c3504e016789310410313f83ab8b15290450556..55af5f8d8b3c90d354e9cadca2772b019347d24b 100644 (file)
--- 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.
+#
 #
index 9af5f9544be934b8df3200beef423b735f059592..3725ae8f491de36033e2ae8f51974f54edd22e25 100644 (file)
--- 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.
 #