Received: by mail.netbsd.org (Postfix, from userid 605) id 9E9EC84D1B; Fri, 25 Jun 2021 10:13:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DB69A84D10 for ; Fri, 25 Jun 2021 10:13:58 +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 UpyTduAaANUE for ; Fri, 25 Jun 2021 10:13:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4400784CE1 for ; Fri, 25 Jun 2021 10:13:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 37E0BFA95; Fri, 25 Jun 2021 10:13:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1624616038189560" MIME-Version: 1.0 Date: Fri, 25 Jun 2021 10:13:58 +0000 From: "Michael Baeuerle" Subject: CVS commit: pkgsrc/security To: pkgsrc-changes@NetBSD.org Reply-To: micha@netbsd.org X-Mailer: log_accum Message-Id: <20210625101358.37E0BFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1624616038189560 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: micha Date: Fri Jun 25 10:13:58 UTC 2021 Modified Files: pkgsrc/security: Makefile Added Files: pkgsrc/security/mdigest: DESCR Makefile PLIST distinfo Log Message: security/mdigest: Added version 1.6 mdigest reads the files from the argument list and computes a message digest hash for the file content. If the argument list is empty mdigest reads from standard in. To generate a diff of this commit: cvs rdiff -u -r1.829 -r1.830 pkgsrc/security/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/security/mdigest/DESCR \ pkgsrc/security/mdigest/Makefile pkgsrc/security/mdigest/PLIST \ pkgsrc/security/mdigest/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1624616038189560 Content-Disposition: inline Content-Length: 3380 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/Makefile diff -u pkgsrc/security/Makefile:1.829 pkgsrc/security/Makefile:1.830 --- pkgsrc/security/Makefile:1.829 Wed Jun 23 21:07:42 2021 +++ pkgsrc/security/Makefile Fri Jun 25 10:13:57 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.829 2021/06/23 21:07:42 wiz Exp $ +# $NetBSD: Makefile,v 1.830 2021/06/25 10:13:57 micha Exp $ # COMMENT= Security and cryptography tools and libraries @@ -224,6 +224,7 @@ SUBDIR+= mbedtls SUBDIR+= mcrypt SUBDIR+= md4-collision SUBDIR+= md5-collision +SUBDIR+= mdigest SUBDIR+= merkletree SUBDIR+= mhash SUBDIR+= minisign Added files: Index: pkgsrc/security/mdigest/DESCR diff -u /dev/null pkgsrc/security/mdigest/DESCR:1.1 --- /dev/null Fri Jun 25 10:13:58 2021 +++ pkgsrc/security/mdigest/DESCR Fri Jun 25 10:13:58 2021 @@ -0,0 +1,4 @@ +mdigest reads the files from the argument list and computes a message +digest hash for the file content. + +If the argument list is empty mdigest reads from standard in. Index: pkgsrc/security/mdigest/Makefile diff -u /dev/null pkgsrc/security/mdigest/Makefile:1.1 --- /dev/null Fri Jun 25 10:13:58 2021 +++ pkgsrc/security/mdigest/Makefile Fri Jun 25 10:13:58 2021 @@ -0,0 +1,42 @@ +# $NetBSD: Makefile,v 1.1 2021/06/25 10:13:58 micha Exp $ + +DISTNAME= schily-2021-06-07 +PKGNAME= mdigest-1.6 +CATEGORIES= security +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=schilytools/} +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= micha@NetBSD.org +HOMEPAGE= https://sourceforge.net/projects/schilytools/ +COMMENT= Calculates a message digest +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 libmdigest ; \ + do \ + cd ${WRKSRC}/$${library} && ${SMAKE} ${MAKE_FLAGS}; \ + done + cd ${WRKSRC}/mdigest && ${SMAKE} ${MAKE_FLAGS} + +do-install: + cd ${WRKSRC}/mdigest && ${SMAKE} ${MAKE_FLAGS} install + +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/mdigest/PLIST diff -u /dev/null pkgsrc/security/mdigest/PLIST:1.1 --- /dev/null Fri Jun 25 10:13:58 2021 +++ pkgsrc/security/mdigest/PLIST Fri Jun 25 10:13:58 2021 @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1 2021/06/25 10:13:58 micha Exp $ +bin/mdigest +man/man1/mdigest.1 Index: pkgsrc/security/mdigest/distinfo diff -u /dev/null pkgsrc/security/mdigest/distinfo:1.1 --- /dev/null Fri Jun 25 10:13:58 2021 +++ pkgsrc/security/mdigest/distinfo Fri Jun 25 10:13:58 2021 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2021/06/25 10:13:58 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 --_----------=_1624616038189560--