From c9fea3b021dc61adc5d75c35f68079e6ec662a89 2010-04-25 04:26:45 From: Fernando Perez Date: 2010-04-25 04:26:45 Subject: [PATCH] Stop building rpms (they were broken). Closes https://bugs.launchpad.net/ipython/+bug/482487 --- diff --git a/tools/build_release b/tools/build_release index d20e49d..041ca99 100755 --- a/tools/build_release +++ b/tools/build_release @@ -19,15 +19,7 @@ for d in ['build','dist',pjoin('docs','build'),pjoin('docs','dist')]: remove_tree(d) # Build source and binary distros -c('./setup.py sdist --formats=gztar') - -# Build version-specific RPMs, where we must use the --python option to ensure -# that the resulting RPM is really built with the requested python version (so -# things go to lib/python2.X/...) -c("python2.5 ./setup.py bdist_rpm --binary-only --release=py25 " - "--python=/usr/bin/python2.5") -c("python2.6 ./setup.py bdist_rpm --binary-only --release=py26 " - "--python=/usr/bin/python2.6") +c('./setup.py sdist --formats=gztar,zip') # Build eggs c('python2.5 ./setupegg.py bdist_egg')