pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel
Module Name: pkgsrc
Committed By: adam
Date: Mon May 15 07:18:20 UTC 2023
Modified Files:
pkgsrc/devel/py-flit: Makefile distinfo
pkgsrc/devel/py-flit_core: Makefile distinfo
Log Message:
py-flit_core py_flit: updated to 3.9.0
Version 3.9
New options flit build --use-vcs and flit build --no-use-vcs to enable & disable including all committed files in the sdist. For now --use-vcs is the default, but this is likely to change in a future
version, to bring flit build in line with standard build frontends like python -m build.
Sdist file names, and the name of the top-level folder in an sdist, are now normalised, in accordance with PEP 625.
A statically defined version number can now be parsed from files called version.py, _version.py or __version__.py inside a packge, as well as from __init__.py, so executing code is required in fewer
cases.
Fix setting the flag for regular files in zip metadata.
The timestamp embedded in the gzip wrapper for sdists now defaults to a fixed date, so building an sdist twice on the same machine should produce identical results, even without any special steps.
Setting SOURCE_DATE_EPOCH is still recommended for properly reproducible builds.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-flit/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-flit/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-flit_core/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-flit_core/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/py-flit/Makefile
diff -u pkgsrc/devel/py-flit/Makefile:1.5 pkgsrc/devel/py-flit/Makefile:1.6
--- pkgsrc/devel/py-flit/Makefile:1.5 Mon Nov 14 09:09:27 2022
+++ pkgsrc/devel/py-flit/Makefile Mon May 15 07:18:20 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2022/11/14 09:09:27 adam Exp $
+# $NetBSD: Makefile,v 1.6 2023/05/15 07:18:20 adam Exp $
-DISTNAME= flit-3.8.0
+DISTNAME= flit-3.9.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=f/flit/}
@@ -10,15 +10,15 @@ HOMEPAGE= https://flit.readthedocs.io/
COMMENT= Simple packaging tool for simple packages
LICENSE= modified-bsd
-DEPENDS+= ${PYPKGPREFIX}-docutils>=0:../../textproc/py-docutils
+DEPENDS+= ${PYPKGPREFIX}-docutils-[0-9]*:../../textproc/py-docutils
DEPENDS+= ${PYPKGPREFIX}-flit_core-${PKGVERSION_NOREV}:../../devel/py-flit_core
-DEPENDS+= ${PYPKGPREFIX}-requests>=0:../../devel/py-requests
-DEPENDS+= ${PYPKGPREFIX}-tomli_w>=0:../../textproc/py-tomli_w
-TEST_DEPENDS+= ${PYPKGPREFIX}-responses>=0:../../net/py-responses
+DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests
+DEPENDS+= ${PYPKGPREFIX}-tomli_w-[0-9]*:../../textproc/py-tomli_w
+TEST_DEPENDS+= ${PYPKGPREFIX}-responses-[0-9]*:../../net/py-responses
TEST_DEPENDS+= ${PYPKGPREFIX}-test>=2.7.3:../../devel/py-test
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=0:../../devel/py-test-cov
-TEST_DEPENDS+= ${PYPKGPREFIX}-testpath>=0:../../devel/py-testpath
-TEST_DEPENDS+= ${PYPKGPREFIX}-tomli>=0:../../textproc/py-tomli
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
+TEST_DEPENDS+= ${PYPKGPREFIX}-testpath-[0-9]*:../../devel/py-testpath
+TEST_DEPENDS+= ${PYPKGPREFIX}-tomli-[0-9]*:../../textproc/py-tomli
USE_LANGUAGES= # none
Index: pkgsrc/devel/py-flit/distinfo
diff -u pkgsrc/devel/py-flit/distinfo:1.6 pkgsrc/devel/py-flit/distinfo:1.7
--- pkgsrc/devel/py-flit/distinfo:1.6 Mon Nov 14 09:09:27 2022
+++ pkgsrc/devel/py-flit/distinfo Mon May 15 07:18:20 2023
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.6 2022/11/14 09:09:27 adam Exp $
+$NetBSD: distinfo,v 1.7 2023/05/15 07:18:20 adam Exp $
-BLAKE2s (flit-3.8.0.tar.gz) = 8e4e3cbaf372fb8c770fb7a3f9fce61e4935b1ae92ce82eee7c207ef7a742ed8
-SHA512 (flit-3.8.0.tar.gz) = 08170ee710857fcbfc1f72dbb94c535d70a2477c7598eacacc9a0e2f90f4fe11f4d910f1fcc11de210a6b50d89049e5835127090c6acabb00c69a821919e68cc
-Size (flit-3.8.0.tar.gz) = 139496 bytes
+BLAKE2s (flit-3.9.0.tar.gz) = ff2ac501bbf196c994b69037c67dd3647e1e324494b1a17f0cfd80d150fe967d
+SHA512 (flit-3.9.0.tar.gz) = 3cbca4530fe463e27fb43130e0d00681e63434bdd552bd61b4a2f3b7967729d9d9a49c69b1a2380ed99bcca1e66a38e592f41cbe38a471d3e7297ab00cdabc29
+Size (flit-3.9.0.tar.gz) = 141104 bytes
SHA1 (patch-tests_test__find__python__executable.py) = ba687b8828f40720da7d3bbaea60b0665d781b5b
Index: pkgsrc/devel/py-flit_core/Makefile
diff -u pkgsrc/devel/py-flit_core/Makefile:1.6 pkgsrc/devel/py-flit_core/Makefile:1.7
--- pkgsrc/devel/py-flit_core/Makefile:1.6 Mon Nov 14 09:09:26 2022
+++ pkgsrc/devel/py-flit_core/Makefile Mon May 15 07:18:20 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2022/11/14 09:09:26 adam Exp $
+# $NetBSD: Makefile,v 1.7 2023/05/15 07:18:20 adam Exp $
-DISTNAME= flit_core-3.8.0
+DISTNAME= flit_core-3.9.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=f/flit-core/}
@@ -10,8 +10,8 @@ HOMEPAGE= https://flit.readthedocs.io/
COMMENT= Distribution-building parts of Flit
LICENSE= modified-bsd
-TEST_DEPENDS+= ${PYPKGPREFIX}-test>=0:../../devel/py-test
-TEST_DEPENDS+= ${PYPKGPREFIX}-testpath>=0:../../devel/py-testpath
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-testpath-[0-9]*:../../devel/py-testpath
USE_LANGUAGES= # none
Index: pkgsrc/devel/py-flit_core/distinfo
diff -u pkgsrc/devel/py-flit_core/distinfo:1.3 pkgsrc/devel/py-flit_core/distinfo:1.4
--- pkgsrc/devel/py-flit_core/distinfo:1.3 Mon Nov 14 09:09:26 2022
+++ pkgsrc/devel/py-flit_core/distinfo Mon May 15 07:18:20 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2022/11/14 09:09:26 adam Exp $
+$NetBSD: distinfo,v 1.4 2023/05/15 07:18:20 adam Exp $
-BLAKE2s (flit_core-3.8.0.tar.gz) = 0be290c39a632aba2059eb75d7530abcde6f7516e955cb5edda66e0557bd676d
-SHA512 (flit_core-3.8.0.tar.gz) = 914804e3f2040762381afe039272d9d6fdbcd3f3cf8b9eea854f2f1d95edcb01718fd6685476bc1cdc251dfc46ef80b40f087df881d8b963dcc3f3332fd32a46
-Size (flit_core-3.8.0.tar.gz) = 41224 bytes
+BLAKE2s (flit_core-3.9.0.tar.gz) = 0f03b67d88fa4bbb04765266458197d8ba3c9c7edc58beffdc3cbdb7f399eebd
+SHA512 (flit_core-3.9.0.tar.gz) = 1205589930d2c51d6aa6b2533a122a912e63b157e94adba2a0649a58d324fa98a5b84609d9b53e9d236f1cdb6a6984de2cefcf2f11abc2cd83956df21f269ad6
+Size (flit_core-3.9.0.tar.gz) = 41917 bytes
Home |
Main Index |
Thread Index |
Old Index