Received: by mail.netbsd.org (Postfix, from userid 605) id B4E4484DD7; Tue, 13 Mar 2018 00:58:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 11AA984DD5 for ; Tue, 13 Mar 2018 00:58:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id z262GZEuOVTC for ; Tue, 13 Mar 2018 00:58:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4556384D04 for ; Tue, 13 Mar 2018 00:58:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3834EFB40; Tue, 13 Mar 2018 00:58:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152090271537020" MIME-Version: 1.0 Date: Tue, 13 Mar 2018 00:58:35 +0000 From: "Pierre Pronchery" Subject: CVS commit: pkgsrc/devel/py-manticore To: pkgsrc-changes@NetBSD.org Reply-To: khorben@netbsd.org X-Mailer: log_accum Message-Id: <20180313005835.3834EFB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_152090271537020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: khorben Date: Tue Mar 13 00:58:35 UTC 2018 Modified Files: pkgsrc/devel/py-manticore: Makefile Log Message: devel/py-manticore really depends on the Python bindings for math/z3 Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-manticore/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152090271537020 Content-Disposition: inline Content-Length: 969 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-manticore/Makefile diff -u pkgsrc/devel/py-manticore/Makefile:1.4 pkgsrc/devel/py-manticore/Makefile:1.5 --- pkgsrc/devel/py-manticore/Makefile:1.4 Mon Feb 26 02:31:34 2018 +++ pkgsrc/devel/py-manticore/Makefile Tue Mar 13 00:58:35 2018 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2018/02/26 02:31:34 khorben Exp $ +# $NetBSD: Makefile,v 1.5 2018/03/13 00:58:35 khorben Exp $ DISTNAME= manticore-${GITHUB_TAG} PKGNAME= ${PYPKGPREFIX}-${EGG_NAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=trailofbits/} GITHUB_PROJECT= manticore @@ -16,7 +16,7 @@ LICENSE= apache-2.0 DEPENDS+= ${PYPKGPREFIX}-capstone-[0-9]*:../../devel/py-capstone DEPENDS+= ${PYPKGPREFIX}-ply-[0-9]*:../../devel/py-ply DEPENDS+= ${PYPKGPREFIX}-unicorn-[0-9]*:../../emulators/py-unicorn -DEPENDS+= z3-[0-9]*:../../math/z3 +DEPENDS+= ${PYPKGPREFIX}-z3-[0-9]*:../../math/py-z3 PYTHON_VERSIONS_ACCEPTED= 27 --_----------=_152090271537020--