pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/py-sphinxcontrib-serializinghtml



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.

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
 



Home | Main Index | Thread Index | Old Index