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.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose-doc.changes 
2012-05-07 22:50:12.000000000 +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.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-nose.new/python-nose.changes     
2012-05-07 22:50:12.000000000 +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.000000000 +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.000000000 +0200
+++ /var/tmp/diff_new_pack.1ORaOd/_new  2012-05-07 22:50:15.000000000 +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 "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}
sed -i 's,man/man1,share/man/man1,' setup.py

%build
# 2to3 -w -n ./
python3 setup.py build

%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

#%if 0%{?suse_version} > 1140
#%check
#python3 setup.py test
#%endif

%files
%defattr(-,root,root,-)
%doc NEWS README.txt lgpl.txt
%{_bindir}/nosetests-%{py3_ver}
%{_mandir}/man1/nosetests-%{py3_ver}.1.gz
%{python3_sitelib}/*

%changelog
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to