commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2018-12-14 20:46:13 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new.28833 (New) Package is "python-nose" Fri Dec 14 20:46:13 2018 rev:41 rq:655632 version:1.3.7 Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2018-07-21 10:08:40.911191898 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new.28833/python-nose.changes 2018-12-14 20:46:14.505604211 +0100 @@ -1,0 +2,5 @@ +Thu Dec 6 12:32:42 UTC 2018 - Tomáš Chvátal + +- Fix fdupes call + +--- Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.SVqbvg/_old 2018-12-14 20:46:15.121603362 +0100 +++ /var/tmp/diff_new_pack.SVqbvg/_new 2018-12-14 20:46:15.125603356 +0100 @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -71,7 +71,7 @@ %install %python_install -%fdupes %{buildroot}%{_prefix} +%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_clone -a %{buildroot}%{_bindir}/nosetests %python_clone -a %{buildroot}%{_mandir}/man1/nosetests.1
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2018-07-21 10:08:36 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is "python-nose" Sat Jul 21 10:08:36 2018 rev:40 rq:623471 version:1.3.7 Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2018-02-05 10:48:13.465749667 +0100 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2018-07-21 10:08:40.911191898 +0200 @@ -1,0 +2,11 @@ +Tue Jul 17 08:58:34 UTC 2018 - tchva...@suse.com + +- Add patches from other distros, fixes py3.7 builds as well: + * python-nose-coverage4.patch + * python-nose-py35.patch + * python-nose-py36.patch + * python-nose-readunicode.patch + * python-nose-unicode.patch + * python-nose-unstable-tests.patch + +--- New: python-nose-coverage4.patch python-nose-py35.patch python-nose-py36.patch python-nose-readunicode.patch python-nose-unicode.patch python-nose-unstable-tests.patch Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.bJx1XJ/_old 2018-07-21 10:08:41.275191814 +0200 +++ /var/tmp/diff_new_pack.bJx1XJ/_new 2018-07-21 10:08:41.275191814 +0200 @@ -20,13 +20,17 @@ Name: python-nose Version:1.3.7 Release:0 -Url:http://readthedocs.org/docs/nose/ Summary:Nose extends unittest to make testing easier -License:LGPL-2.1+ +License:LGPL-2.1-or-later Group: Development/Languages/Python -Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: %{python_module devel} +URL:http://readthedocs.org/docs/nose/ +Source: https://files.pythonhosted.org/packages/source/n/nose/nose-%{version}.tar.gz +Patch0: python-nose-coverage4.patch +Patch1: python-nose-py35.patch +Patch2: python-nose-py36.patch +Patch3: python-nose-readunicode.patch +Patch4: python-nose-unicode.patch +Patch5: python-nose-unstable-tests.patch BuildRequires: %{python_module setuptools} BuildRequires: %{python_module xml} BuildRequires: fdupes @@ -37,7 +41,6 @@ Requires(post): update-alternatives Requires(postun): update-alternatives BuildArch: noarch - %python_subpackages %description @@ -57,6 +60,8 @@ %prep %setup -q -n nose-%{version} +%autopatch -p1 + sed -i "s|man/man1|share/man/man1|" setup.py # Fix man-page install path # this test doesn't work rm functional_tests/test_coverage_plugin* @@ -76,7 +81,6 @@ # Timing is bad on some architectures export NOSE_EXCLUDE=test_timed # tests mysteriously fail in python3 -%{_python_use_flavor python2} python2 setup.py test %endif @@ -86,9 +90,9 @@ %postun %python_uninstall_alternative nosetests -%files %python_files -%defattr(-,root,root,-) -%doc NEWS README.txt lgpl.txt +%files %{python_files} +%license lgpl.txt +%doc NEWS README.txt %python_alternative %{_bindir}/nosetests %python_alternative %{_mandir}/man1/nosetests.1%{ext_man} %{python_sitelib}/nose-%{version}-py%{python_version}.egg-info/ ++ python-nose-coverage4.patch ++ diff -up nose-1.3.7/nose/plugins/cover.py.coverage4 nose-1.3.7/nose/plugins/cover.py --- nose-1.3.7/nose/plugins/cover.py.coverage4 2015-04-04 03:28:20.0 -0600 +++ nose-1.3.7/nose/plugins/cover.py2016-11-09 16:16:32.832927855 -0700 @@ -187,7 +187,7 @@ class Coverage(Plugin): for name, module in sys.modules.items() if self.wantModuleCoverage(name, module)] log.debug("Coverage report will cover modules: %s", modules) -self.coverInstance.report(modules, file=stream) +self.coverInstance.report(modules, file=stream, show_missing=True) import coverage if self.coverHtmlDir: @@ -207,7 +207,7 @@ class Coverage(Plugin): # make sure we have minimum required coverage if self.coverMinPercentage: f = StringIO.StringIO() -self.coverInstance.report(modules, file=f) +self.coverInstance.report(modules, file=f, show_missing=True) multiPackageRe = (r'---\s\w+\s+\d+\s+\d+(?:\s+\d+\s+\d+)?' r'\s+(\d+)%\s+\d*\s{0,1}$') ++ python-nose-py35.patch ++ diff -up nose-1.3.7/functional_tests/test_load_tests_from_test_case.py.py35 nose-1.3.7/functional_tests/test_load_tests_from_test_case.py --- nose-1.3.7/functional_tests/test_load_tests_from_test_case.py.py35 2012-09-29 02:18:54.0 -0600 +++
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2018-02-05 10:48:01 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is "python-nose" Mon Feb 5 10:48:01 2018 rev:39 rq:572015 version:1.3.7 Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2017-11-12 17:59:04.711960634 +0100 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2018-02-05 10:48:13.465749667 +0100 @@ -1,0 +2,6 @@ +Fri Feb 2 12:41:45 UTC 2018 - tchva...@suse.com + +- Drop the doc subpackage that fails to build for quite time, + docs are on web anyway + +--- Old: python-nose-doc.changes python-nose-doc.spec Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.IsDZml/_old 2018-02-05 10:48:14.157717272 +0100 +++ /var/tmp/diff_new_pack.IsDZml/_new 2018-02-05 10:48:14.161717084 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-nose # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2017-11-12 17:59:02 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is "python-nose" Sun Nov 12 17:59:02 2017 rev:38 rq:540010 version:1.3.7 Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2017-08-29 11:36:45.706136006 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2017-11-12 17:59:04.711960634 +0100 @@ -1,0 +2,7 @@ +Wed Nov 8 19:06:29 UTC 2017 - jmate...@suse.com + +- drop unneeded python-coverage +- drop unused %bcond +- disable tests when python2 is not present + +--- Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.3eFlyy/_old 2017-11-12 17:59:06.151908185 +0100 +++ /var/tmp/diff_new_pack.3eFlyy/_new 2017-11-12 17:59:06.151908185 +0100 @@ -17,7 +17,6 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} -%bcond_without test Name: python-nose Version:1.3.7 Release:0 @@ -33,8 +32,6 @@ BuildRequires: fdupes BuildRequires: python-rpm-macros BuildRequires: python3-2to3 -#Testsuite build requirements: -BuildRequires: python-coverage Requires: python-setuptools Requires: python-xml Requires(post): update-alternatives @@ -74,12 +71,14 @@ %python_clone -a %{buildroot}%{_bindir}/nosetests %python_clone -a %{buildroot}%{_mandir}/man1/nosetests.1 +%if 0%{?have_python2} %check # Timing is bad on some architectures export NOSE_EXCLUDE=test_timed # tests mysteriously fail in python3 %{_python_use_flavor python2} python2 setup.py test +%endif %post %{python_install_alternative nosetests nosetests.1}
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2017-08-29 11:36:44 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is "python-nose" Tue Aug 29 11:36:44 2017 rev:37 rq:517954 version:1.3.7 Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2017-08-14 12:40:01.243995099 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2017-08-29 11:36:45.706136006 +0200 @@ -1,0 +2,6 @@ +Mon Aug 21 14:13:28 UTC 2017 - alarr...@suse.com + +- Fixed %post script. The python_install_alternative macro needs to use {} + when installing multiple alternative files. + +--- Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.u579Pq/_old 2017-08-29 11:36:47.197926406 +0200 +++ /var/tmp/diff_new_pack.u579Pq/_new 2017-08-29 11:36:47.201925845 +0200 @@ -82,7 +82,7 @@ python2 setup.py test %post -%python_install_alternative nosetests nosetests.1 +%{python_install_alternative nosetests nosetests.1} %postun %python_uninstall_alternative nosetests
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2017-08-14 12:39:57 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is "python-nose" Mon Aug 14 12:39:57 2017 rev:36 rq:516184 version:1.3.7 Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2017-04-19 18:10:03.680329733 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2017-08-14 12:40:01.243995099 +0200 @@ -1,0 +2,11 @@ +Fri Aug 11 15:54:14 UTC 2017 - toddrme2...@gmail.com + +- Tests are only run on python2, so only pull in python2 test + dependencies + +--- +Wed Aug 9 21:48:25 UTC 2017 - toddrme2...@gmail.com + +- Fix building on SLE. + +--- Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.B9a6d5/_old 2017-08-14 12:40:02.311845143 +0200 +++ /var/tmp/diff_new_pack.B9a6d5/_new 2017-08-14 12:40:02.311845143 +0200 @@ -17,6 +17,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} +%bcond_without test Name: python-nose Version:1.3.7 Release:0 @@ -25,18 +26,16 @@ License:LGPL-2.1+ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz -# PATCH-FIX-OPENSUSE mj...@suse.com -- Fix skip test plugin -# Since we are using python 2.6 we have to revert upstream commit -# https://github.com/nose-devs/nose/commit/395a1bff9919f083eba9eb45800692e8ab55728c BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: %{python_module devel} -BuildRequires: %{python_module setuptools >= 18.0.1} +BuildRequires: %{python_module setuptools} BuildRequires: %{python_module xml} BuildRequires: fdupes BuildRequires: python-rpm-macros +BuildRequires: python3-2to3 #Testsuite build requirements: -BuildRequires: %{python_module coverage >= 3.7.1} -Requires: python-setuptools >= 18.0.1 +BuildRequires: python-coverage +Requires: python-setuptools Requires: python-xml Requires(post): update-alternatives Requires(postun): update-alternatives @@ -76,7 +75,8 @@ %python_clone -a %{buildroot}%{_mandir}/man1/nosetests.1 %check -#%%python_exec setup.py test +# Timing is bad on some architectures +export NOSE_EXCLUDE=test_timed # tests mysteriously fail in python3 %{_python_use_flavor python2} python2 setup.py test
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2017-04-19 18:10:02 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is "python-nose" Wed Apr 19 18:10:02 2017 rev:35 rq:487417 version:1.3.7 Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2017-03-17 15:00:37.008054771 +0100 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2017-04-19 18:10:03.680329733 +0200 @@ -1,0 +2,11 @@ +Wed Mar 29 13:53:04 UTC 2017 - jmate...@suse.com + +- uninstall alternatives in %postun + +--- +Tue Mar 21 13:22:29 UTC 2017 - jmate...@suse.com + +- use same script for %bindir/nosetests-*, to allow for the usage + `%python_exec %{_bindir}/nosetests` + +--- Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.RbOCWJ/_old 2017-04-19 18:10:04.784173590 +0200 +++ /var/tmp/diff_new_pack.RbOCWJ/_new 2017-04-19 18:10:04.788173023 +0200 @@ -39,7 +39,7 @@ Requires: python-setuptools >= 18.0.1 Requires: python-xml Requires(post): update-alternatives -Requires(preun): update-alternatives +Requires(postun): update-alternatives BuildArch: noarch %python_subpackages @@ -72,7 +72,7 @@ %python_install %fdupes %{buildroot}%{_prefix} -%prepare_alternative nosetests +%python_clone -a %{buildroot}%{_bindir}/nosetests %python_clone -a %{buildroot}%{_mandir}/man1/nosetests.1 %check @@ -84,7 +84,7 @@ %post %python_install_alternative nosetests nosetests.1 -%preun +%postun %python_uninstall_alternative nosetests %files %python_files
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2017-03-17 15:00:35 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is "python-nose" Fri Mar 17 15:00:35 2017 rev:34 rq:479625 version:1.3.7 Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose-doc.changes 2015-08-07 00:22:57.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose-doc.changes 2017-03-17 15:00:36.392141683 +0100 @@ -1,0 +2,6 @@ +Thu Feb 23 15:07:26 UTC 2017 - jmate...@suse.com + +- only build with python3 Sphinx +- provide $flavor-doc for all pythons + +--- --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2017-01-23 11:29:58.276995289 +0100 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2017-03-17 15:00:37.008054771 +0100 @@ -1,0 +2,7 @@ +Thu Feb 23 15:04:30 UTC 2017 - jmate...@suse.com + +- update for multipython build +- drop unneeded nose-fix-skip-test-plugin.patch +- use fdupes + +--- Old: nose-fix-skip-test-plugin.patch Other differences: -- ++ python-nose-doc.spec ++ --- /var/tmp/diff_new_pack.dYZ9hJ/_old 2017-03-17 15:00:38.099900700 +0100 +++ /var/tmp/diff_new_pack.dYZ9hJ/_new 2017-03-17 15:00:38.099900700 +0100 @@ -16,6 +16,7 @@ # +%{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-nose-doc Version:1.3.7 Release:0 @@ -25,10 +26,10 @@ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: python-Sphinx >= 1.3.1 -BuildRequires: python-devel -Requires: python-nose = %{version} +BuildRequires: python3-Sphinx >= 1.3.1 +BuildRequires: python3-setuptools BuildArch: noarch +Provides: %{python_module nose-doc = %{version}} %description Nose extends the test loading and running features of unittest, making @@ -49,7 +50,7 @@ %setup -q -n nose-%{version} %build -python setup.py build_sphinx && rm build/sphinx/html/.buildinfo # Generate HTML documentation +python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo # Generate HTML documentation %install ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.dYZ9hJ/_old 2017-03-17 15:00:38.123897314 +0100 +++ /var/tmp/diff_new_pack.dYZ9hJ/_new 2017-03-17 15:00:38.123897314 +0100 @@ -16,6 +16,7 @@ # +%{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-nose Version:1.3.7 Release:0 @@ -27,22 +28,21 @@ # PATCH-FIX-OPENSUSE mj...@suse.com -- Fix skip test plugin # Since we are using python 2.6 we have to revert upstream commit # https://github.com/nose-devs/nose/commit/395a1bff9919f083eba9eb45800692e8ab55728c -Patch1: nose-fix-skip-test-plugin.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: python-devel -BuildRequires: python-setuptools >= 18.0.1 -BuildRequires: python-xml +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools >= 18.0.1} +BuildRequires: %{python_module xml} +BuildRequires: fdupes +BuildRequires: python-rpm-macros #Testsuite build requirements: -BuildRequires: python-coverage >= 3.7.1 +BuildRequires: %{python_module coverage >= 3.7.1} Requires: python-setuptools >= 18.0.1 Requires: python-xml Requires(post): update-alternatives -Requires(postun): update-alternatives -%if 0%{?suse_version} && 0%{?suse_version} <= 1110 -%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%else +Requires(preun): update-alternatives BuildArch: noarch -%endif + +%python_subpackages %description Nose extends the test loading and running features of unittest, making @@ -61,47 +61,38 @@ %prep %setup -q -n nose-%{version} -%patch1 -p2 sed -i "s|man/man1|share/man/man1|" setup.py # Fix man-page install path # this test doesn't work rm functional_tests/test_coverage_plugin* %build -python setup.py build +%python_build %install -python setup.py install --prefix=%{_prefix} --root=%{buildroot} -rm %{buildroot}%{_bindir}/nosetests -mkdir -p %{buildroot}%{_sysconfdir}/alternatives -touch %{buildroot}%{_sysconfdir}/alternatives/nosetests -ln -sf %{_sysconfdir}/alternatives/nosetests %{buildroot}/%{_bindir}/nosetests -mv %{buildroot}%{_mandir}/man1/nosetests.1
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2017-01-23 11:29:57 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is "python-nose" Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2016-07-28 23:42:38.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2017-01-23 11:29:58.276995289 +0100 @@ -1,0 +2,5 @@ +Sat Jan 14 19:38:37 UTC 2017 - h...@urpla.net + +- disable functional_tests/test_coverage_plugin: fails consistently + +--- Other differences: -- ++ python-nose-doc.spec ++ --- /var/tmp/diff_new_pack.tuIXks/_old 2017-01-23 11:29:58.668939720 +0100 +++ /var/tmp/diff_new_pack.tuIXks/_new 2017-01-23 11:29:58.672939153 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-nose-doc # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.tuIXks/_old 2017-01-23 11:29:58.688936884 +0100 +++ /var/tmp/diff_new_pack.tuIXks/_new 2017-01-23 11:29:58.692936318 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-nose # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -63,6 +63,8 @@ %setup -q -n nose-%{version} %patch1 -p2 sed -i "s|man/man1|share/man/man1|" setup.py # Fix man-page install path +# this test doesn't work +rm functional_tests/test_coverage_plugin* %build python setup.py build
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2016-07-28 23:42:37 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is "python-nose" Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2015-08-07 00:22:57.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2016-07-28 23:42:38.0 +0200 @@ -1,0 +2,5 @@ +Thu Jul 21 06:56:41 UTC 2016 - mj...@suse.com + +- Update license to "LGPL-2.1+" + +--- Other differences: -- ++ python-nose-doc.spec ++ --- /var/tmp/diff_new_pack.ehp7iC/_old 2016-07-28 23:42:39.0 +0200 +++ /var/tmp/diff_new_pack.ehp7iC/_new 2016-07-28 23:42:39.0 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-nose-doc # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.ehp7iC/_old 2016-07-28 23:42:39.0 +0200 +++ /var/tmp/diff_new_pack.ehp7iC/_new 2016-07-28 23:42:39.0 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-nose # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,7 +21,7 @@ Release:0 Url:http://readthedocs.org/docs/nose/ Summary:Nose extends unittest to make testing easier -License:LGPL-2.0+ +License:LGPL-2.1+ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz # PATCH-FIX-OPENSUSE mj...@suse.com -- Fix skip test plugin
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2015-08-07 00:22:55 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose-doc.changes 2015-04-22 01:14:49.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose-doc.changes 2015-08-07 00:22:57.0 +0200 @@ -1,0 +2,8 @@ +Mon Jul 27 19:34:27 UTC 2015 - aloi...@gmx.com + +- Update to version 1.3.7: + * Fix loading packages from capitalised package on Windows +Patch by Thomas Kluyver +- Aligned dependency requirements with PyPI + +--- --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2015-04-22 01:14:49.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2015-08-07 00:22:57.0 +0200 @@ -1,0 +2,10 @@ +Mon Jul 27 19:33:56 UTC 2015 - aloi...@gmx.com + +- Update to version 1.3.7: + * Fix loading packages from capitalised package on Windows +Patch by Thomas Kluyver +- Aligned dependency requirements with PyPI +- Dropped nose-drop-timing-dependent-tests.patch because + the test is already excluded upstream + +--- Old: nose-1.3.6.tar.gz nose-drop-timing-dependent-tests.patch New: nose-1.3.7.tar.gz Other differences: -- ++ python-nose-doc.spec ++ --- /var/tmp/diff_new_pack.md5uwo/_old 2015-08-07 00:22:58.0 +0200 +++ /var/tmp/diff_new_pack.md5uwo/_new 2015-08-07 00:22:58.0 +0200 @@ -17,7 +17,7 @@ Name: python-nose-doc -Version:1.3.6 +Version:1.3.7 Release:0 Url:http://readthedocs.org/docs/nose/ Summary:Nose extends unittest to make testing easier @@ -25,7 +25,7 @@ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: python-Sphinx +BuildRequires: python-Sphinx = 1.3.1 BuildRequires: python-devel Requires: python-nose = %{version} BuildArch: noarch ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.md5uwo/_old 2015-08-07 00:22:58.0 +0200 +++ /var/tmp/diff_new_pack.md5uwo/_new 2015-08-07 00:22:58.0 +0200 @@ -17,26 +17,24 @@ Name: python-nose -Version:1.3.6 +Version:1.3.7 Release:0 Url:http://readthedocs.org/docs/nose/ Summary:Nose extends unittest to make testing easier License:LGPL-2.0+ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz -# PATCH-FIX-OPENSUSE speili...@suse.com -- Drop time-dependent tests: -Patch0: nose-drop-timing-dependent-tests.patch # PATCH-FIX-OPENSUSE mj...@suse.com -- Fix skip test plugin # Since we are using python 2.6 we have to revert upstream commit # https://github.com/nose-devs/nose/commit/395a1bff9919f083eba9eb45800692e8ab55728c Patch1: nose-fix-skip-test-plugin.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python-devel -BuildRequires: python-setuptools +BuildRequires: python-setuptools = 18.0.1 BuildRequires: python-xml #Testsuite build requirements: -BuildRequires: python-coverage -Requires: python-setuptools +BuildRequires: python-coverage = 3.7.1 +Requires: python-setuptools = 18.0.1 Requires: python-xml Requires(post): update-alternatives Requires(postun): update-alternatives @@ -63,7 +61,6 @@ %prep %setup -q -n nose-%{version} -%patch0 -p1 %patch1 -p2 sed -i s|man/man1|share/man/man1| setup.py # Fix man-page install path ++ nose-1.3.6.tar.gz - nose-1.3.7.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nose-1.3.6/CHANGELOG new/nose-1.3.7/CHANGELOG --- old/nose-1.3.6/CHANGELOG2015-04-04 13:45:24.0 +0200 +++ new/nose-1.3.7/CHANGELOG2015-06-02 10:39:35.0 +0200 @@ -1,3 +1,8 @@ +1.3.7 + +- Fix loading packages from capitalised package on Windows + Patch by Thomas Kluyver + 1.3.6 - Re-release of 1.3.5 with wheels fixed. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nose-1.3.6/PKG-INFO new/nose-1.3.7/PKG-INFO --- old/nose-1.3.6/PKG-INFO 2015-04-04 13:45:28.0 +0200 +++ new/nose-1.3.7/PKG-INFO 2015-06-02 11:07:39.0 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: nose
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2015-04-22 01:14:47 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose-doc.changes 2014-05-11 14:16:18.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose-doc.changes 2015-04-22 01:14:49.0 +0200 @@ -1,0 +2,25 @@ +Wed Apr 15 19:06:01 UTC 2015 - h...@urpla.net + +- update to 1.3.6: + - Re-release of 1.3.5 with wheels fixed. +- update to 1.3.5 + - Fix #875: nose doesn't collect tests when subpackage is given as arg + - Fix #809: tests not discovered for namespace packages on Windows + - Fix #815: ValueError: unsupported pickle protocol with --with-id + - Wrap the working dir path name in quotes when reporting an error. +Patch by Őry Máté. + - Fix #887: Fix a discrepancy in test names between Python 2 and Python 3 + - Fix #131: Use os.stat() to check if file is executable +Patch by Arnon Yaari. + - Fix #820 and #719: Fix coverage plugin with multiprocess +Patch by Nicolas Grasset. +- update to 1.3.4 + - Recognize doctest options defined in other plugins +Patch by Daniel Lepage + - Another fix for Python 3.4: Call super in LazySuite to access +_removed_tests variable +Patch by Robert Kuska + - Fix for try_run when using bound methods +Patch by Christian Lyder Jacobsen + +--- --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2014-05-11 14:16:18.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2015-04-22 01:14:49.0 +0200 @@ -1,0 +2,19 @@ +Wed Apr 15 19:06:01 UTC 2015 - h...@urpla.net + +- Update to version 1.3.6: + * Re-release of 1.3.5 with wheels fixed. +- Changes from version 1.3.5 + * Fix #875: nose doesn't collect tests when subpackage is given as arg + * Fix #809: tests not discovered for namespace packages on Windows + * Fix #815: ValueError: unsupported pickle protocol with --with-id + * Wrap the working dir path name in quotes when reporting an error. + * Fix #887: Fix a discrepancy in test names between Python 2 and Python 3 + * Fix #131: Use os.stat() to check if file is executable + * Fix #820 and #719: Fix coverage plugin with multiprocess +- Changes from version 1.3.4 + * Recognize doctest options defined in other plugins + * Another fix for Python 3.4: Call super in LazySuite to access +_removed_tests variable + * Fix for try_run when using bound methods + +--- Old: nose-1.3.3.tar.gz New: nose-1.3.6.tar.gz Other differences: -- ++ python-nose-doc.spec ++ --- /var/tmp/diff_new_pack.ukbVcn/_old 2015-04-22 01:14:50.0 +0200 +++ /var/tmp/diff_new_pack.ukbVcn/_new 2015-04-22 01:14:50.0 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-nose-doc # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: python-nose-doc -Version:1.3.3 +Version:1.3.6 Release:0 Url:http://readthedocs.org/docs/nose/ Summary:Nose extends unittest to make testing easier python-nose.spec: same change ++ nose-1.3.3.tar.gz - nose-1.3.6.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nose-1.3.3/CHANGELOG new/nose-1.3.6/CHANGELOG --- old/nose-1.3.3/CHANGELOG2014-05-06 11:53:59.0 +0200 +++ new/nose-1.3.6/CHANGELOG2015-04-04 13:45:24.0 +0200 @@ -1,3 +1,34 @@ +1.3.6 + +- Re-release of 1.3.5 with wheels fixed. + +1.3.5 + +- Fix #875: nose doesn't collect tests when subpackage is given as arg +- Fix #809: tests not discovered for namespace packages on Windows +- Fix #815: ValueError: unsupported pickle protocol with --with-id +- Wrap the working dir path name in quotes when reporting an error. + Patch by Őry Máté. +- Fix #887: Fix a discrepancy in test names between Python 2 and Python 3 +- Fix #131: Use os.stat() to check if file is executable + Patch by Arnon Yaari. +- Fix #820 and #719: Fix coverage plugin with multiprocess + Patch by Nicolas Grasset. + +1.3.4 + +- Recognize doctest options defined in other plugins + Patch by Daniel Lepage +- Another fix for Python 3.4: Call super in LazySuite to access +
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2014-05-11 14:16:16 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose-doc.changes 2012-11-28 14:33:22.0 +0100 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose-doc.changes 2014-05-11 14:16:18.0 +0200 @@ -1,0 +2,29 @@ +Thu May 8 07:26:45 UTC 2014 - mj...@suse.com + +- update to 1.3.3: + - Fixed a minor issue with the reported version number. +- update to 1.3.2: + - Fixed an issue where build_ext was not working under setup.py nosetest + - Fixed #786: generator method fails with callable instance + - Fixed a traceback when using string exceptions + - Fixed #792: Not a directory error when using python setup.py nosetests + - Fixed #779: xunit report file is written in --where directory + - Fixed #782: Test failures with Python = 3.3 + - Fixed #780: Fix a regression with Python 3 + - Fixed #783: try_run is broken with Python 3.4 + - Fixed an issue where build_ext was not working under setup.py nosetest + - Fixed #786: generator method fails with callable instance + - Fixed a traceback when using string exceptions + - Fixed #792: Not a directory error when using python setup.py nosetests + - Fixed #779: xunit report file is written in --where directory + - Fixed #782: Test failures with Python = 3.3 + - Fixed #780: Fix a regression with Python 3 + - Fixed #783: try_run is broken with Python 3.4 + +--- +Thu Apr 17 11:18:47 UTC 2014 - toddrme2...@gmail.com + +- update to 1.3.1: + * very long list of bugfixes, see included CHANGELOG for details + +--- --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2014-02-26 06:55:02.0 +0100 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2014-05-11 14:16:18.0 +0200 @@ -1,0 +2,35 @@ +Thu May 8 07:20:27 UTC 2014 - mj...@suse.com + +- update to 1.3.3: + - Fixed a minor issue with the reported version number. +- update to 1.3.2: + - Fixed an issue where build_ext was not working under setup.py nosetest + - Fixed #786: generator method fails with callable instance + - Fixed a traceback when using string exceptions + - Fixed #792: Not a directory error when using python setup.py nosetests + - Fixed #779: xunit report file is written in --where directory + - Fixed #782: Test failures with Python = 3.3 + - Fixed #780: Fix a regression with Python 3 + - Fixed #783: try_run is broken with Python 3.4 + - Fixed an issue where build_ext was not working under setup.py nosetest + - Fixed #786: generator method fails with callable instance + - Fixed a traceback when using string exceptions + - Fixed #792: Not a directory error when using python setup.py nosetests + - Fixed #779: xunit report file is written in --where directory + - Fixed #782: Test failures with Python = 3.3 + - Fixed #780: Fix a regression with Python 3 + - Fixed #783: try_run is broken with Python 3.4 + +--- +Thu May 8 06:44:24 UTC 2014 - mj...@suse.com + +- Add nose-fix-skip-test-plugin.patch + - Fix skip test plugin and revert upstream commit + +--- +Thu Apr 17 11:18:47 UTC 2014 - toddrme2...@gmail.com + +- update to 1.3.1: + * very long list of bugfixes, see included CHANGELOG for details + +--- @@ -9,0 +45,7 @@ + +--- +Mon Sep 16 12:40:54 UTC 2013 - speili...@suse.com + +- Add nose-drop-timing-dependent-tests.patch: Drop several tests that + depend on proper timing which creates random fails (includes last + commit) Old: nose-1.3.0.tar.gz New: nose-1.3.3.tar.gz nose-drop-timing-dependent-tests.patch nose-fix-skip-test-plugin.patch Other differences: -- ++ python-nose-doc.spec ++ --- /var/tmp/diff_new_pack.9SIISH/_old 2014-05-11 14:16:19.0 +0200 +++ /var/tmp/diff_new_pack.9SIISH/_new 2014-05-11 14:16:19.0 +0200 @@ -17,7 +17,7 @@ Name: python-nose-doc -Version:1.3.0 +Version:1.3.3 Release:0 Url:http://readthedocs.org/docs/nose/ Summary:Nose extends unittest to make testing easier ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.9SIISH/_old 2014-05-11 14:16:19.0 +0200 +++
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2014-02-26 06:54:59 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2013-10-25 11:23:54.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2014-02-26 06:55:02.0 +0100 @@ -1,0 +2,5 @@ +Mon Feb 10 15:03:58 UTC 2014 - speili...@suse.com + +- Fix update-alternatives usage + +--- Other differences: -- ++ python-nose-doc.spec ++ --- /var/tmp/diff_new_pack.tBiYoa/_old 2014-02-26 06:55:05.0 +0100 +++ /var/tmp/diff_new_pack.tBiYoa/_new 2014-02-26 06:55:05.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-nose-doc # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.tBiYoa/_old 2014-02-26 06:55:05.0 +0100 +++ /var/tmp/diff_new_pack.tBiYoa/_new 2014-02-26 06:55:05.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-nose # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -66,28 +66,23 @@ %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} -mv %{buildroot}%{_mandir}/man1/nosetests.1 %{buildroot}%{_mandir}/man1/nosetests-%{py_ver}.1 -ln -s %{_mandir}/man1/nosetests-%{py_ver}.1 %{buildroot}%{_mandir}/man1/nosetests.1 rm %{buildroot}%{_bindir}/nosetests -ln -s %{_bindir}/nosetests-%{py_ver} %{buildroot}%{_bindir}/nosetests +mkdir -p %{buildroot}%{_sysconfdir}/alternatives +touch %{buildroot}%{_sysconfdir}/alternatives/nosetests +ln -sf %{_sysconfdir}/alternatives/nosetests %{buildroot}/%{_bindir}/nosetests +mv %{buildroot}%{_mandir}/man1/nosetests.1 %{buildroot}%{_mandir}/man1/nosetests-%{py_ver}.1 +touch %{buildroot}%{_sysconfdir}/alternatives/nosetests.1.gz +ln -sf %{_sysconfdir}/alternatives/nosetests.1.gz %{buildroot}%{_mandir}/man1/nosetests.1.gz %check python setup.py test -%pre -# Since /usr/bin/nosetests and /usr/share/man/man1/nosetests.1.gz became ghosted to be used -# with update-alternatives, we have to get rid of the old binary resulting from the -# non-update-alternativies-ified package: -[[ ! -L %{_bindir}/nosetests ]] rm -f %{_bindir}/nosetests -[[ ! -L %{_mandir}/man1/nosetests.1.gz ]] rm -f %{_mandir}/man1/nosetests.1.gz -exit 0 - %post update-alternatives \ --install %{_bindir}/nosetests nosetests %{_bindir}/nosetests-%{py_ver} 20 \ --slave %{_mandir}/man1/nosetests.1.gz nosetests.1 %{_mandir}/man1/nosetests-%{py_ver}.1.gz -%preun +%postun if [ $1 -eq 0 ] ; then update-alternatives --remove nosetests %{_bindir}/nosetests-%{py_ver} fi @@ -95,10 +90,12 @@ %files %defattr(-,root,root,-) %doc NEWS README.txt lgpl.txt -%ghost %{_bindir}/nosetests +%{_bindir}/nosetests %{_bindir}/nosetests-%{py_ver} -%ghost %{_mandir}/man1/nosetests.1.gz +%{_mandir}/man1/nosetests.1.gz %{_mandir}/man1/nosetests-%{py_ver}.1.gz +%ghost %{_sysconfdir}/alternatives/nosetests +%ghost %{_sysconfdir}/alternatives/nosetests.1.gz %{python_sitelib}/nose-%{version}-py%{py_ver}.egg-info/ %{python_sitelib}/nose -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2013-10-25 11:23:53 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2013-07-02 07:42:32.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2013-10-25 11:23:54.0 +0200 @@ -1,0 +2,5 @@ +Thu Oct 24 10:12:54 UTC 2013 - speili...@suse.com + +- Require setuptools instead of now obsolete distribute + +--- Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.KS8tU2/_old 2013-10-25 11:23:55.0 +0200 +++ /var/tmp/diff_new_pack.KS8tU2/_new 2013-10-25 11:23:55.0 +0200 @@ -26,11 +26,11 @@ Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python-devel -BuildRequires: python-distribute +BuildRequires: python-setuptools BuildRequires: python-xml #Testsuite build requirements: BuildRequires: python-coverage -Requires: python-distribute +Requires: python-setuptools Requires: python-xml Requires(post): update-alternatives Requires(postun): update-alternatives -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2013-07-02 07:42:30 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2013-05-16 16:16:08.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2013-07-02 07:42:32.0 +0200 @@ -1,0 +2,6 @@ +Mon Jul 1 08:30:52 UTC 2013 - speili...@suse.com + +- Drop functional_tests/test_multiprocessing/test_concurrent_shared.py, + it randomly fails (due to timing checks) + +--- Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.X87CHO/_old 2013-07-02 07:42:33.0 +0200 +++ /var/tmp/diff_new_pack.X87CHO/_new 2013-07-02 07:42:33.0 +0200 @@ -58,6 +58,8 @@ %prep %setup -q -n nose-%{version} sed -i s|man/man1|share/man/man1| setup.py # Fix man-page install path +# This tests succeeds/fails based on timing, which breaks on slow build hosts: +rm functional_tests/test_multiprocessing/test_concurrent_shared.py %build python setup.py build -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2013-06-19 16:40:18 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose Changes: python-nose.changes: same change Old: python3-nose-doc.changes python3-nose-doc.spec python3-nose.changes python3-nose.spec Other differences: -- python-nose.spec: same change -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2013-05-16 16:16:07 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2013-05-13 15:25:46.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2013-05-16 16:16:08.0 +0200 @@ -1,0 +2,10 @@ +Wed May 15 14:43:18 UTC 2013 - speili...@suse.com + +- Don't damage entry points + +--- +Wed May 15 14:27:11 UTC 2013 - speili...@suse.com + +- Fix update-alternatives and support upgrade from previous versions + +--- --- /work/SRC/openSUSE:Factory/python-nose/python3-nose.changes 2013-05-13 15:25:46.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python3-nose.changes 2013-05-16 16:16:08.0 +0200 @@ -1,0 +2,10 @@ +Wed May 15 14:43:30 UTC 2013 - speili...@suse.com + +- Don't damage entry points + +--- +Wed May 15 14:27:41 UTC 2013 - speili...@suse.com + +- Fix update-alternatives and support upgrade from previous versions + +--- Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.ljREst/_old 2013-05-16 16:16:09.0 +0200 +++ /var/tmp/diff_new_pack.ljREst/_new 2013-05-16 16:16:09.0 +0200 @@ -64,25 +64,36 @@ %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} -ln -s %{_mandir}/man1/nosetests.1.gz %{buildroot}%{_mandir}/man1/nosetests-%{py_ver}.1.gz +mv %{buildroot}%{_mandir}/man1/nosetests.1 %{buildroot}%{_mandir}/man1/nosetests-%{py_ver}.1 +ln -s %{_mandir}/man1/nosetests-%{py_ver}.1 %{buildroot}%{_mandir}/man1/nosetests.1 +rm %{buildroot}%{_bindir}/nosetests +ln -s %{_bindir}/nosetests-%{py_ver} %{buildroot}%{_bindir}/nosetests %check python setup.py test +%pre +# Since /usr/bin/nosetests and /usr/share/man/man1/nosetests.1.gz became ghosted to be used +# with update-alternatives, we have to get rid of the old binary resulting from the +# non-update-alternativies-ified package: +[[ ! -L %{_bindir}/nosetests ]] rm -f %{_bindir}/nosetests +[[ ! -L %{_mandir}/man1/nosetests.1.gz ]] rm -f %{_mandir}/man1/nosetests.1.gz +exit 0 + %post update-alternatives \ ---install %{_bindir}/nosetests nosetests %{_bindir}/nosetests-%{py_ver} 10 \ ---slave %{_mandir}/man1/nosetests.1.gz nosetests.1 %{_mandir}/nosetests-%{py_ver}.1.gz +--install %{_bindir}/nosetests nosetests %{_bindir}/nosetests-%{py_ver} 20 \ +--slave %{_mandir}/man1/nosetests.1.gz nosetests.1 %{_mandir}/man1/nosetests-%{py_ver}.1.gz -%postun +%preun if [ $1 -eq 0 ] ; then - update-alternatives --remove nosetests %{_bindir}/nosetestsc-%{py_ver} +update-alternatives --remove nosetests %{_bindir}/nosetests-%{py_ver} fi %files %defattr(-,root,root,-) %doc NEWS README.txt lgpl.txt -%ghost %attr(0755,root,root) %{_bindir}/nosetests +%ghost %{_bindir}/nosetests %{_bindir}/nosetests-%{py_ver} %ghost %{_mandir}/man1/nosetests.1.gz %{_mandir}/man1/nosetests-%{py_ver}.1.gz ++ python3-nose.spec ++ --- /var/tmp/diff_new_pack.ljREst/_old 2013-05-16 16:16:09.0 +0200 +++ /var/tmp/diff_new_pack.ljREst/_new 2013-05-16 16:16:09.0 +0200 @@ -63,25 +63,36 @@ %install python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} -ln -s %{_mandir}/man1/nosetests.1.gz %{buildroot}%{_mandir}/man1/nosetests-%{py3_ver}.1.gz +mv %{buildroot}%{_mandir}/man1/nosetests.1 %{buildroot}%{_mandir}/man1/nosetests-%{py3_ver}.1 +ln -s %{_mandir}/man1/nosetests-%{py3_ver}.1 %{buildroot}%{_mandir}/man1/nosetests.1 +rm %{buildroot}%{_bindir}/nosetests +ln -s %{_bindir}/nosetests-%{py3_ver} %{buildroot}%{_bindir}/nosetests #%%check #python3 setup.py test +%pre +# Since /usr/bin/nosetests and /usr/share/man/man1/nosetests.1.gz became ghosted to be used +# with update-alternatives, we have to get rid of the old binary resulting from the +# non-update-alternativies-ified package: +[[ ! -L %{_bindir}/nosetests ]] rm -f %{_bindir}/nosetests +[[ ! -L %{_mandir}/man1/nosetests.1.gz ]] rm -f %{_mandir}/man1/nosetests.1.gz +exit 0 + %post update-alternatives \ ---install %{_bindir}/nosetests nosetests %{_bindir}/nosetests-%{py3_ver} 10 \ ---slave %{_mandir}/man1/nosetests.1.gz nosetests.1 %{_mandir}/nosetests-%{py3_ver}.1.gz +--install %{_bindir}/nosetests nosetests %{_bindir}/nosetests-%{py3_ver} 30 \ +
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2013-05-13 15:25:45 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2013-04-24 19:37:07.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2013-05-13 15:25:46.0 +0200 @@ -1,0 +2,5 @@ +Fri May 3 08:11:42 UTC 2013 - speili...@suse.com + +- Apply update-alternatives for binaries and man-pages + +--- --- /work/SRC/openSUSE:Factory/python-nose/python3-nose.changes 2013-04-24 19:37:07.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python3-nose.changes 2013-05-13 15:25:46.0 +0200 @@ -1,0 +2,5 @@ +Fri May 3 08:12:07 UTC 2013 - speili...@suse.com + +- Apply update-alternatives for binaries and man-pages + +--- Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.8VK7eX/_old 2013-05-13 15:25:47.0 +0200 +++ /var/tmp/diff_new_pack.8VK7eX/_new 2013-05-13 15:25:47.0 +0200 @@ -32,6 +32,8 @@ BuildRequires: python-coverage Requires: python-distribute Requires: python-xml +Requires(post): update-alternatives +Requires(postun): update-alternatives %if 0%{?suse_version} 0%{?suse_version} = 1110 %{!?python_sitelib: %global python_sitelib %(python -c from distutils.sysconfig import get_python_lib; print get_python_lib())} %else @@ -67,13 +69,24 @@ %check python setup.py test +%post +update-alternatives \ +--install %{_bindir}/nosetests nosetests %{_bindir}/nosetests-%{py_ver} 10 \ +--slave %{_mandir}/man1/nosetests.1.gz nosetests.1 %{_mandir}/nosetests-%{py_ver}.1.gz + +%postun +if [ $1 -eq 0 ] ; then + update-alternatives --remove nosetests %{_bindir}/nosetestsc-%{py_ver} +fi + %files %defattr(-,root,root,-) %doc NEWS README.txt lgpl.txt -%{_bindir}/nosetests +%ghost %attr(0755,root,root) %{_bindir}/nosetests %{_bindir}/nosetests-%{py_ver} -%{_mandir}/man1/nosetests.1.gz +%ghost %{_mandir}/man1/nosetests.1.gz %{_mandir}/man1/nosetests-%{py_ver}.1.gz -%{python_sitelib}/* +%{python_sitelib}/nose-%{version}-py%{py_ver}.egg-info/ +%{python_sitelib}/nose %changelog ++ python3-nose.spec ++ --- /var/tmp/diff_new_pack.8VK7eX/_old 2013-05-13 15:25:47.0 +0200 +++ /var/tmp/diff_new_pack.8VK7eX/_new 2013-05-13 15:25:47.0 +0200 @@ -34,6 +34,8 @@ BuildRequires: python-coverage Requires: python3-distribute Requires: python3-xml +Requires(post): update-alternatives +Requires(postun): update-alternatives BuildArch: noarch %description @@ -61,18 +63,29 @@ %install python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} -# remove or move files that conflict with python 2.x -rm %{buildroot}%{_bindir}/nosetests -mv %{buildroot}%{_mandir}/man1/nosetests.1 %{buildroot}%{_mandir}/man1/nosetests-%{py3_ver}.1 +ln -s %{_mandir}/man1/nosetests.1.gz %{buildroot}%{_mandir}/man1/nosetests-%{py3_ver}.1.gz #%%check #python3 setup.py test +%post +update-alternatives \ +--install %{_bindir}/nosetests nosetests %{_bindir}/nosetests-%{py3_ver} 10 \ +--slave %{_mandir}/man1/nosetests.1.gz nosetests.1 %{_mandir}/nosetests-%{py3_ver}.1.gz + +%postun +if [ $1 -eq 0 ] ; then + update-alternatives --remove nosetests %{_bindir}/nosetestsc-%{py3_ver} +fi + %files %defattr(-,root,root,-) %doc NEWS README.txt lgpl.txt +%ghost %attr(0755,root,root) %{_bindir}/nosetests %{_bindir}/nosetests-%{py3_ver} +%ghost %{_mandir}/man1/nosetests.1.gz %{_mandir}/man1/nosetests-%{py3_ver}.1.gz -%{python3_sitelib}/* +%{python3_sitelib}/nose-%{version}-py%{py3_ver}.egg-info/ +%{python3_sitelib}/nose %changelog -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2013-04-24 19:37:06 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose, Maintainer is radma...@suse.com Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2013-01-20 14:42:39.0 +0100 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2013-04-24 19:37:07.0 +0200 @@ -1,0 +2,6 @@ +Mon Apr 22 14:48:05 UTC 2013 - dmuel...@suse.com + +- update to 1.3.0: + * very long list of bugfixes, see included CHANGELOG for details + +--- --- /work/SRC/openSUSE:Factory/python-nose/python3-nose.changes 2013-01-20 14:42:39.0 +0100 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python3-nose.changes 2013-04-24 19:37:07.0 +0200 @@ -2 +2,7 @@ -Fri Jan 18 10:32:51 UTC 2013 - sasc...@suse.de +Mon Apr 22 14:48:05 UTC 2013 - dmuel...@suse.com + +- update to 1.3.0: + * very long list of bugfixes, see included CHANGELOG for details + +--- +Fri Jan 18 10:32:23 UTC 2013 - sasc...@suse.de @@ -8 +14 @@ -Tue Nov 20 17:44:46 UTC 2012 - sasc...@suse.de +Tue Nov 20 12:06:35 UTC 2012 - sasc...@suse.de @@ -33 +39,2 @@ -- Drop unneeded macros +- Testsuite seems to work on SLE_11_SP2, reenable +- Symlink nosetests.1 manpage to nosetests-%{py_ver}.1 @@ -48,0 +56,214 @@ + +--- +Tue Apr 24 08:48:35 UTC 2012 - sasc...@suse.de + +- Disable testsuite on openSUSE-11.4 and less to fix build + +--- +Mon Apr 2 12:02:50 UTC 2012 - sasc...@suse.de + +- Move doc package into seperate spec to break build cycle between + python-nose and python-Pygments (pulled in by python-Sphinx) + +--- +Sat Mar 10 16:53:22 UTC 2012 - sasc...@gmx.de + +- Simply macro usage +- Run testsuite + +--- +Wed Sep 21 10:12:57 UTC 2011 - sasc...@suse.de + +- Needs python-distribute at runtime + +--- +Tue Sep 13 20:27:36 UTC 2011 - sasc...@suse.de + +- Upper-case %description + +--- +Thu Sep 8 16:44:02 UTC 2011 - sasc...@suse.de + +- Disabled testsuite to fix build + +--- +Thu Sep 8 15:43:42 UTC 2011 - sasc...@suse.de + +- Update to 1.1.2: + * Fixed regression where the .coverage file was not saved (#439). + * Fixed missing nose.sphinx module in source distribution (#436). +- Spec file changes: + * Depend on python-distribute instead of python-setuptools + * Changed license to LGPL-2.0+ (SPDX style) + * Properly build and install HTML documentation + * Requires python-xml at runtime + +--- +Mon Feb 7 21:34:42 UTC 2011 - l...@linux-schulserver.de + +- update to 1.0.0: + + Made nose compatible with python 3. +**Huge** thanks to Alex foogod Stewart! + +--- +Tue Sep 14 08:30:06 UTC 2010 - co...@novell.com + +- update to 0.11.4 + - Made nose compatible with Python 2.7. + - Fixed default plugin manager's use of plugin overriding. Thanks to + rob.daylife for the bug report and patch. (#323). + - Changed plugin loading so that external plugins loaded via extension + points can override builtin plugins with the same name. + ... for more see CHANGELOG + +--- +Wed Jul 22 17:45:32 CEST 2009 - l...@linux-schulserver.de + +- update to 0.11.1 + + Fixed bug in xunit plugin xml escaping. + + Fixed bug in xunit plugin that could cause test run to crash +after certain types of errors or actions by other plugins. + + Fixed bug in testid plugin that could cause test run to crash +after certain types of errors or actions by other plugins. + + Fixed bug in collect only plugin that caused it to fail when +collecting from test generators. + + Fixed some broken html in docs. +- update to 0.11.1 contains changes from 0.11: + + Added multiprocess plugin that allows tests to be run in parallel +across multiple processes. + + Added logcapture plugin that captures logging messages and prints +them with failing tests. + + Added optional HTML coverage reports to coverage plugin. + + Added plugin that enables collection of tests in all modules. + + Added --failed option to testid
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2013-01-20 14:42:37 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose, Maintainer is radma...@suse.com Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2012-11-28 14:33:22.0 +0100 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2013-01-20 14:42:39.0 +0100 @@ -1,0 +2,6 @@ +Fri Jan 18 10:32:23 UTC 2013 - sasc...@suse.de + +- Add nose-1.2.1-plugin-failuredetail-no-tb.patch: Don't fail if + traceback is missing + +--- --- /work/SRC/openSUSE:Factory/python-nose/python3-nose.changes 2012-11-28 14:33:22.0 +0100 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python3-nose.changes 2013-01-20 14:42:39.0 +0100 @@ -1,0 +2,6 @@ +Fri Jan 18 10:32:51 UTC 2013 - sasc...@suse.de + +- Add nose-1.2.1-plugin-failuredetail-no-tb.patch: Don't fail if + traceback is missing + +--- New: nose-1.2.1-plugin-failuredetail-no-tb.patch Other differences: -- ++ python-nose-doc.spec ++ --- /var/tmp/diff_new_pack.NgaISZ/_old 2013-01-20 14:42:40.0 +0100 +++ /var/tmp/diff_new_pack.NgaISZ/_new 2013-01-20 14:42:40.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-nose-doc # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.NgaISZ/_old 2013-01-20 14:42:40.0 +0100 +++ /var/tmp/diff_new_pack.NgaISZ/_new 2013-01-20 14:42:40.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-nose # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,6 +24,8 @@ License:LGPL-2.0+ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz +# PATCH-FIX-UPSTREAM sasc...@suse.de -- Backport of https://github.com/nose-devs/nose/pull/603 +Patch0: nose-1.2.1-plugin-failuredetail-no-tb.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python-devel BuildRequires: python-distribute @@ -55,6 +57,7 @@ %prep %setup -q -n nose-%{version} +%patch0 -p1 sed -i s|man/man1|share/man/man1| setup.py # Fix man-page install path %build ++ python3-nose-doc.spec ++ --- /var/tmp/diff_new_pack.NgaISZ/_old 2013-01-20 14:42:40.0 +0100 +++ /var/tmp/diff_new_pack.NgaISZ/_new 2013-01-20 14:42:40.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package python3-nose-doc # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed ++ python3-nose.spec ++ --- /var/tmp/diff_new_pack.NgaISZ/_old 2013-01-20 14:42:40.0 +0100 +++ /var/tmp/diff_new_pack.NgaISZ/_new 2013-01-20 14:42:40.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package python3-nose # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,6 +24,8 @@ License:LGPL-2.0+ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz +# PATCH-FIX-UPSTREAM sasc...@suse.de -- Backport of https://github.com/nose-devs/nose/pull/603 +Patch0: nose-1.2.1-plugin-failuredetail-no-tb.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python3 BuildRequires: python3-2to3 @@ -53,6 +55,7 @@ %prep %setup -q -n nose-%{version} +%patch0 -p1 sed -i 's,man/man1,share/man/man1,' setup.py %build ++ nose-1.2.1-plugin-failuredetail-no-tb.patch ++ commit f87c831164b3ae4193d025f07b20bfcc7d131a02 Author: Sascha Peilicke sasc...@suse.de Date: Fri Jan
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2012-11-28 14:33:16 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose, Maintainer is cth...@suse.com Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose-doc.changes 2012-05-29 11:44:44.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose-doc.changes 2012-11-28 14:33:22.0 +0100 @@ -1,0 +2,27 @@ +Tue Nov 20 17:50:51 UTC 2012 - sasc...@suse.de + +- Update to version 1.2.1: + + Correct nose.__version__ (#549). Thanks to Chris Withers for the bug report. +- Changes from version 1.2.0: + + Fixed issue where plugins included with `addplugins` keyword could +be overridden by built-in plugins (or third-party plugins registered +with setuptools) of the same name (#466). + + Adds :option:`--cover-xml` and :option:`--cover-xml-file` (#311). + + Adds support for :option:`--cover-branches` (related to #370). + + Fixed Unicode issue on Python 3.1 with coverage (#442) + + fixed class level fixture handling in multiprocessing plugin + + Clue in the ``unittest`` module so it no longer prints traceback frames for +our clones of their simple assertion helpers (#453). Patch by Erik Rose. + + Stop using the ``assert`` statement in ``ok_`` and ``eq_`` so they work under +``python -O`` (#504). Patch by Erik Rose. + + Add loglevel option to logcapture plugin (#493). + + Add doctest options flag (#7 from google code tracker). + + Add support for using 2to3 with the nosetests setuptools command. + + Add --cover-min-percentage flag to force test runs without sufficient +coverage to fail (#540). Patch by Domen Kožar. + + Add travis-ci configuraion (#545). + + Call reactor.stop from twisted thread (#301). +- Changes from version 1.1.2: + + Fixed regression where the .coverage file was not saved (#439). + +--- --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2012-05-29 11:44:44.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2012-11-28 14:33:22.0 +0100 @@ -1,0 +2,29 @@ +Tue Nov 20 12:06:35 UTC 2012 - sasc...@suse.de + +- Update to version 1.2.1: + + Correct nose.__version__ (#549). Thanks to Chris Withers for the bug report. +- Changes from version 1.2.0: + + Fixed issue where plugins included with `addplugins` keyword could +be overridden by built-in plugins (or third-party plugins registered +with setuptools) of the same name (#466). + + Adds :option:`--cover-xml` and :option:`--cover-xml-file` (#311). + + Adds support for :option:`--cover-branches` (related to #370). + + Fixed Unicode issue on Python 3.1 with coverage (#442) + + fixed class level fixture handling in multiprocessing plugin + + Clue in the ``unittest`` module so it no longer prints traceback frames for +our clones of their simple assertion helpers (#453). Patch by Erik Rose. + + Stop using the ``assert`` statement in ``ok_`` and ``eq_`` so they work under +``python -O`` (#504). Patch by Erik Rose. + + Add loglevel option to logcapture plugin (#493). + + Add doctest options flag (#7 from google code tracker). + + Add support for using 2to3 with the nosetests setuptools command. + + Add --cover-min-percentage flag to force test runs without sufficient +coverage to fail (#540). Patch by Domen Kožar. + + Add travis-ci configuraion (#545). + + Call reactor.stop from twisted thread (#301). +- Changes from version 1.1.2: + + Fixed regression where the .coverage file was not saved (#439). +- Testsuite seems to work on SLE_11_SP2, reenable +- Symlink nosetests.1 manpage to nosetests-%{py_ver}.1 + +--- --- /work/SRC/openSUSE:Factory/python-nose/python3-nose-doc.changes 2012-05-29 11:44:44.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python3-nose-doc.changes 2012-11-28 14:33:22.0 +0100 @@ -1,0 +2,27 @@ +Tue Nov 20 17:51:03 UTC 2012 - sasc...@suse.de + +- Update to version 1.2.1: + + Correct nose.__version__ (#549). Thanks to Chris Withers for the bug report. +- Changes from version 1.2.0: + + Fixed issue where plugins included with `addplugins` keyword could +be overridden by built-in plugins (or third-party plugins registered +with setuptools) of the same name (#466). + + Adds :option:`--cover-xml` and :option:`--cover-xml-file` (#311). + + Adds support for :option:`--cover-branches` (related to #370). + + Fixed Unicode issue on Python 3.1 with coverage (#442) + + fixed class level fixture handling in multiprocessing plugin + + Clue in the ``unittest`` module so it
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2012-05-29 11:44:43 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose, Maintainer is Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose-doc.changes 2012-05-07 22:50:12.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose-doc.changes 2012-05-29 11:44:44.0 +0200 @@ -1,0 +2,5 @@ +Fri May 25 14:13:51 UTC 2012 - toddrme2...@gmail.com + +- Added python 3 documentation package + +--- python-nose.changes: same change New Changes file: --- /dev/null 2012-05-03 01:24:41.895590051 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python3-nose-doc.changes 2012-05-29 11:44:44.0 +0200 @@ -0,0 +1,5 @@ +--- +Fri May 25 14:13:51 UTC 2012 - toddrme2...@gmail.com + +- Added python 3 documentation package + --- /work/SRC/openSUSE:Factory/python-nose/python3-nose.changes 2012-05-07 22:50:12.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python3-nose.changes 2012-05-29 11:44:44.0 +0200 @@ -1,0 +2,5 @@ +Fri May 25 14:13:51 UTC 2012 - toddrme2...@gmail.com + +- Added python 3 documentation package + +--- New: python3-nose-doc.changes python3-nose-doc.spec Other differences: -- python-nose.spec: same change ++ python3-nose-doc.spec ++ # # spec file for package python3-nose-doc # # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An Open Source License is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # Name: python3-nose-doc Version:1.1.2 Release:0 Url:http://readthedocs.org/docs/nose/ Summary:Nose extends unittest to make testing easier License:LGPL-2.0+ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python3-Sphinx BuildRequires: python3 BuildRequires: python3-2to3 BuildRequires: python3-devel Requires: python3-nose = %{version} BuildArch: noarch %description Nose extends the test loading and running features of unittest, making it easier to write, find and run tests. By default, nose will run tests in files or directories under the current working directory whose names include test or Test at a word boundary (like test_this or functional_test or TestClass but not libtest). Test output is similar to that of unittest, but also includes captured stdout output from failing tests, for easy print-style debugging. These features, and many more, are customizable through the use of plugins. Plugins included with nose provide support for doctest, code coverage and profiling, flexible attribute-based test selection, output capture and more. %prep %setup -q -n nose-%{version} %build cd doc make html rm .build/html/.buildinfo # Generate HTML documentation %install %files %defattr(-,root,root,-) %doc AUTHORS CHANGELOG examples doc/.build/html %changelog -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2012-05-07 22:50:05 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose, Maintainer is Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose-doc.changes 2012-04-02 19:52:48.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose-doc.changes 2012-05-07 22:50:12.0 +0200 @@ -1,0 +2,10 @@ +Fri Apr 27 14:07:19 UTC 2012 - toddrme2...@gmail.com + +- Fix building python 3 package on openSUSE 11.4 + +--- +Thu Apr 26 08:47:38 UTC 2012 - toddrme2...@gmail.com + +- Add python 3 packages + +--- --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2012-04-02 19:52:48.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2012-05-07 22:50:12.0 +0200 @@ -1,0 +2,15 @@ +Fri Apr 27 14:07:19 UTC 2012 - toddrme2...@gmail.com + +- Fix building python 3 package on openSUSE 11.4 + +--- +Thu Apr 26 08:47:38 UTC 2012 - toddrme2...@gmail.com + +- Add python 3 packages + +--- +Tue Apr 24 08:48:35 UTC 2012 - sasc...@suse.de + +- Disable testsuite on openSUSE-11.4 and less to fix build + +--- New Changes file: --- /dev/null 2012-05-03 01:24:41.895590051 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python3-nose.changes 2012-05-07 22:50:12.0 +0200 @@ -0,0 +1,10 @@ +--- +Fri Apr 27 14:07:19 UTC 2012 - toddrme2...@gmail.com + +- Fix building python 3 package on openSUSE 11.4 + +--- +Thu Apr 26 08:47:38 UTC 2012 - toddrme2...@gmail.com + +- Add python 3 packages + New: python3-nose.changes python3-nose.spec Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.1ORaOd/_old 2012-05-07 22:50:15.0 +0200 +++ /var/tmp/diff_new_pack.1ORaOd/_new 2012-05-07 22:50:15.0 +0200 @@ -61,8 +61,10 @@ %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} +%if 0%{?suse_version} 1140 %check python setup.py test +%endif %files %defattr(-,root,root,-) ++ python3-nose.spec ++ # # spec file for package python3-nose # # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An Open Source License is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # Name: python3-nose Version:1.1.2 Release:0 Url:http://readthedocs.org/docs/nose/ Summary:Nose extends unittest to make testing easier License:LGPL-2.0+ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python3 BuildRequires: python3-2to3 BuildRequires: python3-devel BuildRequires: python3-distribute BuildRequires: python3-xml %if 0%{?suse_version} = 1140 %{!?python3_sitelib: %global python3_sitelib %(python3 -c from distutils.sysconfig import get_python_lib; print(get_python_lib()))} %{!?py3_ver: %global py3_ver %(python3 -c import sys; version=str(sys.version_info[0]) + '.' + str(sys.version_info[1]); print(version) 2/dev/null || echo PYTHON-NOT-FOUND)} %ifarch x86_64 # to allow ownership of noarch python directories BuildRequires: python3-32bit %endif %endif BuildArch: noarch Requires: python3 = %{py3_ver} Requires: python3-distribute Requires: python3-xml %description Nose extends the test loading and running features of unittest, making it easier to write, find and run tests. By default, nose will run tests in files or directories under the current working directory whose names include test or Test at a word boundary (like test_this or
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at 2012-03-11 20:05:03 Comparing /work/SRC/openSUSE:Factory/python-nose (Old) and /work/SRC/openSUSE:Factory/.python-nose.new (New) Package is python-nose, Maintainer is Changes: --- /work/SRC/openSUSE:Factory/python-nose/python-nose.changes 2011-09-26 10:16:31.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes 2012-03-11 20:05:05.0 +0100 @@ -1,0 +2,6 @@ +Sat Mar 10 16:53:22 UTC 2012 - sasc...@gmx.de + +- Simply macro usage +- Run testsuite + +--- Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.s5vynR/_old 2012-03-11 20:05:06.0 +0100 +++ /var/tmp/diff_new_pack.s5vynR/_new 2012-03-11 20:05:06.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-nose # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,7 +16,6 @@ # - Name: python-nose Version:1.1.2 Release:0 @@ -26,19 +25,17 @@ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: python-Sphinx BuildRequires: python-devel BuildRequires: python-distribute -BuildRequires: python-Sphinx BuildRequires: python-xml Requires: python-distribute Requires: python-xml -%if 0%{?suse_version} -%py_requires -%if 0%{?suse_version} 1110 +%if 0%{?suse_version} 0%{?suse_version} = 1110 +%{!?python_sitelib: %global python_sitelib %(python -c from distutils.sysconfig import get_python_lib; print get_python_lib())} +%else BuildArch: noarch %endif -%endif -%{!?python_sitelib: %global python_sitelib %(%{__python} -c from distutils.sysconfig import get_python_lib; print get_python_lib())} %description Nose extends the test loading and running features of unittest, making @@ -67,8 +64,8 @@ %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} -#%%check -#python setup.py test +%check +python setup.py test %files %defattr(-,root,root,-) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-nose for openSUSE:Factory
Hello community, here is the log from the commit of package python-nose for openSUSE:Factory checked in at Mon Sep 26 10:16:43 CEST 2011. --- python-nose/python-nose.changes 2011-09-20 00:56:12.0 +0200 +++ /mounts/work_src_done/STABLE/python-nose/python-nose.changes 2011-09-21 12:14:19.0 +0200 @@ -1,0 +2,5 @@ +Wed Sep 21 10:12:57 UTC 2011 - sasc...@suse.de + +- Needs python-distribute at runtime + +--- calling whatdependson for head-i586 Other differences: -- ++ python-nose.spec ++ --- /var/tmp/diff_new_pack.oezRVG/_old 2011-09-26 10:16:29.0 +0200 +++ /var/tmp/diff_new_pack.oezRVG/_new 2011-09-26 10:16:29.0 +0200 @@ -30,6 +30,7 @@ BuildRequires: python-distribute BuildRequires: python-Sphinx BuildRequires: python-xml +Requires: python-distribute Requires: python-xml %if 0%{?suse_version} %py_requires Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org