Index: head/emulators/py-unicorn/Makefile =================================================================== --- head/emulators/py-unicorn/Makefile (revision 434801) +++ head/emulators/py-unicorn/Makefile (revision 434802) @@ -1,27 +1,27 @@ # $FreeBSD$ PORTNAME= unicorn -PORTVERSION= 0.9 +PORTVERSION= 1.0 CATEGORIES= emulators python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= antoine@FreeBSD.org COMMENT= Python bindings for Unicorn CPU emulator framework LICENSE= BSD3CLAUSE LIB_DEPENDS= libunicorn.so:emulators/unicorn USE_GITHUB= yes GH_ACCOUNT= unicorn-engine USES= python USE_PYTHON= distutils autoplist WRKSRC_SUBDIR= bindings/python do-test: @(cd ${WRKSRC}; for sample in sample_*.py; do \ ${SETENV} ${TEST_ENV} ${PYTHON_CMD} $${sample}; \ done) .include Index: head/emulators/py-unicorn/distinfo =================================================================== --- head/emulators/py-unicorn/distinfo (revision 434801) +++ head/emulators/py-unicorn/distinfo (revision 434802) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481841704 -SHA256 (unicorn-engine-unicorn-0.9_GH0.tar.gz) = 1ca03b1c8f6360335567b528210713461e839d47c4eb7c676ba3aa4f72b8cf10 -SIZE (unicorn-engine-unicorn-0.9_GH0.tar.gz) = 2576109 +TIMESTAMP = 1487917142 +SHA256 (unicorn-engine-unicorn-1.0_GH0.tar.gz) = 27efa24e465f3eca9a1fa8f7f456f6fecd91beeba0b4be21b34308040047def9 +SIZE (unicorn-engine-unicorn-1.0_GH0.tar.gz) = 3214697 Index: head/emulators/py-unicorn/files/patch-setup.py =================================================================== --- head/emulators/py-unicorn/files/patch-setup.py (revision 434801) +++ head/emulators/py-unicorn/files/patch-setup.py (revision 434802) @@ -1,22 +1,16 @@ # Do not bundle libunicorn.so ---- setup.py.orig 2015-10-15 16:22:04 UTC +--- setup.py.orig 2017-02-23 12:57:14 UTC +++ setup.py -@@ -166,17 +166,4 @@ setup( +@@ -260,11 +260,4 @@ setup( 'Programming Language :: Python :: 3', ], requires=['ctypes'], -- cmdclass=dict( -- build_clib=custom_build_clib, -- sdist=custom_sdist, -- ), -- -- libraries=[( -- 'unicorn', dict( -- package='unicorn', -- sources=dummy_src() -- ), -- )], -- -- data_files=[(SITE_PACKAGES, SETUP_DATA_FILES)], +- cmdclass=cmdclass, +- zip_safe=True, +- include_package_data=True, +- is_pure=True, +- package_data={ +- 'unicorn': ['lib/*', 'include/unicorn/*'] +- } )