diff --git a/devel/py-archinfo/Makefile b/devel/py-archinfo/Makefile index 8b3340335ba0..d74bd6cf4754 100644 --- a/devel/py-archinfo/Makefile +++ b/devel/py-archinfo/Makefile @@ -1,25 +1,29 @@ PORTNAME= archinfo DISTVERSIONPREFIX= v -DISTVERSION= ${ANGR_VERSION} +DISTVERSION= 9.2.148 PORTREVISION= 1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= schaiba@gmail.com COMMENT= Classes with architecture-specific information useful to other projects WWW= https://github.com/angr/archinfo LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyvex>0:security/py-pyvex@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}unicorn>0:emulators/py-unicorn@${PY_FLAVOR} USES= angr:nose python USE_GITHUB= yes GH_ACCOUNT= angr USE_PYTHON= autoplist distutils +TESTING_UNSAFE= nose does not yet support Python 3.11 so 'make test' will fail + NO_ARCH= yes +post-extract: + ${CP} ${FILESDIR}/setup.py ${WRKSRC}/ .include diff --git a/devel/py-archinfo/distinfo b/devel/py-archinfo/distinfo index 7c0fb0705703..028ddad30f8f 100644 --- a/devel/py-archinfo/distinfo +++ b/devel/py-archinfo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1610804750 -SHA256 (angr-archinfo-v9.0.5405_GH0.tar.gz) = 4de7bfca3d2e7ef4f80eaec13b7910c44f16ac184fa128971b8f6c7d6ca6a6ec -SIZE (angr-archinfo-v9.0.5405_GH0.tar.gz) = 50412 +TIMESTAMP = 1744789037 +SHA256 (angr-archinfo-v9.2.148_GH0.tar.gz) = 65f71d4e5227d6b2e82ee446d31e412ae2f4bc18765cdbe49c848dd1573e8fa8 +SIZE (angr-archinfo-v9.2.148_GH0.tar.gz) = 45807 diff --git a/devel/py-archinfo/files/setup.py b/devel/py-archinfo/files/setup.py new file mode 100644 index 000000000000..ec18c96c30af --- /dev/null +++ b/devel/py-archinfo/files/setup.py @@ -0,0 +1,8 @@ +from distutils.core import setup + +setup( + name = 'archinfo', + version = "%%DISTVERSION%%", + packages = ['archinfo'], + ) +