pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc archivers/tartest: Add version 1.23



details:   https://anonhg.NetBSD.org/pkgsrc/rev/2bdad8c11ee0
branches:  trunk
changeset: 455006:2bdad8c11ee0
user:      micha <micha%pkgsrc.org@localhost>
date:      Fri Jun 25 13:41:48 2021 +0000

description:
archivers/tartest: Add version 1.23

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

diffstat:

 archivers/Makefile          |   3 ++-
 archivers/tartest/DESCR     |   2 ++
 archivers/tartest/Makefile  |  42 ++++++++++++++++++++++++++++++++++++++++++
 archivers/tartest/PLIST     |   3 +++
 archivers/tartest/distinfo  |   6 ++++++
 devel/smake/Makefile.common |   3 ++-
 6 files changed, 57 insertions(+), 2 deletions(-)

diffs (97 lines):

diff -r dd9fe6c9c926 -r 2bdad8c11ee0 archivers/Makefile
--- a/archivers/Makefile        Fri Jun 25 13:36:56 2021 +0000
+++ b/archivers/Makefile        Fri Jun 25 13:41:48 2021 +0000
@@ -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+=       squsq
 SUBDIR+=       star
 SUBDIR+=       szip
+SUBDIR+=       tartest
 SUBDIR+=       torrentzip
 SUBDIR+=       unace
 SUBDIR+=       unace-bin
diff -r dd9fe6c9c926 -r 2bdad8c11ee0 archivers/tartest/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/tartest/DESCR   Fri Jun 25 13:41:48 2021 +0000
@@ -0,0 +1,2 @@
+Tartest reads a tar archive from stdin and checks this archive for
+compliance with POSIX.1-1990.
diff -r dd9fe6c9c926 -r 2bdad8c11ee0 archivers/tartest/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/tartest/Makefile        Fri Jun 25 13:41:48 2021 +0000
@@ -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"
diff -r dd9fe6c9c926 -r 2bdad8c11ee0 archivers/tartest/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/tartest/PLIST   Fri Jun 25 13:41:48 2021 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1 2021/06/25 13:41:48 micha Exp $
+bin/tartest
+man/man1/tartest.1
diff -r dd9fe6c9c926 -r 2bdad8c11ee0 archivers/tartest/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/tartest/distinfo        Fri Jun 25 13:41:48 2021 +0000
@@ -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
diff -r dd9fe6c9c926 -r 2bdad8c11ee0 devel/smake/Makefile.common
--- a/devel/smake/Makefile.common       Fri Jun 25 13:36:56 2021 +0000
+++ b/devel/smake/Makefile.common       Fri Jun 25 13:41:48 2021 +0000
@@ -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



Home | Main Index | Thread Index | Old Index