Received: by mail.netbsd.org (Postfix, from userid 605) id 5804A84D96; Tue, 10 Mar 2020 23:08:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D566D84D33 for ; Tue, 10 Mar 2020 23:07:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 3wpWAJA6qj6t for ; Tue, 10 Mar 2020 23:07:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3301784CD4 for ; Tue, 10 Mar 2020 23:07:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2CFA6FB27; Tue, 10 Mar 2020 23:07:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1583881679197840" MIME-Version: 1.0 Date: Tue, 10 Mar 2020 23:07:59 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/textproc/py-sphinxcontrib-serializinghtml To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20200310230759.2CFA6FB27@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. --_----------=_1583881679197840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Tue Mar 10 23:07:59 UTC 2020 Modified Files: pkgsrc/textproc/py-sphinxcontrib-serializinghtml: Makefile Log Message: sphinxcontrib: Drop NetBSD version check for bsdtar bsdtar chooses the base system tar if it is libarchive tar (NetBSD 9/current, typically), and the package otherwise, so there is no need to conditionalize setting bsdtar on NetBSD. (As discussed on tech-pkg@.) To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 \ pkgsrc/textproc/py-sphinxcontrib-serializinghtml/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1583881679197840 Content-Disposition: inline Content-Length: 1124 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-sphinxcontrib-serializinghtml/Makefile diff -u pkgsrc/textproc/py-sphinxcontrib-serializinghtml/Makefile:1.4 pkgsrc/textproc/py-sphinxcontrib-serializinghtml/Makefile:1.5 --- pkgsrc/textproc/py-sphinxcontrib-serializinghtml/Makefile:1.4 Tue Mar 10 14:51:12 2020 +++ pkgsrc/textproc/py-sphinxcontrib-serializinghtml/Makefile Tue Mar 10 23:07:58 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2020/03/10 14:51:12 gdt Exp $ +# $NetBSD: Makefile,v 1.5 2020/03/10 23:07:58 gdt Exp $ DISTNAME= sphinxcontrib-serializinghtml-1.1.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -10,10 +10,10 @@ HOMEPAGE= http://sphinx-doc.org/ COMMENT= Sphinx API for "serialized" HTML files LICENSE= 2-clause-bsd -# On NetBSD, pax-as-tar fails on this distfile <= 8. (Accomodate 5-7 -# even though they are unsupported.) +# On NetBSD <= 8, pax-as-tar fails on this distfile. Use bsdtar +# (which on 9 and up will use base tar, if it's libarchive tar). .include "../../mk/bsd.prefs.mk" -.if ${OPSYS} == NetBSD && !empty(OS_VERSION:M[5678].*) +.if ${OPSYS} == NetBSD EXTRACT_USING= bsdtar .endif --_----------=_1583881679197840--