Received: by mail.netbsd.org (Postfix, from userid 605) id 0241084D43; Sun, 30 May 2021 00:49:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3BD3884D16 for ; Sun, 30 May 2021 00:49:52 +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 NWID_3ssvQ2D for ; Sun, 30 May 2021 00:49:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A39C384CEE for ; Sun, 30 May 2021 00:49:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 95DEAFA95; Sun, 30 May 2021 00:49:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1622335791194020" MIME-Version: 1.0 Date: Sun, 30 May 2021 00:49:51 +0000 From: "Pierre Pronchery" Subject: CVS commit: pkgsrc/security To: pkgsrc-changes@NetBSD.org Reply-To: khorben@netbsd.org X-Mailer: log_accum Message-Id: <20210530004951.95DEAFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1622335791194020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: khorben Date: Sun May 30 00:49:51 UTC 2021 Modified Files: pkgsrc/security/libpe: Makefile pkgsrc/security/pev: Makefile Added Files: pkgsrc/security/libpe: Makefile.common Log Message: libpe, pev: introduce a Makefile.common To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/libpe/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/security/libpe/Makefile.common cvs rdiff -u -r1.9 -r1.10 pkgsrc/security/pev/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1622335791194020 Content-Disposition: inline Content-Length: 2329 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/libpe/Makefile diff -u pkgsrc/security/libpe/Makefile:1.1 pkgsrc/security/libpe/Makefile:1.2 --- pkgsrc/security/libpe/Makefile:1.1 Sat May 29 23:23:42 2021 +++ pkgsrc/security/libpe/Makefile Sun May 30 00:49:51 2021 @@ -1,18 +1,14 @@ -# $NetBSD: Makefile,v 1.1 2021/05/29 23:23:42 khorben Exp $ +# $NetBSD: Makefile,v 1.2 2021/05/30 00:49:51 khorben Exp $ -DISTNAME= ${GITHUB_PROJECT}-0.81 -CATEGORIES= security -MASTER_SITES= ${MASTER_SITE_GITHUB:=merces/} +.include "../../security/libpe/Makefile.common" + +DISTNAME= ${GITHUB_PROJECT}-${PEV_VERSION} GITHUB_PROJECT= libpe GITHUB_TAG= ce39b127328e3863e08163962f7ecc768eb2555e -MAINTAINER= khorben@defora.org -HOMEPAGE= https://pev.sourceforge.io/ COMMENT= The PE library used by pev - the PE file toolkit LICENSE= gnu-lgpl-v3 -USE_TOOLS+= gmake - MAKE_FLAGS+= DESTDIR=${DESTDIR} MAKE_FLAGS+= prefix=${PREFIX} Index: pkgsrc/security/pev/Makefile diff -u pkgsrc/security/pev/Makefile:1.9 pkgsrc/security/pev/Makefile:1.10 --- pkgsrc/security/pev/Makefile:1.9 Sat May 29 23:28:36 2021 +++ pkgsrc/security/pev/Makefile Sun May 30 00:49:51 2021 @@ -1,18 +1,14 @@ -# $NetBSD: Makefile,v 1.9 2021/05/29 23:28:36 khorben Exp $ +# $NetBSD: Makefile,v 1.10 2021/05/30 00:49:51 khorben Exp $ -DISTNAME= ${GITHUB_PROJECT}-0.81 -CATEGORIES= security -MASTER_SITES= ${MASTER_SITE_GITHUB:=merces/} +.include "../../security/libpe/Makefile.common" + +DISTNAME= ${GITHUB_PROJECT}-${PEV_VERSION} GITHUB_PROJECT= pev GITHUB_TAG= v${PKGVERSION_NOREV} -MAINTAINER= khorben@defora.org -HOMEPAGE= https://pev.sourceforge.io/ COMMENT= The PE analysis toolkit LICENSE= gnu-gpl-v3 -USE_TOOLS+= gmake - .include "../../mk/bsd.prefs.mk" MAKE_FLAGS+= DESTDIR=${DESTDIR} Added files: Index: pkgsrc/security/libpe/Makefile.common diff -u /dev/null pkgsrc/security/libpe/Makefile.common:1.1 --- /dev/null Sun May 30 00:49:51 2021 +++ pkgsrc/security/libpe/Makefile.common Sun May 30 00:49:51 2021 @@ -0,0 +1,13 @@ +# $NetBSD: Makefile.common,v 1.1 2021/05/30 00:49:51 khorben Exp $ +# +# used by security/libpe/Makefile +# used by security/pev/Makefile + +PEV_VERSION= 0.81 +CATEGORIES= security +MASTER_SITES= ${MASTER_SITE_GITHUB:=merces/} + +MAINTAINER= khorben@defora.org +HOMEPAGE= https://pev.sourceforge.io/ + +USE_TOOLS+= gmake --_----------=_1622335791194020--