Received: by mail.netbsd.org (Postfix, from userid 605) id 8DD0E84E58; Tue, 28 Jun 2022 16:29:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A424B84E8A for ; Tue, 28 Jun 2022 16:24:22 +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 3dO3NjbniWdV for ; Tue, 28 Jun 2022 16:24:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 12AB584E85 for ; Tue, 28 Jun 2022 16:24:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 27112FB1A; Tue, 28 Jun 2022 16:26:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16564335954320" MIME-Version: 1.0 Date: Tue, 28 Jun 2022 16:26:35 +0000 From: "Manuel Bouyer" Subject: CVS commit: pkgsrc/sysutils/xentools415 To: pkgsrc-changes@NetBSD.org Reply-To: bouyer@netbsd.org X-Mailer: log_accum Message-Id: <20220628162635.27112FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16564335954320 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bouyer Date: Tue Jun 28 16:26:35 UTC 2022 Modified Files: pkgsrc/sysutils/xentools415: Makefile Added Files: pkgsrc/sysutils/xentools415: version.mk Log Message: Move Makefile fragments to version.mk, to ease reuse by other packages. NFC. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/sysutils/xentools415/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/xentools415/version.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16564335954320 Content-Disposition: inline Content-Length: 2290 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/xentools415/Makefile diff -u pkgsrc/sysutils/xentools415/Makefile:1.15 pkgsrc/sysutils/xentools415/Makefile:1.16 --- pkgsrc/sysutils/xentools415/Makefile:1.15 Tue Jun 28 11:36:07 2022 +++ pkgsrc/sysutils/xentools415/Makefile Tue Jun 28 16:26:34 2022 @@ -1,25 +1,10 @@ -# $NetBSD: Makefile,v 1.15 2022/06/28 11:36:07 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2022/06/28 16:26:34 bouyer Exp $ # +# VERSION is set in version.mk as it is shared with other packages +.include "version.mk" +PKGREVISION= 2 -VERSION= 4.15.2 -DIST_SUBDIR= xen415 -DISTNAME= xen-${VERSION} -PKGNAME= xentools415-${VERSION} -PKGREVISION= 2 CATEGORIES= sysutils -MASTER_SITES= https://downloads.xenproject.org/release/xen/${VERSION}/ - -DISTFILES= ${DISTNAME}.tar.gz - -SEABIOS_VERSION= 1.14.0 -SEABIOS_DIST= seabios-${SEABIOS_VERSION}.tar.gz -DISTFILES+= ${SEABIOS_DIST} -SITES.${SEABIOS_DIST}= -http://xenbits.xen.org/gitweb/?p=seabios.git;a=snapshot;h=refs/tags/rel-${SEABIOS_VERSION};sf=tgz - -IPXE_VERSION= 988d2c13cdf0f0b4140685af35ced70ac5b3283c -IPXE_DIST= ipxe-${IPXE_VERSION}.tar.gz -DISTFILES+= ${IPXE_DIST} -SITES.${IPXE_DIST}= -https://github.com/ipxe/ipxe/archive/${IPXE_VERSION}.tar.gz MAINTAINER= bouyer@NetBSD.org HOMEPAGE= https://xenproject.org/ Added files: Index: pkgsrc/sysutils/xentools415/version.mk diff -u /dev/null pkgsrc/sysutils/xentools415/version.mk:1.1 --- /dev/null Tue Jun 28 16:26:35 2022 +++ pkgsrc/sysutils/xentools415/version.mk Tue Jun 28 16:26:34 2022 @@ -0,0 +1,20 @@ +# $NetBSD: version.mk,v 1.1 2022/06/28 16:26:34 bouyer Exp $ +# +# Version number is used by xentools415 and xenstoretools + +VERSION= 4.15.2 + +DIST_SUBDIR= xen415 +DISTNAME= xen-${VERSION} +MASTER_SITES= https://downloads.xenproject.org/release/xen/${VERSION}/ +DISTFILES= ${DISTNAME}.tar.gz + +IPXE_VERSION= 988d2c13cdf0f0b4140685af35ced70ac5b3283c +IPXE_DIST= ipxe-${IPXE_VERSION}.tar.gz +DISTFILES+= ${IPXE_DIST} +SITES.${IPXE_DIST}= -https://github.com/ipxe/ipxe/archive/${IPXE_VERSION}.tar.gz + +SEABIOS_VERSION= 1.14.0 +SEABIOS_DIST= seabios-${SEABIOS_VERSION}.tar.gz +DISTFILES+= ${SEABIOS_DIST} +SITES.${SEABIOS_DIST}= -http://xenbits.xen.org/gitweb/?p=seabios.git;a=snapshot;h=refs/tags/rel-${SEABIOS_VERSION};sf=tgz --_----------=_16564335954320--