summaryrefslogtreecommitdiff
path: root/devel/py-ZopeInterface
AgeCommit message (Collapse)AuthorFilesLines
2014-01-25Mark packages as not ready for python-3.x where applicable;wiz1-3/+1
either because they themselves are not ready or because a dependency isn't. This is annotated by PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of x.y.z or PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-foo, py-bar respectively, please use the same style for other packages, and check during updates. Use versioned_dependencies.mk where applicable. Use REPLACE_PYTHON instead of handcoded alternatives, where applicable. Reorder Makefile sections into standard order, where applicable. Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default with the next commit. Whitespace cleanups and other nits corrected, where necessary.
2013-08-13Changes 4.0.5:adam3-19/+23
- Fixed a bug where a decorated method caused false positive failures on ``verifyClass()``. Changes 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. Changes 4.0.3: - Fleshed out PyPI Trove classifiers. Changes 4.0.2: - Added support for Python 3.3. - Restored ability to install the package in the absence of ``setuptools``. - LP 1055223: Fix test which depended on dictionary order and failed randomly in Python 3.3. Changes 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).
2012-10-31Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-08-22mark as Python3 readydrochner1-1/+3
2012-04-20Changes 3.8.0:adam3-17/+21
* New module ``zope.interface.registry``. This is code moved from ``zope.component.registry`` which implements a basic nonperistent component registry as ``zope.interface.registry.Components``. This class 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 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 ``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).
2012-01-19update to 3.6.7drochner3-7/+11
changes: minor bugfixes
2010-06-16update to 3.6.1drochner2-6/+6
changes: -python3 support -minor fixes
2010-02-03Update py-ZopeInterface to 3.5.3.obache3-14/+16
Based on PR#42668 by Wen Heping. CHANGES ******* ================== 3.5.3 (2009-12-08) ================== - Fix an edge case: make providedBy() work when a class has '__provides__' in its __slots__ (see http://thread.gmane.org/gmane.comp.web.zope.devel/22490) ================== 3.5.2 (2009-07-01) ================== - BaseAdapterRegistry.unregister, unsubscribe: Remove empty portions of the data structures when something is removed. This avoids leaving references to global objects (interfaces) that may be slated for removal from the calling application. ================== 3.5.1 (2009-03-18) ================== - verifyObject: use getattr instead of hasattr to test for object attributes in order to let exceptions other than AttributeError raised by properties propagate to the caller - Add Sphinx-based documentation building to the package buildout configuration. Use the ``bin/docs`` command after buildout. - Improve package description a bit. Unify changelog entries formatting. - Change package's mailing list address to zope-dev at zope.org as zope3-dev at zope.org is now retired. ================== 3.5.0 (2008-10-26) ================== - Fixed declaration of _zope_interface_coptimizations, it's not a top level package. - Add a DocTestSuite for odd.py module, so their tests are run. - Allow to bootstrap on Jython. - Fix https://bugs.launchpad.net/zope3/3.3/+bug/98388: ISpecification was missing a declaration for __iro__. - Added optional code optimizations support, which allows the building of C code optimizations to fail (Jython). - Replaced `_flatten` with a non-recursive implementation, effectively making it 3x faster. ================== 3.4.1 (2007-10-02) ================== - Fixed a setup bug that prevented installation from source on systems without setuptools. ================== 3.4.0 (2007-07-19) ================== - Final release for 3.4.0. ==================== 3.4.0b3 (2007-05-22) ==================== - Objects with picky custom comparison methods couldn't be added to component registries. Now, when checking whether an object is already registered, identity comparison is used. ==================== 3.3.0.1 (2007-01-03) ==================== - Made a reference to OverflowWarning, which disappeared in Python 2.5, conditional.
2009-07-15Fix obviously incorrect PLIST. Bump revision.joerg2-61/+97
2009-07-15Upgrade devel/py-ZopeInterface to zope.interface-3.3.0.ver4-247/+72
Use eggs instead of distutils. Remove patch-aa as it no longer applies. Add licenses/zpl and add zpl to mk/license.mk:DEFAULT_ACCEPTABLE_LICENSES. Patch posted to pkgsrc-users@ and okayed by agc@.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-7/+1
2008-06-12Add DESTDIR support.joerg1-1/+3
2008-04-25Update PYTHON_VERSIONS_COMPATIBLEjoerg1-2/+1
- assume that Python 2.4 and 2.5 are compatible and allow checking for fallout. - remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+ default. Modify the others to deal with the removals.
2006-08-26Fix "static declaration follows non-static" error with gcc 4.kristerw3-2/+127
2006-06-04Actually, Python 2.1 doesn't work either, so depend on 2.2+joerg1-2/+2
2006-06-04Needs Python 2.2+joerg1-1/+2
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-06-23Import py-ZopeInterface from pkgsrc-wip. Packaged by Siegmund Fuehringer.minskim4-0/+167
This is a separate distribution of the zope.interface package used in Zope 3 and Twisted, along with the packages they depend on.