commit 19881a9ac58755d3596614bfc259cc07aae9197d Author: Damian Johnson atagar@torproject.org Date: Thu Nov 3 08:55:29 2011 -0700
RPM python dependency should be a minimum
... doh. Using patch from unSpawn which has 2.5 as the minimum requirement. I'm a little concerned that this is gonna be picking up python 3, but certainly better than the current status. --- build/redhat/make-rpm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/build/redhat/make-rpm b/build/redhat/make-rpm index 1987354..217825d 100755 --- a/build/redhat/make-rpm +++ b/build/redhat/make-rpm @@ -1,6 +1,6 @@ #!/bin/sh cp redhat/MANIFEST ./ -python setup.py bdist_rpm --requires="python-2.5" +python setup.py bdist_rpm --requires="python >= 2.5"
# cleans up after rpm build files="build MANIFEST"
tor-commits@lists.torproject.org