devel/py-flit-core: Update to 3.8.0
- Add LICENSE_FILE Changes: https://github.com/pypa/flit/blob/main/doc/history.rst
This commit is contained in:
parent
840729d19d
commit
880130f084
3 changed files with 15 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= flit-core
|
||||
PORTVERSION= 3.7.1
|
||||
PORTVERSION= 3.8.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
@ -10,6 +10,7 @@ COMMENT= Distribution-building parts of Flit
|
|||
WWW= https://github.com/pypa/flit/tree/main/flit_core
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}testpath>=0:devel/py-testpath@${PY_FLAVOR}
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1646057942
|
||||
SHA256 (flit_core-3.7.1.tar.gz) = 14955af340c43035dbfa96b5ee47407e377ee337f69e70f73064940d27d0a44f
|
||||
SIZE (flit_core-3.7.1.tar.gz) = 40330
|
||||
TIMESTAMP = 1669057735
|
||||
SHA256 (flit_core-3.8.0.tar.gz) = b305b30c99526df5e63d6022dd2310a0a941a187bd3884f4c8ef0418df6c39f3
|
||||
SIZE (flit_core-3.8.0.tar.gz) = 41224
|
||||
|
|
|
@ -6,6 +6,7 @@ from distutils.core import setup
|
|||
packages = \
|
||||
['flit_core',
|
||||
'flit_core.tests',
|
||||
'flit_core.tests.samples.imported_version.package1',
|
||||
'flit_core.tests.samples.ns1-pkg.ns1.pkg',
|
||||
'flit_core.tests.samples.package1',
|
||||
'flit_core.tests.samples.package1.subpkg',
|
||||
|
@ -19,15 +20,23 @@ package_data = \
|
|||
'samples/conflicting_modules/*',
|
||||
'samples/conflicting_modules/src/*',
|
||||
'samples/constructed_version/*',
|
||||
'samples/imported_version/*',
|
||||
'samples/inclusion/*',
|
||||
'samples/inclusion/LICENSES/*',
|
||||
'samples/inclusion/doc/*',
|
||||
'samples/inclusion/doc/subdir/*',
|
||||
'samples/inclusion/doc/subdir/subsubdir/*',
|
||||
'samples/normalization/*',
|
||||
'samples/ns1-pkg/*',
|
||||
'samples/ns1-pkg/ns1/*',
|
||||
'samples/pep517/*',
|
||||
'samples/pep621/*',
|
||||
'samples/pep621_nodynamic/*'],
|
||||
'samples/pep621_nodynamic/*',
|
||||
'samples/with_data_dir/*',
|
||||
'samples/with_data_dir/data/*',
|
||||
'samples/with_data_dir/data/share/*',
|
||||
'samples/with_data_dir/data/share/man/*',
|
||||
'samples/with_data_dir/data/share/man/man1/*'],
|
||||
'flit_core.tests.samples.package1': ['data_dir/*'],
|
||||
'flit_core.tests.samples.package1.subpkg': ['sp_data_dir/*'],
|
||||
'flit_core.vendor': ['tomli-1.2.3.dist-info/*']}
|
||||
|
|
Loading…
Reference in a new issue