[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Bump recommended openssl version to 0.9.8e. Fix a rand...
Update of /home/minion/cvsroot/src/minion
In directory moria:/tmp/cvs-serv20394
Modified Files:
HISTORY Makefile
Log Message:
Bump recommended openssl version to 0.9.8e. Fix a randomly occurring bug in path generation.
Index: HISTORY
===================================================================
RCS file: /home/minion/cvsroot/src/minion/HISTORY,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- HISTORY 12 Sep 2007 19:49:40 -0000 1.19
+++ HISTORY 12 Sep 2007 20:49:09 -0000 1.20
@@ -7,6 +7,9 @@
- Don't die when gzip compression on a downloaded directory is corrupt.
- Don't die when an incoming connection closes before we can get its
address.
+ - Do not believe any path specifier that results in an impossibly short
+ path.
+ - Bump preferred openssl version to 0.9.8e.
NEW IN VERSION 0.0.8alpha2:
- License changed from LGPL to the so-called "MIT" license. This has
Index: Makefile
===================================================================
RCS file: /home/minion/cvsroot/src/minion/Makefile,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- Makefile 2 Dec 2005 18:22:48 -0000 1.71
+++ Makefile 12 Sep 2007 20:49:09 -0000 1.72
@@ -13,6 +13,9 @@
# XXXX This fails when PYTHON is set to a version of Python earlier than 1.3
PYTHON_CANDIDATES = python \
+ python3.0 python3 \
+ python2p6 python2.6 python2.6x \
+ python2p5 python2.5 python2.5x \
python2p4 python2.4 python2.4x \
python2p3 python2.3 python2.3x \
python2p2 python2.2 python2.2x \
@@ -219,10 +222,10 @@
#======================================================================
# OpenSSL-related targets
-OPENSSL_URL = http://www.openssl.org/source/openssl-0.9.8a.tar.gz
-OPENSSL_FILE = openssl-0.9.8a.tar.gz
+OPENSSL_URL = http://www.openssl.org/source/openssl-0.9.8e.tar.gz
+OPENSSL_FILE = openssl-0.9.8e.tar.gz
OPENSSL_SRC = ./contrib/openssl
-OPENSSL_SHA = 2aaba0f728179370fb3e86b43209205bc6c06a3a
+OPENSSL_SHA = b429872d2a287714ab37e42296e6a5fbe23d32ff
# I have verified that the above digest matches the tarball signed by the
# openssl maintainer. If you are paranoid, you should doublecheck. -Nick.
@@ -325,9 +328,9 @@
update-copyright:
touch -t 200401010000 jan1
find . -type f -newer jan1 | xargs perl -i.bak -pe \
- 's/Copyrigh[t] 2002-2003 Nick Mathewson/Copyright 2002-2004 Nick Mathewson/;'
+ 's/Copyrigh[t] 2002.* Nick Mathewson/Copyright 2002-2007 Nick Mathewson/;'
find . -type f -newer jan1 | xargs perl -i.bak -pe \
- 's/Copyrigh[t] 2003 Nick Mathewson/Copyright 2003-2004 Nick Mathewson/;'
+ 's/Copyrigh[t] 2003.* Nick Mathewson/Copyright 2003-2007 Nick Mathewson/;'
longlines:
find lib src \( -name '*.py' -or -name '*.[ch]' \) -print0 \