[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[minion-cvs] Final changes before 0.0.4rc1, I think.



Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv19163

Modified Files:
	MANIFEST.in Makefile setup.py 
Log Message:
Final changes before 0.0.4rc1, I think.

setup.py, __init__.py, ServerList.py:
* Bump version to 0.0.4rc1

ClientMain.py:
* Fix bug that made 'mixminion list-servers' list every good server twice.

Common.py, test.py, testSupport.py, ClientMain.py, ServerMain.py, Common.py:
* Start of code to allow users to override directory warnings


Index: MANIFEST.in
===================================================================
RCS file: /home/minion/cvsroot/src/minion/MANIFEST.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- MANIFEST.in	20 Feb 2003 16:57:38 -0000	1.7
+++ MANIFEST.in	30 May 2003 03:07:55 -0000	1.8
@@ -1,5 +1,6 @@
 include README HACKING LICENSE Makefile TODO pycheckrc ACKS
 include contrib/unittest.py contrib/zlibutil.py contrib/textwrap.py
-include etc/mixminiond.conf etc/blacklist.conf
+include etc/mixminiond.conf etc/blacklist.conf etc/countlines.py
+include etc/mixminion.init
 # Old versions of distutils miss header files
 include src/_minionlib.h

Index: Makefile
===================================================================
RCS file: /home/minion/cvsroot/src/minion/Makefile,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- Makefile	30 May 2003 02:11:11 -0000	1.44
+++ Makefile	30 May 2003 03:07:56 -0000	1.45
@@ -156,7 +156,12 @@
 sdist: clean
 	@$(FINDPYTHON); \
 	echo $$PYTHON setup.py sdist; \
-	$$PYTHON setup.py sdist
+	$$PYTHON setup.py sdist; \
+	VERSION=`ls dist/*.tar.gz | sed -e s/.*-// | sed -e s/.tar.gz//`; \
+	cp README dist/README-$$VERSION
+
+signdist: sdist
+	gpg -ba dist/Mixminion*.tar.gz
 
 #======================================================================
 # OpenSSL-related targets

Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- setup.py	28 May 2003 05:31:41 -0000	1.54
+++ setup.py	30 May 2003 03:07:56 -0000	1.55
@@ -30,9 +30,9 @@
 
 os.umask(022)
 
-VERSION = '0.0.4alpha3'
+VERSION = '0.0.4rc1'
 # System: 0==alpha, 50==beta, 99==release candidate, 100==release
-VERSION_INFO = (0,0,4,0,3)
+VERSION_INFO = (0,0,4,99,1)
 
 # Function to pull openssl version number out of an opensslv.h file.  This
 # isn't a real C preprocessor, but it seems to work well enough.