pkgsrc-Changes archive

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

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   micha
Date:           Fri Jun 25 13:41:48 UTC 2021

Modified Files:
        pkgsrc/archivers: Makefile
        pkgsrc/devel/smake: Makefile.common
Added Files:
        pkgsrc/archivers/tartest: DESCR Makefile PLIST distinfo

Log Message:
archivers/tartest: Add version 1.23

Tartest reads a tar archive from stdin and checks this archive for
compliance with POSIX.1-1990.


To generate a diff of this commit:
cvs rdiff -u -r1.185 -r1.186 pkgsrc/archivers/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/archivers/tartest/DESCR \
    pkgsrc/archivers/tartest/Makefile pkgsrc/archivers/tartest/PLIST \
    pkgsrc/archivers/tartest/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/smake/Makefile.common

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/archivers/Makefile
diff -u pkgsrc/archivers/Makefile:1.185 pkgsrc/archivers/Makefile:1.186
--- pkgsrc/archivers/Makefile:1.185     Sun Jun 13 08:15:50 2021
+++ pkgsrc/archivers/Makefile   Fri Jun 25 13:41:48 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.185 2021/06/13 08:15:50 nia Exp $
+# $NetBSD: Makefile,v 1.186 2021/06/25 13:41:48 micha Exp $
 #
 
 COMMENT=       Archivers and compression tools
@@ -129,6 +129,7 @@ SUBDIR+=    sarab
 SUBDIR+=       squsq
 SUBDIR+=       star
 SUBDIR+=       szip
+SUBDIR+=       tartest
 SUBDIR+=       torrentzip
 SUBDIR+=       unace
 SUBDIR+=       unace-bin

Index: pkgsrc/devel/smake/Makefile.common
diff -u pkgsrc/devel/smake/Makefile.common:1.6 pkgsrc/devel/smake/Makefile.common:1.7
--- pkgsrc/devel/smake/Makefile.common:1.6      Fri Jun 25 10:43:03 2021
+++ pkgsrc/devel/smake/Makefile.common  Fri Jun 25 13:41:48 2021
@@ -1,5 +1,6 @@
-# $NetBSD: Makefile.common,v 1.6 2021/06/25 10:43:03 micha Exp $
+# $NetBSD: Makefile.common,v 1.7 2021/06/25 13:41:48 micha Exp $
 # used by archivers/star/Makefile
+# used by archivers/tartest/Makefile
 # used by devel/smake/Makefile
 # used by security/mdigest/Makefile
 # used by shells/bosh/Makefile

Added files:

Index: pkgsrc/archivers/tartest/DESCR
diff -u /dev/null pkgsrc/archivers/tartest/DESCR:1.1
--- /dev/null   Fri Jun 25 13:41:48 2021
+++ pkgsrc/archivers/tartest/DESCR      Fri Jun 25 13:41:48 2021
@@ -0,0 +1,2 @@
+Tartest reads a tar archive from stdin and checks this archive for
+compliance with POSIX.1-1990.
Index: pkgsrc/archivers/tartest/Makefile
diff -u /dev/null pkgsrc/archivers/tartest/Makefile:1.1
--- /dev/null   Fri Jun 25 13:41:48 2021
+++ pkgsrc/archivers/tartest/Makefile   Fri Jun 25 13:41:48 2021
@@ -0,0 +1,42 @@
+# $NetBSD: Makefile,v 1.1 2021/06/25 13:41:48 micha Exp $
+
+DISTNAME=      schily-2021-06-07
+PKGNAME=       tartest-1.23
+CATEGORIES=    archivers
+MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=schilytools/}
+EXTRACT_SUFX=  .tar.bz2
+
+MAINTAINER=    micha%NetBSD.org@localhost
+HOMEPAGE=      https://sourceforge.net/projects/schilytools/
+COMMENT=       Test tar archive for POSIX.1-1990 compliance
+LICENSE=       cddl-1.0
+
+MAKE_JOBS_SAFE=        no
+
+.include "../../mk/bsd.prefs.mk"
+
+TOOL_DEPENDS+= smake>=1.3nb11:../../devel/smake
+SMAKE=         MAKEFLAGS= smake
+MAKE_FLAGS+=   DESTDIR=${DESTDIR} INS_BASE=${PREFIX} DEFMANBASE=. MANDIR=${PKGMANDIR}
+# Honor CPPFLAGS, CFLAGS and LDFLAGS
+MAKE_FLAGS+=   CPPOPTX=${CPPFLAGS:Q} COPTX=${CFLAGS:Q} LDOPTX=${LDFLAGS:Q}
+
+INSTALLATION_DIRS=     bin ${PKGMANDIR}/man1
+
+# Shared platform specific code for schilytools (provided by smake package)
+.include "../../devel/smake/Makefile.common"
+
+do-configure:
+       cd ${WRKSRC}/inc && ${SMAKE} ${MAKE_FLAGS}
+
+do-build:
+       cd ${WRKSRC} && for library in libschily ;                      \
+       do                                                              \
+               cd ${WRKSRC}/$${library} && ${SMAKE} ${MAKE_FLAGS};     \
+       done
+       cd ${WRKSRC}/tartest && ${SMAKE} ${MAKE_FLAGS}
+
+do-install:
+       cd ${WRKSRC}/tartest && ${SMAKE} ${MAKE_FLAGS} install
+
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/archivers/tartest/PLIST
diff -u /dev/null pkgsrc/archivers/tartest/PLIST:1.1
--- /dev/null   Fri Jun 25 13:41:48 2021
+++ pkgsrc/archivers/tartest/PLIST      Fri Jun 25 13:41:48 2021
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1 2021/06/25 13:41:48 micha Exp $
+bin/tartest
+man/man1/tartest.1
Index: pkgsrc/archivers/tartest/distinfo
diff -u /dev/null pkgsrc/archivers/tartest/distinfo:1.1
--- /dev/null   Fri Jun 25 13:41:48 2021
+++ pkgsrc/archivers/tartest/distinfo   Fri Jun 25 13:41:48 2021
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/06/25 13:41:48 micha Exp $
+
+SHA1 (schily-2021-06-07.tar.bz2) = 355c162afdffb730e632902620397cc7851c3595
+RMD160 (schily-2021-06-07.tar.bz2) = 8239c965ad9da0d7ce21c39ed28f3f367f929cbf
+SHA512 (schily-2021-06-07.tar.bz2) = f71fb7b521e1b39e87ec9e44b29576eb2e67f0783e24760590f4323243ee1df7e7bdc214aa95d9e3cde6d090c14cab85ddfeaa8ea93b3942997c72c257b53a60
+Size (schily-2021-06-07.tar.bz2) = 4905609 bytes



Home | Main Index | Thread Index | Old Index