diff options
| author | PJ Eby <distutils-sig@python.org> | 2006-04-14 17:31:02 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2006-04-14 17:31:02 +0000 |
| commit | da5319effe71368fc925a8c374f50097192ccfd2 (patch) | |
| tree | 581a0e7156b826fbeb3dd1348eb88fdd1dd67fc3 /release.sh | |
| parent | c51417f82157df15a40d6fb3b1ba13a851a68763 (diff) | |
| download | external_python_setuptools-da5319effe71368fc925a8c374f50097192ccfd2.tar.gz external_python_setuptools-da5319effe71368fc925a8c374f50097192ccfd2.tar.bz2 external_python_setuptools-da5319effe71368fc925a8c374f50097192ccfd2.zip | |
Creating a branch for the "stable" 0.6 development line of setuptools,
so that it can continue forward to 0.6b1 and onward, while using the
trunk for 0.7 development and Python 2.5 snapshots thereof.
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4045397
Diffstat (limited to 'release.sh')
| -rwxr-xr-x | release.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/release.sh b/release.sh new file mode 100755 index 00000000..4f76b29b --- /dev/null +++ b/release.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +# This script is for PJE's working environment only, to upload +# releases to PyPI, telecommunity, eby-sarna SVN, update local +# project checkouts, etc. +# +# If your initials aren't PJE, don't run it. :) +# + +export VERSION="0.6b1" + +wpython setup.py -q source && \ +cpython setup.py -q 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 && \ + svn ci -m "Update ez_setup for setuptools $VERSION" \ + ~/projects/ez_setup/__init__.py && \ + svn up ~/projects/*/ez_setup + +# XXX update wiki pages from EasyInstall.txt, setuptools.txt, & +# pkg_resources.txt |
