commit python-stevedore for openSUSE:Factory
Hello community, here is the log from the commit of package python-stevedore for openSUSE:Factory checked in at 2013-06-29 19:43:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-stevedore (Old) and /work/SRC/openSUSE:Factory/.python-stevedore.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python-stevedore" Changes: -------- --- /work/SRC/openSUSE:Factory/python-stevedore/python-stevedore.changes 2013-06-25 14:45:09.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.python-stevedore.new/python-stevedore.changes 2013-06-29 22:26:16.000000000 +0200 @@ -1,0 +2,6 @@ +Fri Jun 21 07:52:49 UTC 2013 - dmueller@suse.com + +- add python-2.6.x.diff: + * fix build on python 2.6 + +------------------------------------------------------------------- New: ---- python-2.6.x.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-stevedore.spec ++++++ --- /var/tmp/diff_new_pack.N5K2VE/_old 2013-06-29 22:26:16.000000000 +0200 +++ /var/tmp/diff_new_pack.N5K2VE/_new 2013-06-29 22:26:16.000000000 +0200 @@ -24,6 +24,7 @@ Group: Development/Languages/Python Url: https://github.com/dreamhost/stevedore Source: http://pypi.python.org/packages/source/s/stevedore/stevedore-%{version}.tar.gz +Patch0: python-2.6.x.diff BuildRequires: python-devel BuildRequires: python-distribute # Documentation requirements: @@ -43,6 +44,7 @@ %prep %setup -q -n stevedore-%{version} +%patch0 %build python setup.py build ++++++ python-2.6.x.diff ++++++ --- docs/source/conf.py +++ docs/source/conf.py @@ -54,7 +54,8 @@ # built documents. # # The short X.Y version. -version = subprocess.check_output(['sh', '-c', 'cd ../..; python setup.py --version']) +version = subprocess.Popen(['sh', '-c', 'cd ../..; python setup.py --version'], + stdout=subprocess.PIPE).stdout.read() version = version.strip() # The full version, including alpha/beta/rc tags. release = version -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de