From owner-svn-ports-head@freebsd.org Sat Feb 25 13:10:30 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4A69CECB03; Sat, 25 Feb 2017 13:10:30 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9718C20E; Sat, 25 Feb 2017 13:10:30 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1PDATfQ048973; Sat, 25 Feb 2017 13:10:29 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1PDAT0q048971; Sat, 25 Feb 2017 13:10:29 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201702251310.v1PDAT0q048971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 25 Feb 2017 13:10:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434802 - in head/emulators/py-unicorn: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Feb 2017 13:10:31 -0000 Author: antoine Date: Sat Feb 25 13:10:29 2017 New Revision: 434802 URL: https://svnweb.freebsd.org/changeset/ports/434802 Log: Update to 1.0 Modified: head/emulators/py-unicorn/Makefile head/emulators/py-unicorn/distinfo head/emulators/py-unicorn/files/patch-setup.py Modified: head/emulators/py-unicorn/Makefile ============================================================================== --- head/emulators/py-unicorn/Makefile Sat Feb 25 13:09:55 2017 (r434801) +++ head/emulators/py-unicorn/Makefile Sat Feb 25 13:10:29 2017 (r434802) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= unicorn -PORTVERSION= 0.9 +PORTVERSION= 1.0 CATEGORIES= emulators python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/emulators/py-unicorn/distinfo ============================================================================== --- head/emulators/py-unicorn/distinfo Sat Feb 25 13:09:55 2017 (r434801) +++ head/emulators/py-unicorn/distinfo Sat Feb 25 13:10:29 2017 (r434802) @@ -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 Modified: head/emulators/py-unicorn/files/patch-setup.py ============================================================================== --- head/emulators/py-unicorn/files/patch-setup.py Sat Feb 25 13:09:55 2017 (r434801) +++ head/emulators/py-unicorn/files/patch-setup.py Sat Feb 25 13:10:29 2017 (r434802) @@ -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/*'] +- } )