forked from wesm/ipython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
34 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
PYVER=`python -V 2>&1 | awk '{print $2}' | awk -F '.' '{print $1$2}' ` | ||
version=`ipython -Version` | ||
ipdir=~/ipython/ipython | ||
ipbackupdir=~/ipython/backup | ||
|
||
echo | ||
echo "Releasing IPython version $version" | ||
|
@@ -37,7 +38,8 @@ rm -rf $ipdir/dist/* | |
|
||
# Perform local backup | ||
cd $ipdir/tools | ||
./bkp.sh | ||
./make_tarball.py | ||
mv ipython-*.tgz $ipbackupdir | ||
|
||
# Build source and binary distros | ||
cd $ipdir | ||
|
@@ -50,8 +52,8 @@ python2.4 ./setup.py bdist_rpm --binary-only --release=py24 --python=/usr/bin/py | |
python2.5 ./setup.py bdist_rpm --binary-only --release=py25 --python=/usr/bin/python2.5 | ||
|
||
# Build eggs | ||
python2.4 ./eggsetup.py bdist_egg | ||
python2.5 ./eggsetup.py bdist_egg | ||
python2.4 ./setup_bdist_egg.py | ||
python2.5 ./setup_bdist_egg.py | ||
|
||
# Call the windows build separately, so that the extra Windows scripts don't | ||
# get pulled into Unix builds (setup.py has code which checks for | ||
|
@@ -72,7 +74,7 @@ echo "Uploading distribution files..." | |
scp * [email protected]:www/dist/ | ||
|
||
echo "Uploading backup files..." | ||
cd ~/ipython/backup | ||
cd $ipbackupdir | ||
scp `ls -1tr | tail -1` [email protected]:www/backup/ | ||
|
||
echo "Updating webpage..." | ||
|
@@ -86,8 +88,8 @@ cd $www | |
|
||
# Alert package maintainers | ||
echo "Alerting package maintainers..." | ||
maintainers='fperez@colorado.edu [email protected] [email protected] [email protected] [email protected] [email protected]' | ||
#maintainers='fperez@colorado.edu' | ||
#maintainers='fernando.perez@berkeley.edu [email protected] [email protected] [email protected] [email protected] [email protected]' | ||
maintainers='fernando.perez@berkeley.edu' | ||
|
||
for email in $maintainers | ||
do | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters