Received: by mail.netbsd.org (Postfix, from userid 605) id C7EA884D6F; Wed, 15 Jan 2020 13:16:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 39C7684CE7 for ; Wed, 15 Jan 2020 13:07:47 +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 cjr8ypKoizTf for ; Wed, 15 Jan 2020 13:07:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 9602584D68 for ; Wed, 15 Jan 2020 13:07:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 85551FBF4; Wed, 15 Jan 2020 13:07:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157909366665940" MIME-Version: 1.0 Date: Wed, 15 Jan 2020 13:07:46 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/pius To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200115130746.85551FBF4@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. --_----------=_157909366665940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Jan 15 13:07:46 UTC 2020 Modified Files: pkgsrc/security/pius: Makefile PLIST Log Message: pius: fix installation Switch from egg.mk to distutils.mk, the latter works. Add perl dependency for pius-party-worksheet. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/pius/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/pius/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157909366665940 Content-Disposition: inline Content-Length: 2098 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/pius/Makefile diff -u pkgsrc/security/pius/Makefile:1.2 pkgsrc/security/pius/Makefile:1.3 --- pkgsrc/security/pius/Makefile:1.2 Mon Jan 13 20:52:04 2020 +++ pkgsrc/security/pius/Makefile Wed Jan 15 13:07:46 2020 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2020/01/13 20:52:04 schmonz Exp $ +# $NetBSD: Makefile,v 1.3 2020/01/15 13:07:46 wiz Exp $ DISTNAME= pius-3.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= security python MASTER_SITES= ${MASTER_SITE_GITHUB:=jaymzh/pius/releases/download/v3.0.0/} EXTRACT_SUFX= .tar.bz2 @@ -15,6 +16,7 @@ DEPENDS+= gnupg-[0-9]*:../../security/g DEPENDS+= gnupg2-[0-9]*:../../security/gnupg2 USE_LANGUAGES= # none +USE_TOOLS+= perl:run SUBST_CLASSES+= paths SUBST_STAGE.paths= do-configure @@ -22,6 +24,8 @@ SUBST_FILES.paths= setup.py pius-keyring SUBST_FILES.paths+= doc/pius.1 doc/pius-keyring-mgr.1 doc/pius-report.1 SUBST_VARS.paths= PREFIX PKGMANDIR -.include "../../lang/python/egg.mk" +REPLACE_PERL+= pius-party-worksheet + +.include "../../lang/python/distutils.mk" .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/pius/PLIST diff -u pkgsrc/security/pius/PLIST:1.1 pkgsrc/security/pius/PLIST:1.2 --- pkgsrc/security/pius/PLIST:1.1 Mon Jan 13 20:39:29 2020 +++ pkgsrc/security/pius/PLIST Wed Jan 15 13:07:46 2020 @@ -1,12 +1,8 @@ -@comment $NetBSD: PLIST,v 1.1 2020/01/13 20:39:29 schmonz Exp $ +@comment $NetBSD: PLIST,v 1.2 2020/01/15 13:07:46 wiz Exp $ bin/pius bin/pius-keyring-mgr bin/pius-party-worksheet bin/pius-report -man/man1/pius-keyring-mgr.1 -man/man1/pius-party-worksheet.1 -man/man1/pius-report.1 -man/man1/pius.1 ${PYSITELIB}/libpius/__init__.py ${PYSITELIB}/libpius/__init__.pyo ${PYSITELIB}/libpius/__init__.pyc @@ -31,3 +27,8 @@ ${PYSITELIB}/libpius/signer.py ${PYSITELIB}/libpius/state.py ${PYSITELIB}/libpius/util.py ${PYSITELIB}/libpius/wotsap.py +${PYSITELIB}/${EGG_FILE} +man/man1/pius-keyring-mgr.1 +man/man1/pius-party-worksheet.1 +man/man1/pius-report.1 +man/man1/pius.1 --_----------=_157909366665940--