pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel py-flit_core py-flit: updated to 3.8.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0860f1f35c77
branches:  trunk
changeset: 388116:0860f1f35c77
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Nov 14 09:09:26 2022 +0000

description:
py-flit_core py-flit: updated to 3.8.0

Version 3.8

A project name containing hyphens is now automatically translated to use underscores for the import name
New option flit install --only-deps to install the dependencies of the package, but not the package itself.
Add support for recursive globbing (**) in sdist includes and excludes
Python’s bytecode cache files (__pycache__ folders and .pyc files) are now always excluded from sdists
Use tomllib in Python 3.11, rather than tomli
Fix crash when unable to get a password from keyring
Fix including modified files in sdist when using Mercurial
Fix for some cases of determining whether a package supports Python 2 or not
Fix parsing version number from code using multiple assignments
Document how to use a PyPI token with FLIT_PASSWORD
Fix link to information about environment variables for pip
Link to the docs for the latest stable version in package metadata
Remove a mention of the toml package, which is no longer needed, from the Developing Flit page
The bootstrap install script for flit_core accepts a new --install-root option.
Ensure the license file is included in packages on PyPI

diffstat:

 devel/py-flit/Makefile      |  6 +++---
 devel/py-flit/distinfo      |  8 ++++----
 devel/py-flit_core/Makefile |  4 ++--
 devel/py-flit_core/PLIST    |  9 ++++++++-
 devel/py-flit_core/distinfo |  8 ++++----
 5 files changed, 21 insertions(+), 14 deletions(-)

diffs (100 lines):

diff -r 3b4d2f15730d -r 0860f1f35c77 devel/py-flit/Makefile
--- a/devel/py-flit/Makefile    Mon Nov 14 08:43:05 2022 +0000
+++ b/devel/py-flit/Makefile    Mon Nov 14 09:09:26 2022 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2022/04/07 12:28:15 adam Exp $
+# $NetBSD: Makefile,v 1.5 2022/11/14 09:09:27 adam Exp $
 
-DISTNAME=      flit-3.7.1
+DISTNAME=      flit-3.8.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=f/flit/}
@@ -13,12 +13,12 @@
 DEPENDS+=      ${PYPKGPREFIX}-docutils>=0:../../textproc/py-docutils
 DEPENDS+=      ${PYPKGPREFIX}-flit_core-${PKGVERSION_NOREV}:../../devel/py-flit_core
 DEPENDS+=      ${PYPKGPREFIX}-requests>=0:../../devel/py-requests
-DEPENDS+=      ${PYPKGPREFIX}-tomli>=0:../../textproc/py-tomli
 DEPENDS+=      ${PYPKGPREFIX}-tomli_w>=0:../../textproc/py-tomli_w
 TEST_DEPENDS+= ${PYPKGPREFIX}-responses>=0:../../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
 
 USE_LANGUAGES= # none
 
diff -r 3b4d2f15730d -r 0860f1f35c77 devel/py-flit/distinfo
--- a/devel/py-flit/distinfo    Mon Nov 14 08:43:05 2022 +0000
+++ b/devel/py-flit/distinfo    Mon Nov 14 09:09:26 2022 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2022/04/07 12:28:15 adam Exp $
+$NetBSD: distinfo,v 1.6 2022/11/14 09:09:27 adam Exp $
 
-BLAKE2s (flit-3.7.1.tar.gz) = 908e5ab6ed3854977d9d04b6291cb6501c49dcee4837bec66b740b28d74bae7a
-SHA512 (flit-3.7.1.tar.gz) = 336e81b034da2f38d7decb32c8961ce62d30f6fd2cb4778b09c956eb400277673d4c94cd57cf08fa7f115f8836aadb0469197d0096f833da9317db8a4f75baed
-Size (flit-3.7.1.tar.gz) = 136642 bytes
+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
 SHA1 (patch-tests_test__find__python__executable.py) = ba687b8828f40720da7d3bbaea60b0665d781b5b
diff -r 3b4d2f15730d -r 0860f1f35c77 devel/py-flit_core/Makefile
--- a/devel/py-flit_core/Makefile       Mon Nov 14 08:43:05 2022 +0000
+++ b/devel/py-flit_core/Makefile       Mon Nov 14 09:09:26 2022 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2022/04/07 12:28:15 adam Exp $
+# $NetBSD: Makefile,v 1.6 2022/11/14 09:09:26 adam Exp $
 
-DISTNAME=      flit_core-3.7.1
+DISTNAME=      flit_core-3.8.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=f/flit-core/}
diff -r 3b4d2f15730d -r 0860f1f35c77 devel/py-flit_core/PLIST
--- a/devel/py-flit_core/PLIST  Mon Nov 14 08:43:05 2022 +0000
+++ b/devel/py-flit_core/PLIST  Mon Nov 14 09:09:26 2022 +0000
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.4 2022/04/07 12:28:15 adam Exp $
+@comment $NetBSD: PLIST,v 1.5 2022/11/14 09:09:26 adam Exp $
 ${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
 ${PYSITELIB}/${WHEEL_INFODIR}/RECORD
 ${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED
@@ -35,6 +36,7 @@
 ${PYSITELIB}/flit_core/tests/samples/imported_version/package1/_version.pyc
 ${PYSITELIB}/flit_core/tests/samples/imported_version/pyproject.toml
 ${PYSITELIB}/flit_core/tests/samples/inclusion/LICENSES/README
+${PYSITELIB}/flit_core/tests/samples/inclusion/doc/subdir/subsubdir/test.md
 ${PYSITELIB}/flit_core/tests/samples/inclusion/doc/subdir/test.txt
 ${PYSITELIB}/flit_core/tests/samples/inclusion/doc/test.rst
 ${PYSITELIB}/flit_core/tests/samples/inclusion/doc/test.txt
@@ -53,10 +55,15 @@
 ${PYSITELIB}/flit_core/tests/samples/module2.pyc
 ${PYSITELIB}/flit_core/tests/samples/moduleunimportable.py
 ${PYSITELIB}/flit_core/tests/samples/moduleunimportable.pyc
+${PYSITELIB}/flit_core/tests/samples/moduleunimportabledouble.py
+${PYSITELIB}/flit_core/tests/samples/moduleunimportabledouble.pyc
 ${PYSITELIB}/flit_core/tests/samples/my-description.rst
 ${PYSITELIB}/flit_core/tests/samples/no_docstring-pkg.toml
 ${PYSITELIB}/flit_core/tests/samples/no_docstring.py
 ${PYSITELIB}/flit_core/tests/samples/no_docstring.pyc
+${PYSITELIB}/flit_core/tests/samples/normalization/my_python_module.py
+${PYSITELIB}/flit_core/tests/samples/normalization/my_python_module.pyc
+${PYSITELIB}/flit_core/tests/samples/normalization/pyproject.toml
 ${PYSITELIB}/flit_core/tests/samples/ns1-pkg/EG_README.rst
 ${PYSITELIB}/flit_core/tests/samples/ns1-pkg/ns1/pkg/__init__.py
 ${PYSITELIB}/flit_core/tests/samples/ns1-pkg/ns1/pkg/__init__.pyc
diff -r 3b4d2f15730d -r 0860f1f35c77 devel/py-flit_core/distinfo
--- a/devel/py-flit_core/distinfo       Mon Nov 14 08:43:05 2022 +0000
+++ b/devel/py-flit_core/distinfo       Mon Nov 14 09:09:26 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2022/04/07 12:28:15 adam Exp $
+$NetBSD: distinfo,v 1.3 2022/11/14 09:09:26 adam Exp $
 
-BLAKE2s (flit_core-3.7.1.tar.gz) = 3a1a14c0525759d7a6c88e243fec45d96ce3517476628592c57b08678c775513
-SHA512 (flit_core-3.7.1.tar.gz) = 8c477bcd2924a93b51e6f3d8bbc3599929663c8d5addf16062e8e1b6c5acd740a4e4905b144092efb6e38e9700479525013831a53e055438f94c1e53ff5c6f8d
-Size (flit_core-3.7.1.tar.gz) = 40330 bytes
+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


Home | Main Index | Thread Index | Old Index