On Thu, 18 Feb 2016 17:02:44 -0000
[email protected] wrote:
> Author: darcy
> Date: Thu Feb 18 12:02:44 2016
> New Revision: 853
>
> Log:
> Tagging release 4.2.1.
After tagging this I found two problems in mktar.
Index: mktar
===================================================================
--- mktar (revision 853)
+++ mktar (working copy)
@@ -16,7 +16,7 @@
fi
FILES="*.c *.h *.py *.cfg *.rst *.txt"
NUMFILES=`ls $FILES | wc -l`
-if [ "$NUMFILES" != "9" ]
+if [ $NUMFILES != 9 ]
then
echo "Hmmm. The number of top-level files seems to be wrong:"
ls $FILES
@@ -24,14 +24,6 @@
echo "If something has changed, edit MANIFEST.in and mktar."
exit 1
fi
-FILES="mktar mkdocs docs tests pg.py pgdb.py pgmodule.c setup.cfg"
-PERMS=`stat --printf="%a" $FILES`
-if [ $? -ne 0 -o "$PERMS" != '755755755755644644644644' ]
-then
- echo "Hmmm. File permissions are not set properly."
- echo "Use a filesystem with permissions and do a clean checkout
first."
- exit 1
-fi
if [ -f BETA ]
then
The first is needed because on NetBSD NUMFILES is ' 9', not '9'.
I think that dropping the quotes is safe in this situation.
The second is due to --printf being a Linux extension and I couldn't
see any way to do the test portably.
There was also a small documentation change. Sorry about the line wrap.
Index: docs/about.txt
===================================================================
--- docs/about.txt (revision 853)
+++ docs/about.txt (working copy)
@@ -36,5 +36,5 @@
D'Arcy ([email protected]) renamed it to PyGreSQL starting with
version 2.0 and serves as the "BDFL" of PyGreSQL.
-The current version PyGreSQL 4.2 needs PostgreSQL 8.3 or newer and
Python 2.5
+The current version PyGreSQL 4.2.1 needs PostgreSQL 8.3 or newer and
Python 2.5
to 2.7. If you are using Python 3.x, you will need PyGreSQL 5.0 or
newer.
After these changes I need to re-tag. Should I remove the 4.2.1 tag
and re-copy or just tag 4.2.2?
--
D'Arcy J.M. Cain
PyGreSQL Development Group
http://www.PyGreSQL.org IM:[email protected]
_______________________________________________
PyGreSQL mailing list
[email protected]
https://mail.vex.net/mailman/listinfo.cgi/pygresql