Hello community,

here is the log from the commit of package python-CherryPy for openSUSE:Factory 
checked in at 2012-05-29 10:35:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-CherryPy (Old)
 and      /work/SRC/openSUSE:Factory/.python-CherryPy.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-CherryPy", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-CherryPy/python-CherryPy.changes  
2011-09-23 12:42:23.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-CherryPy.new/python-CherryPy.changes     
2012-05-29 10:35:08.000000000 +0200
@@ -1,0 +2,7 @@
+Wed May 23 04:54:27 UTC 2012 - [email protected]
+
+- update to 3.2.2
+- python3 package added
+- minor spec improvement 
+
+-------------------------------------------------------------------
New Changes file:

--- /dev/null   2012-05-03 01:24:41.895590051 +0200
+++ /work/SRC/openSUSE:Factory/.python-CherryPy.new/python3-CherryPy.changes    
2012-05-29 10:35:08.000000000 +0200
@@ -0,0 +1,11 @@
+-------------------------------------------------------------------
+Fri May 25 08:33:12 UTC 2012 - [email protected]
+
+- Fix building on openSUSE 11.4
+- spec file cleanups
+
+-------------------------------------------------------------------
+Wed May 23 04:57:34 UTC 2012 - [email protected]
+
+- python3 package added 
+

Old:
----
  CherryPy-3.2.0.tar.bz2

New:
----
  CherryPy-3.2.2.tar.bz2
  python3-CherryPy.changes
  python3-CherryPy.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-CherryPy.spec ++++++
--- /var/tmp/diff_new_pack.1fFlAK/_old  2012-05-29 10:35:10.000000000 +0200
+++ /var/tmp/diff_new_pack.1fFlAK/_new  2012-05-29 10:35:10.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-CherryPy
 #
-# 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
@@ -18,7 +18,7 @@
 
 
 Name:           python-CherryPy
-Version:        3.2.0
+Version:        3.2.2
 Release:        1
 Url:            http://www.cherrypy.org
 Summary:        Object-Oriented HTTP framework
@@ -71,6 +71,7 @@
 %defattr(-,root,root,-)
 %doc README.txt
 %{_bindir}/cherryd
-%python_sitelib/*
+%{python_sitelib}/cherrypy/
+%{python_sitelib}/CherryPy-%{version}-py%{py_ver}.egg-info
 
 %changelog

++++++ python3-CherryPy.spec ++++++
#
# spec file for package python3-CherryPy
#
# 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-CherryPy
Version:        3.2.2
Release:        1
Url:            http://www.cherrypy.org
Summary:        Object-Oriented HTTP framework
License:        BSD-3-Clause
Group:          Development/Languages/Python
Source:         CherryPy-%{version}.tar.bz2
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildRequires:  python3-devel
%if 0%{?suse_version} && 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)}
%else
BuildRequires:  python3-base
%endif
Requires:       python(abi) = %{py3_ver}
BuildArch:       noarch

%description
CherryPy is a pythonic, object-oriented HTTP framework.

CherryPy allows developers to build web applications in much the same way they
would build any other object-oriented Python program. This usually results in
smaller source code developed in less time.

CherryPy is now more than three years old and it is has proven very fast and
stable. It is being used in production by many sites, from the simplest ones
to the most demanding ones.

Oh, and most importantly: CherryPy is fun to work with :-)

%prep
%setup -q -n CherryPy-%{version}

%build
export CFLAGS="%{optflags}"
python3 setup.py build

%install
sed -i 's|\r||' README.txt # Fix wrong EOL encoding
find . -name sessiondemo.py -type f -exec chmod 0755 {} \; # Fix non-executable 
bit rpmlint warning
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
mv %{buildroot}%{_bindir}/cherryd 
%{buildroot}%{_bindir}/cherryd-python%{py3_ver}
%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root,-)
%doc README.txt
%{_bindir}/cherryd-python%{py3_ver}
%{python3_sitelib}/cherrypy/
%{python3_sitelib}/CherryPy-%{version}-py%{py3_ver}.egg-info
%if 0%{?suse_version} <= 1140
%dir %{_prefix}/lib/python%{py3_ver}
%dir %{python3_sitelib}
%endif

%changelog
++++++ CherryPy-3.2.0.tar.bz2 -> CherryPy-3.2.2.tar.bz2 ++++++
++++ 97282 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to