Hello community,

here is the log from the commit of package python-zope-event for 
openSUSE:Factory checked in at 2013-01-20 08:18:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-zope-event (Old)
 and      /work/SRC/openSUSE:Factory/.python-zope-event.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-zope-event", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-zope-event/python-zope-event.changes      
2012-01-26 16:00:24.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python-zope-event.new/python-zope-event.changes 
2013-01-20 08:19:00.000000000 +0100
@@ -1,0 +2,17 @@
+Tue Jan 15 14:33:50 UTC 2013 - [email protected]
+
+- Drop the lib dir messing around, the package is noarch
+
+-------------------------------------------------------------------
+Mon Jan 14 14:30:19 UTC 2013 - [email protected]
+
+- Initial python3 support
+
+-------------------------------------------------------------------
+Mon Jan 14 14:29:47 UTC 2013 - [email protected]
+
+- Update to 4.0.2 version:
+  * Fleshed out PyPI Trove classifiers.
+  * Added support for jython 2.7.
+
+-------------------------------------------------------------------
New Changes file:

--- /dev/null   2013-01-09 19:40:42.352580873 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-zope-event.new/python3-zope-event.changes    
    2013-01-20 08:19:00.000000000 +0100
@@ -0,0 +1,10 @@
+-------------------------------------------------------------------
+Tue Jan 15 14:34:12 UTC 2013 - [email protected]
+
+- Drop the lib dir messing around, the package is noarch
+
+-------------------------------------------------------------------
+Mon Jan 14 14:33:08 UTC 2013 - [email protected]
+
+- Initial python3 support
+

Old:
----
  zope.event-3.5.0-1.tar.bz2

New:
----
  python3-zope-event.changes
  python3-zope-event.spec
  zope.event-4.0.2.tar.bz2

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

Other differences:
------------------
++++++ python-zope-event.spec ++++++
--- /var/tmp/diff_new_pack.b5mpt2/_old  2013-01-20 08:19:02.000000000 +0100
+++ /var/tmp/diff_new_pack.b5mpt2/_new  2013-01-20 08:19:02.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zope-event
 #
-# 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
@@ -15,20 +15,23 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%define modname zope.event
 
 Name:           python-zope-event
-Version:        3.5.0
+Version:        4.0.2
 Release:        0
 Summary:        Very basic event publishing system
 License:        ZPL-2.1
 Group:          Development/Libraries/Python
 Url:            http://pypi.python.org/pypi/zope.event
-Source:         %{modname}-%{version}-1.tar.bz2
+Source:         zope.event-%{version}.tar.bz2
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-%{py_requires}
 BuildRequires:  python-devel
-BuildRequires:  python-setuptools
+BuildRequires:  python-distribute
+%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
 
 %description
 An event publishing system and a very simple event-dispatching system on
@@ -38,25 +41,16 @@
 
 
 %prep
-%setup -q -n %{modname}-%{version}-1
+%setup -q -n zope.event-%{version}
 
 %build
-export CFLAGS="$RPM_OPT_FLAGS"
 python setup.py build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT 
--record-rpm=INSTALLED_FILES
-
-%if "%{_lib}"=="lib64"
-mkdir -p $RPM_BUILD_ROOT/usr/lib64/python%{py_ver}/
-mv $RPM_BUILD_ROOT/usr/lib/python%{py_ver}/site-packages/ 
$RPM_BUILD_ROOT/usr/lib64/python%{py_ver}/
-sed -e 's,/lib\>,/lib64,g' -i INSTALLED_FILES
-%endif
-
-%clean
-rm -rf %{buildroot}
+python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
-%files -f INSTALLED_FILES
+%files
 %defattr(-,root,root)
+%{python_sitelib}/*
 
 %changelog

++++++ python3-zope-event.spec ++++++
#
# spec file for package python3-zope-event
#
# 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
# 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-zope-event
Version:        4.0.2
Release:        0
Summary:        Very basic event publishing system
License:        ZPL-2.1
Group:          Development/Libraries/Python
Url:            http://pypi.python.org/pypi/zope.event
Source:         zope.event-%{version}.tar.bz2
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildRequires:  python3
BuildRequires:  python3-devel
BuildRequires:  python3-distribute
BuildArch:      noarch

%description
An event publishing system and a very simple event-dispatching system on
which more sophisticated event dispatching systems can be built. For
example, a type-based event dispatching system that builds on zope.event
can be found in zope.component.


%prep
%setup -q -n zope.event-%{version}

%build
python3 setup.py build

%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}

%files
%defattr(-,root,root)
%{python3_sitelib}/*

%changelog
++++++ zope.event-3.5.0-1.tar.bz2 -> zope.event-4.0.2.tar.bz2 ++++++
++++ 1677 lines of diff (skipped)

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

Reply via email to