diff options
author | PJ Eby <distutils-sig@python.org> | 2006-07-11 18:41:52 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-07-11 18:41:52 +0000 |
commit | 6feae98e74135d8005eb60acde1ff9fbbbdf2679 (patch) | |
tree | 2ab58f0f876fca61881706de89873791b9c6bb28 | |
parent | 95637d99856e04680612f139a57f4b112f491852 (diff) | |
download | external_python_setuptools-6feae98e74135d8005eb60acde1ff9fbbbdf2679.tar.gz external_python_setuptools-6feae98e74135d8005eb60acde1ff9fbbbdf2679.tar.bz2 external_python_setuptools-6feae98e74135d8005eb60acde1ff9fbbbdf2679.zip |
Simplify release process using new egg_info options
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4050584
-rwxr-xr-x | release.sh | 7 | ||||
-rwxr-xr-x | setup.cfg | 2 |
2 files changed, 3 insertions, 6 deletions
@@ -9,11 +9,8 @@ export VERSION="0.6b4" -wpython setup.py setopt -r -c egg_info -o tag_build && \ -wpython setup.py setopt -r setopt -r -c egg_info -o tag_svn_revision && \ -wpython setup.py -q source && \ -cpython setup.py -q binary && \ -svn revert setup.cfg && \ +wpython setup.py -q release source && \ +cpython setup.py -q release binary && \ python ez_setup.py --md5update dist/setuptools-$VERSION*-py2.?.egg && \ scp ez_setup.py virtual-python.py t3:web/PEAK/dist/ && \ cp ez_setup.py ~/projects/ez_setup/__init__.py && \ @@ -4,6 +4,6 @@ tag_svn_revision = 1 [aliases] release = egg_info -RDb '' -source = register sdist binary +source = sdist register binary binary = bdist_egg upload --show-response |