pkgsrc-Changes archive

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

CVS commit: pkgsrc/security



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.

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@localhost
+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



Home | Main Index | Thread Index | Old Index