2023-06-18 07:39:38 by Adam Ciarcinski | Files touched by this commit (20) | |
Log message:
py-ZopeInterface: moved to py-zope.interface
|
2023-06-18 07:26:02 by Adam Ciarcinski | Files touched by this commit (7) |
Log message:
py-ZopeEvent: moved to py-zope.event
|
2023-04-30 14:27:07 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
py-ZopeInterface: update to 6.0.
6.0 (2023-03-17)
================
- Build Linux binary wheels for Python 3.11.
- Drop support for Python 2.7, 3.5, 3.6.
- Fix test deprecation warning on Python 3.11.
- Add preliminary support for Python 3.12 as of 3.12a5.
- Drop:
+ `zope.interface.implements`
+ `zope.interface.implementsOnly`
+ `zope.interface.classProvides`
|
2022-11-17 18:03:14 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-ZopeInterface: updated to 5.5.2
5.5.2 (2022-11-17)
==================
- Add support for building arm64 wheels on macOS.
|
2022-11-17 10:21:35 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-ZopeInterface: updated to 5.5.1
5.5.1 (2022-11-03)
==================
- Add support for final Python 3.11 release.
|
2022-10-10 09:57:40 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-ZopeInterface: updated to 5.5.0
5.5.0 (2022-10-10)
==================
- Add support for Python 3.10 and 3.11 (as of 3.11.0rc2).
- Add missing Trove classifier showing support for Python 3.9.
- Add some more entries to ``zope.interface.interfaces.__all__``.
- Disable unsafe math optimizations in C code.
|
2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message:
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
|
2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2021-04-15 20:45:13 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-ZopeInterface: updated to 5.4.0
5.4.0 (2021-04-15)
==================
- Make the C implementation of the ``__providedBy__`` descriptor stop
ignoring all errors raised when accessing the instance's
``__provides__``. Now it behaves like the Python version and only
catches ``AttributeError``. The previous behaviour could lead to
crashing the interpreter in cases of recursion and errors.
- Update the ``repr()`` and ``str()`` of various objects to be shorter
and more informative. In many cases, the ``repr()`` is now something
that can be evaluated to produce an equal object. For example, what
was previously printed as ``<implementedBy builtins.list>`` is now
shown as ``classImplements(list, IMutableSequence, IIterable)``.
- Make ``Declaration.__add__`` (as in ``implementedBy(Cls) +
ISomething``) try harder to preserve a consistent resolution order
when the two arguments share overlapping pieces of the interface
inheritance hierarchy. Previously, the right hand side was always
put at the end of the resolution order, which could easily produce
invalid orders.
|