aboutsummaryrefslogtreecommitdiffstats
path: root/release.sh
diff options
context:
space:
mode:
authortarek <none@none>2009-08-09 01:26:28 +0200
committertarek <none@none>2009-08-09 01:26:28 +0200
commitdf21ba23b73e7e09bdb4e5acb7397320dda17888 (patch)
tree6ca1464253189f31bf788327fb1c72cd8292660b /release.sh
parent7c686d2477ea28fd4baf19a01ff6453604cbdec7 (diff)
downloadexternal_python_setuptools-df21ba23b73e7e09bdb4e5acb7397320dda17888.tar.gz
external_python_setuptools-df21ba23b73e7e09bdb4e5acb7397320dda17888.tar.bz2
external_python_setuptools-df21ba23b73e7e09bdb4e5acb7397320dda17888.zip
simplified the release process
--HG-- branch : distribute extra : rebase_source : 4126164528a5ebbea66de779cc30c5f4b5e5c7d0
Diffstat (limited to 'release.sh')
-rwxr-xr-xrelease.sh22
1 files changed, 11 insertions, 11 deletions
diff --git a/release.sh b/release.sh
index f3186a9f..7dfef15f 100755
--- a/release.sh
+++ b/release.sh
@@ -6,17 +6,17 @@ export VERSION="0.6"
rm -rf dist
# eggs
-python2.3 setup.py -q egg_info -RDb '' bdist_egg
-python2.4 setup.py -q egg_info -RDb '' bdist_egg
-python2.5 setup.py -q egg_info -RDb '' bdist_egg
-python2.6 setup.py -q egg_info -RDb '' bdist_egg
-
-# source
-python2.6 setup.py -q egg_info -RDb '' sdist
+python2.3 setup.py -q egg_info -RDb '' bdist_egg # manual upload
+python2.4 setup.py -q egg_info -RDb '' bdist_egg # manual upload
+python2.5 setup.py -q egg_info -RDb '' bdist_egg register upload
+python2.6 setup.py -q egg_info -RDb '' bdist_egg register upload
# updating the md5 hashes
-python distribute_setup.py --md5update dist/distribute-$VERSION-py2.3.egg
-python distribute_setup.py --md5update dist/distribute-$VERSION-py2.4.egg
-python distribute_setup.py --md5update dist/distribute-$VERSION-py2.5.egg
-python distribute_setup.py --md5update dist/distribute-$VERSION-py2.6.egg
+python2.6 distribute_setup.py --md5update dist/distribute-$VERSION-py2.3.egg \
+ dist/distribute-$VERSION-py2.4.egg \
+ dist/distribute-$VERSION-py2.5.egg \
+ dist/distribute-$VERSION-py2.6.egg
+
+# now preparing the source release
+python2.6 setup.py -q egg_info -RDb '' sdist register upload