summaryrefslogtreecommitdiff
path: root/release.sh
blob: 4727aaf3c33caa06a70705def4401f1cb87cb13a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

export VERSION="0.6"

# creating the releases
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

# updating the md5 hashes
python bootstrap.py --md5update dist/distribute-$VERSION-py2.3.egg
python bootstrap.py --md5update dist/distribute-$VERSION-py2.4.egg
python bootstrap.py --md5update dist/distribute-$VERSION-py2.5.egg
python bootstrap.py --md5update dist/distribute-$VERSION-py2.6.egg

# XXX uploads will be done here