Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) by www.NetBSD.org (Postfix) with ESMTP id B5B6A63B86B for ; Fri, 20 Apr 2012 15:38:06 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 26B5214A3B6; Fri, 20 Apr 2012 15:38:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A0A2414A3B3 for ; Fri, 20 Apr 2012 15:38:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 1nHzgZ0yVbex for ; Fri, 20 Apr 2012 15:38:19 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id CDE2E14A3B0 for ; Fri, 20 Apr 2012 15:38:18 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id BC4E4175DD; Fri, 20 Apr 2012 15:38:18 +0000 (UTC) MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Date: Fri, 20 Apr 2012 15:38:18 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-ZopeInterface To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20120420153818.BC4E4175DD@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: adam Date: Fri Apr 20 15:38:18 UTC 2012 Modified Files: pkgsrc/devel/py-ZopeInterface: Makefile PLIST distinfo Log Message: Changes 3.8.0: * 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). To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/py-ZopeInterface/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-ZopeInterface/PLIST \ pkgsrc/devel/py-ZopeInterface/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.