Up to [cvs.NetBSD.org] / pkgsrc / devel / py-zope.hookable
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.8 / (download) - annotate - [select for diffs], Thu Nov 17 17:08:53 2022 UTC (10 months, 1 week ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base,
pkgsrc-2023Q3,
pkgsrc-2023Q2-base,
pkgsrc-2023Q2,
pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
HEAD
Changes since 1.7: +4 -4
lines
Diff to previous 1.7 (colored)
py-zope.hookable: updated to 5.4 5.4 (2022-11-17) ================ - Add support for building arm64 wheels on macOS.
Revision 1.7 / (download) - annotate - [select for diffs], Thu Nov 17 10:41:17 2022 UTC (10 months, 1 week ago) by adam
Branch: MAIN
Changes since 1.6: +4 -4
lines
Diff to previous 1.6 (colored)
py-zope.hookable: updated to 5.3 5.3 (2022-11-03) ================ - Add support for the final release of Python 3.11.
Revision 1.6 / (download) - annotate - [select for diffs], Mon Sep 19 08:46:29 2022 UTC (12 months, 1 week ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2022Q3-base,
pkgsrc-2022Q3
Changes since 1.5: +4 -4
lines
Diff to previous 1.5 (colored)
py-zope.hookable: updated to 5.2 5.2 (2022-09-13) ================ - Add support for Python 3.10 and 3.11 (as of 3.11.0rc1). - Disable unsafe math optimizations in C code.
Revision 1.5 / (download) - annotate - [select for diffs], Fri Feb 11 11:20:07 2022 UTC (19 months, 2 weeks ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1
Changes since 1.4: +4 -4
lines
Diff to previous 1.4 (colored)
py-zope.hookable: updated to 5.1.0 5.1.0: Add support for Python 3.9. Create Linux aarch64 wheels.
Revision 1.4 / (download) - annotate - [select for diffs], Tue Oct 26 10:19:18 2021 UTC (23 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base,
pkgsrc-2021Q4
Changes since 1.3: +2 -2
lines
Diff to previous 1.3 (colored)
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
Revision 1.3 / (download) - annotate - [select for diffs], Thu Oct 7 13:43:56 2021 UTC (23 months, 3 weeks ago) by nia
Branch: MAIN
Changes since 1.2: +1 -2
lines
Diff to previous 1.2 (colored)
devel: Remove SHA1 hashes for distfiles
Revision 1.2 / (download) - annotate - [select for diffs], Mon Jun 8 13:09:07 2020 UTC (3 years, 3 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4,
pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2
Changes since 1.1: +5 -7
lines
Diff to previous 1.1 (colored)
py-zope.hookable: updated to 5.0.1 5.0.1: - Stop using the setuptools ``Feature`` class, allowing this project to be built from source with newer versions of setuptools that remove that functionality. 5.0.0: - Add support for Python 3.7 and 3.8. - Drop support for Python 3.4.
Revision 1.1 / (download) - annotate - [select for diffs], Sun Oct 28 15:17:47 2018 UTC (4 years, 11 months ago) by taca
Branch: MAIN
CVS Tags: pkgsrc-2020Q1-base,
pkgsrc-2020Q1,
pkgsrc-2019Q4-base,
pkgsrc-2019Q4,
pkgsrc-2019Q3-base,
pkgsrc-2019Q3,
pkgsrc-2019Q2-base,
pkgsrc-2019Q2,
pkgsrc-2019Q1-base,
pkgsrc-2019Q1,
pkgsrc-2018Q4-base,
pkgsrc-2018Q4
devel/py-zope.hookable: add version 4.2.0 Add devel/py-zope.hookable package version 4.2.0 with Python 3.7 support from upstream. =============== zope.hookable =============== This package supports the efficient creation of "hookable" objects, which are callable objects that are meant to be optionally replaced. The idea is that you create a function that does some default thing and make it hookable. Later, someone can modify what it does by calling its sethook method and changing its implementation. All users of the function, including those that imported it, will see the change.