%global pythonver %(python -c "import sys; print sys.version[:3]" 2>/dev/null || echo 0.0) %{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)" 2>/dev/null)} Name: python-zope-interface Version: 4.5.0 Release: 1.0.cf%{?dist} Summary: Zope 3 Interface Infrastructure License: ZPLv2.1 URL: http://pypi.python.org/pypi/zope.interface Source0: https://files.pythonhosted.org/packages/source/z/zope.interface/zope.interface-%{version}.tar.gz BuildRequires: coreutils BuildRequires: findutils BuildRequires: gcc BuildRequires: python2-devel >= 2.7 # zope.interface 3.5.0 onwards won't build the C extension if distutils are used BuildRequires: python-setuptools # zope.event needed for test suite BuildRequires: python-zope-event BuildRequires: sed Obsoletes: python-zope-filesystem < 1.0001 Provides: python-zope-filesystem = 1.0001 # Don't want provides for python shared objects %{?filter_provides_in: %filter_provides_in %{python_sitearch}/zope/.*\.so} %{?filter_setup} %description Interfaces are a mechanism for labeling objects as conforming to a given API or contract. This is a separate distribution of the zope.interface package used in Zope 3. %prep %setup -n zope.interface-%{version} -q %build CFLAGS="%{optflags}" python setup.py build %install python setup.py install -O1 --skip-build --root %{buildroot} # Will put docs in %%{_docdir} instead rm -f %{buildroot}%{python_sitearch}/zope/interface/{,tests/}*.txt # Don't want the large build documentation rm -rf docs/_build # .gitignore files shouldn't be distributed, let alone packaged find docs/ -type f -name .gitignore -print -delete # C files don't need to be packaged rm -f %{buildroot}%{python_sitearch}/zope/interface/_zope_interface_coptimizations.c # Fix permissions of shared objects to placate rpmlint chmod 755 %{buildroot}%{python_sitearch}/zope/interface/_zope_interface_coptimizations.so # See if there's any egg-info or namespace details ( [ -d %{buildroot}%{python_sitearch}/zope.interface-%{version}-py*.egg-info ] && echo %{buildroot}%{python_sitearch}/zope.interface-%{version}-py*.egg-info/ [ -f %{buildroot}%{python_sitearch}/zope.interface-%{version}-py*-nspkg.pth ] && echo %{buildroot}%{python_sitearch}/zope.interface-%{version}-py*-nspkg.pth ) | sed -e 's|^%{buildroot}||' > egg-info %check python setup.py test %files -f egg-info %if 0%{?_licensedir:1} %license COPYRIGHT.txt LICENSE.txt %else %doc COPYRIGHT.txt LICENSE.txt %endif %doc CHANGES.rst README.rst docs/ %{python_sitearch}/zope/ %changelog * Thu Apr 19 2018 Paul Howarth - 4.5.0-1.0.cf - Update to 4.5.0 - Drop support for 3.3, avoid accidental dependence breakage via setup.py (https://github.com/zopefoundation/zope.interface/pull/110) - Allow registering and unregistering instance methods as listeners (https://github.com/zopefoundation/zope.interface/issues/12 https://github.com/zopefoundation/zope.interface/pull/102) - Synchronize and simplify zope/__init__.py (https://github.com/zopefoundation/zope.interface/issues/114) * Fri Sep 22 2017 Paul Howarth - 4.4.3-1.0.cf - Update to 4.4.3 - Avoid exceptions when the '__annotations__' attribute is added to interface definitions with Python 3.x type hints (https://github.com/zopefoundation/zope.interface/issues/98) - Fix the possibility of a rare crash in the C extension when deallocating items (https://github.com/zopefoundation/zope.interface/issues/100) * Thu Jun 15 2017 Paul Howarth - 4.4.2-1.0.cf - Update to 4.4.2 - Fix a regression storing 'zope.component.persistentregistry.PersistentRegistry' instances (https://github.com/zopefoundation/zope.interface/issues/85) - Fix a regression that could lead to the utility registration cache of 'Components' getting out of sync (https://github.com/zopefoundation/zope.interface/issues/93) * Wed May 17 2017 Paul Howarth - 4.4.1-1.0.cf - Update to 4.4.1 - Avoid a warning from the C compiler (https://github.com/zopefoundation/zope.interface/issues/71) - Add support for Python 3.6 - Simplify the caching of utility-registration data; in addition to simplification, avoids spurious test failures when checking for leaks in tests with persistent registries - Raise 'ValueError' when non-text names are passed to adapter registry methods: prevents corruption of lookup caches - Drop support for EOL distributions prior to F-13 - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section * Wed Dec 14 2016 Paul Howarth - 4.3.3-1.0.cf - Update to 4.3.3 - Correct typos and ReST formatting errors in documentation - Add API documentation for the adapter registry - Ensure that the LICENSE.txt file is included in built wheels - Fix C optimizations broken on Py3k; see the Python bug at: http://bugs.python.org/issue15657 (https://github.com/zopefoundation/zope.interface/issues/60) * Mon Sep 5 2016 Paul Howarth - 4.3.2-1.0.cf - Update to 4.3.2 - Fix equality testing of 'implementedBy' objects and proxies (https://github.com/zopefoundation/zope.interface/issues/55) * Thu Sep 1 2016 Paul Howarth - 4.3.1-1.0.cf - Update to 4.3.1 - Support Components subclasses that are not hashable (https://github.com/zopefoundation/zope.interface/issues/53) * Wed Aug 31 2016 Paul Howarth - 4.3.0-1.0.cf - Update to 4.3.0 - Add the ability to sort the objects returned by 'implementedBy'; this is compatible with the way interface classes sort so they can be used together in ordered containers like BTrees (https://github.com/zopefoundation/zope.interface/issues/42) - Make 'setuptools' a hard dependency of 'setup.py' (https://github.com/zopefoundation/zope.interface/issues/13) - Change a linear algorithm (O(n)) in 'Components.registerUtility' and 'Components.unregisterUtility' into a dictionary lookup (O(1)) for hashable components, which substantially improves the time taken to manipulate utilities in large registries at the cost of some additional memory usage (https://github.com/zopefoundation/zope.interface/issues/46) * Wed Jun 15 2016 Paul Howarth - 4.2.0-1.0.cf - Update to 4.2.0 - Add support for Python 3.5 - Drop support for Python 2.6 and 3.2 - Use new upstream redirector URL for Source0 - Don't package .gitignore files in docs tree * Mon Oct 5 2015 Paul Howarth - 4.1.3-1.0.cf - Update to 4.1.3 - Fix installation without a C compiler on Python 3.5 (https://github.com/zopefoundation/zope.interface/issues/24) - Use %%license where possible * Sun Jan 4 2015 Paul Howarth - 4.1.2-1.0.cf - Update to 4.1.2 - Add support for PyPy3 - Remove unittest assertions deprecated in Python3.x - Add 'zope.interface.document.asReStructuredText', which formats the generated text for an interface using ReST double-backtick markers * Thu Mar 20 2014 Paul Howarth - 4.1.1-1.0.cf - Update to 4.1.1 - Added support for Python 3.4 * Thu Feb 6 2014 Paul Howarth - 4.1.0-1.0.cf - Update to 4.1.0 - Updated 'bootstrap.py' to version 2.2 - Added '@named(name)' declaration, which specifies the component name, so it does not have to be passed in during registration - Avoid packaging generated build documentation * Fri Mar 1 2013 Paul Howarth - 4.0.5-1.0.cf - Update to 4.0.5 - Fixed a bug where a decorated method caused false positive failures on 'verifyClass()' - Include additional documentation from upstream - BR: python-zope-event so we don't download it for the test suite * Thu Feb 21 2013 Paul Howarth - 4.0.4-1.0.cf - Update to 4.0.4 - Fixed a bug that was revealed by porting zope.traversing: during a loop, the loop body modified a weakref dict causing a 'RuntimeError' error - Upstream release is a zip file this time - Some of the documentation is now restructured text * Tue Jan 1 2013 Paul Howarth - 4.0.3-1.0.cf - Update to 4.0.3 - Added support for Python 3.3 - Restored ability to install the package in the absence of setuptools - Fix test that depended on dictionary order and failed randomly in Python 3.3 (LP #1055223) - Fleshed out PyPI Trove classifiers * Mon Jun 4 2012 Paul Howarth - 4.0.1-1.0.cf - Update to 4.0.1 - Dropped explicit "DeprecationWarnings" for "class advice" APIS (these APIs are still deprecated under Python 2.x, and still raise an exception under Python 3.x, but no longer cause a warning to be emitted under Python 2.x) * Fri May 18 2012 Paul Howarth - 4.0.0-1.0.cf - Update to 4.0.0 - Automated build of Sphinx HTML docs and running doctest snippets via tox - Deprecated the "class advice" APIs from zope.interface.declarations: implements, implementsOnly, and classProvides; in their place, prefer the equivalent class decorators: @implementer, @implementer_only, and @provider (code that uses the deprecated APIs will not work as expected under Py3k) - Removed use of '2to3' and associated fixers when installing under Py3k; the code is now in a "compatible subset" that supports Python 2.6, 2.7 and 3.2, including PyPy 1.8 (the version compatible with the 2.7 language spec) - Dropped explicit support for Python 2.4/2.5/3.1 - Added support for PyPy - Added support for continuous integration using tox and jenkins - Added 'setup.py dev' alias (runs setup.py develop plus installs nose and coverage) - Added 'setup.py docs' alias (installs Sphinx and dependencies) - Replaced all unittest coverage previously accomplished via doctests with unittests; the doctests have been moved into a docs section, managed as a Sphinx collection - LP #910987 - ensure that the semantics of the lookup method of zope.interface.adapter.LookupBase are the same in both the C and Python implementations - LP #900906 - avoid exceptions due to tne new __qualname__ attribute added in Python 3.3 (see PEP 3155 for rationale) - Bump python version requirement to 2.6 - Drop %%defattr, redundant since rpm 4.4 * Thu Sep 22 2011 Paul Howarth - 3.8.0-1.0.cf - Update to 3.8.0 - New module zope.interface.registry; this is code moved from zope.component.registry that implements a basic non-peristent component registry as zope.interface.registry.Components, and was moved from zope.component to make porting systems (such as Pyramid) that rely only on a basic component registry to Python 3 possible without needing to port the entirety of the zope.component package (backwards compatibility import shims have been left behind in zope.component, so this change will not break any existing code) - New tests_require dependency: zope.event to test events sent by the Components implementation; the zope.interface package does not have a hard dependency on zope.event, but if zope.event is importable, it will send component registration events when methods of an instance of zope.interface.registry.Components are called - New interfaces added to support the zope.interface.registry.Components addition: ComponentLookupError, Invalid, IObjectEvent, ObjectEvent, IComponentLookup, IRegistration, IUtilityRegistration, IAdapterRegistration, ISubscriptionAdapterRegistration, IHandlerRegistration, IRegistrationEvent, RegistrationEvent, IRegistered, Registered, IUnregistered, Unregistered, IComponentRegistry and IComponents - No longer Python 2.4 compatible (tested under 2.5, 2.6, 2.7 and 3.2) - BR: python2-devel ≥ 2.5 rather than 2.4 - Drop patch for python 2.4 support * Sun Aug 14 2011 Paul Howarth - 3.7.0-1.0.cf - Update to 3.7.0 - LP#825249 - fix test_hash_missing_required_attrs - Drop upstreamed patch for test_hash_missing_required_attrs - Update patch for test_hash_missing_required_attrs with python 2.4 * Fri Aug 12 2011 Paul Howarth - 3.6.5-1.0.cf - Update to 3.6.5 - LP#811792: Work around buggy behaviour in some subclasses of zope.interface.interface.InterfaceClass, which invoke __hash__ before initializing __module__ and __name__; the workaround returns a fixed constant hash in such cases, and issues a UserWarning - LP#804832: Under PyPy, zope.interface should not build its C extension; also prevent attempting to build it under Jython - Add a tox.ini for easier xplatform testing - Fix testing deprecation warnings issued when tested under Py3K - Add patch to fix broken new test test_hash_missing_required_attrs - Add another patch to skip that test entirely if we have python 2.4, as it uses the "with" statement introduced in python 2.5 * Fri Aug 12 2011 Paul Howarth - 3.6.4-1.0.cf - Update to 3.6.4 - LP#804951: InterfaceClass instances were unhashable under Python 3.x * Fri May 27 2011 Paul Howarth - 3.6.3-1.0.cf - Update to 3.6.3 - LP#570942: now correctly compare interfaces from different modules but with the same names * Wed May 18 2011 Paul Howarth - 3.6.2-1.0.cf - Update to 3.6.2 - Moved detailed documentation out-of-line from PyPI page, linking instead to http://docs.zope.org/zope.interface - Fixes for small issues when running tests under Python 3.2 using zope.testrunner - LP#675064: specify return value type for C optimizations module init under Python 3: undeclared value caused warnings, and segfaults on some 64-bit architectures - setup.py now raises RuntimeError if you don't have Distutils installed when running under Python 3 - Nobody else likes macros for commands * Mon Oct 4 2010 Paul Howarth - 3.6.1-7.0.cf - Obsolete/Provide python-zope-filesystem * Fri Oct 1 2010 Paul Howarth - 3.6.1-6.0.cf - Put the text files back in %%{_docdir} - sheesh! * Wed Sep 15 2010 Paul Howarth - 3.6.1-4.0.cf - BR: python2-devel rather than just python-devel - Don't move the text files * Mon Sep 13 2010 Paul Howarth - 3.6.1-3.0.cf - Cater for egg-info and namespace data more tidily - Own directory %%{python_sitearch}/zope/ - Drop dependency on deprecated python-zope-filesystem package - BR: python-setuptools rather than python-setuptools-devel * Wed Jul 28 2010 Paul Howarth - 3.6.1-2.0.cf - Rebuild for python 2.7 in Rawhide * Tue Jun 22 2010 Paul Howarth - 3.6.1-1.1.cf - Include the tests - Run the test suite in %%check - Include upstream CHANGES/COPYRIGHT/LICENSE files * Fri Jun 18 2010 Paul Howarth - 3.6.1-1.0.cf - Update to 3.6.1 - Filter provides for private shared objects * Sun Jul 5 2009 Paul Howarth - 3.5.2-1.0.CF - Update to 3.5.2 * Mon Jun 8 2009 Paul Howarth - 3.5.1-3.0.CF - BR: python-setuptools-devel to get egg-info * Mon Apr 6 2009 Paul Howarth - 3.5.1-2.0.CF - Update to 3.5.1 - Upstream release is now a tarball rather than a zipfile * Thu Jan 15 2009 Paul Howarth - 3.5.0-3.0.CF - Re-import from Fedora - Buildreq python-devel ≥ 2.4; incompatible with earlier python versions * Wed Dec 17 2008 Conrad Meyer - 3.5.0-3 - Make compatible with the new python-zope-filesystem * Sat Nov 29 2008 Ignacio Vazquez-Abrams - 3.5.0-2 - Rebuild for Python 2.6 * Sat Nov 15 2008 Felix Schwarz - 3.5.0-1 - Update to 3.5.0 * Mon Mar 31 2008 Paul Howarth - 3.4.1-1 - Update to 3.4.1 - Incorporate suggestions from Felix Schwarz: - New summary and description - New upstream URL (old one out of date) - Don't package test files - Include more documentation * Mon Mar 31 2008 Paul Howarth - 3.3.0-1 - Update to 3.3.0 - Update source URL to include versioned directory and new tarball name - Drop the gcc 4.x compatibility patch, no longer needed - Don't run the test suite as it now depends on zope.testing - Exclude _zope_interface_coptimizations.c source from the binary package * Thu Feb 14 2008 Paul Howarth - 3.0.1-10 - Rebuild with gcc 4.3.0 for Fedora 9 * Fri Jan 4 2008 Paul Howarth - 3.0.1-9 - Tweak %%files list to pull in egg info file when necessary - Fix permissions on shared objects (silence rpmlint) * Wed Aug 29 2007 Paul Howarth - 3.0.1-8 - Update license tag to ZPLv2.1 in anticipation of this tag being approved * Sat Dec 9 2006 Paul Howarth - 3.0.1-7 - Rebuild against python 2.5 for Rawhide * Tue Oct 31 2006 Paul Howarth - 3.0.1-6 - Add %%check section * Wed Sep 20 2006 Paul Howarth - 3.0.1-5 - Dispense with %%{pybasever} macro and python-abi dependency, not needed from FC4 onwards - Include ZPL 2.1 license text - Add reference in %%description to origin of patch - Change License: tag from "ZPL 2.1" to "Zope Public License" to shut rpmlint up * Thu Aug 31 2006 Paul Howarth - 3.0.1-4 - Files list simplified as .pyo files are no longer %%ghost-ed * Tue May 9 2006 Paul Howarth - 3.0.1-3 - Import from PyVault Repository - Rewrite in Fedora Extras style * Tue Aug 23 2005 Jeff Pitman - 3.0.1-2 - Add bug fix for gcc 4 * Mon Feb 07 2005 Jeff Pitman - 3.0.1-1 - New rpm