View | Details | Raw Unified | Return to bug 282361
Collapse All | Expand All

(-)b/security/py-pycryptodome-test-vectors/Makefile (-2 / +1 lines)
Lines 1-5 Link Here
1
PORTNAME=	pycryptodome-test-vectors
1
PORTNAME=	pycryptodome-test-vectors
2
DISTVERSION=	1.0.14
2
DISTVERSION=	1.0.20
3
CATEGORIES=	security python
3
CATEGORIES=	security python
4
MASTER_SITES=	PYPI
4
MASTER_SITES=	PYPI
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 12-18 LICENSE= BSD2CLAUSE APACHE20 Link Here
12
LICENSE_COMB=	multi
12
LICENSE_COMB=	multi
13
LICENSE_FILE=	${WRKSRC}/LICENSE.rst
13
LICENSE_FILE=	${WRKSRC}/LICENSE.rst
14
14
15
# Officially: 2.7, 3.5-3.12 (same as security/py-cryptodome)
16
USES=		cpe python zip
15
USES=		cpe python zip
17
CPE_VENDOR=	python
16
CPE_VENDOR=	python
18
USE_PYTHON=	autoplist distutils
17
USE_PYTHON=	autoplist distutils
(-)b/security/py-pycryptodome-test-vectors/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1705348297
1
TIMESTAMP = 1729970234
2
SHA256 (pycryptodome-test-vectors-1.0.14.zip) = d437b44a35dcafc0626c3561bfb1b506a1b7c7445cc5fb9d36e2374161bc9a37
2
SHA256 (pycryptodome-test-vectors-1.0.20.zip) = fc7ff17f2632017b2b98f00e7c3e749cfada95ed69cba01fa62951cd4baab9f9
3
SIZE (pycryptodome-test-vectors-1.0.14.zip) = 12541357
3
SIZE (pycryptodome-test-vectors-1.0.20.zip) = 12591386
(-)b/security/py-pycryptodome-test-vectors/files/patch-setup.py (+20 lines)
Added Link Here
1
--- setup.py.orig	2024-10-26 19:40:19 UTC
2
+++ setup.py
3
@@ -29,7 +29,7 @@ import os
4
 # ===================================================================
5
 
6
 import os
7
-from setuptools import setup, find_packages
8
+from setuptools import setup, find_namespace_packages
9
 
10
 project_name = "pycryptodome-test-vectors"
11
 project_dir = "pycryptodome_test_vectors"
12
@@ -61,7 +61,7 @@ setup(
13
     author_email="helderijs@gmail.com",
14
     platforms='Posix; MacOS X; Windows',
15
     zip_safe=False,
16
-    packages=find_packages(),
17
+    packages=find_namespace_packages(),
18
     include_package_data=True,
19
     license="BSD, Apache",
20
     long_description=longdesc,

Return to bug 282361