Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.21 2015/07/12 18:56:28 wiz Exp $
# $NetBSD: Makefile,v 1.23 2016/07/30 23:56:01 wen Exp $
DISTNAME= Digest-Hashcash-0.03
DISTNAME= Digest-Hashcash-1.1
PKGNAME= p5-${DISTNAME}
PKGREVISION= 8
CATEGORIES= security perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Digest/}

View File

@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.3 2006/03/10 20:29:46 heinz Exp $
$NetBSD: distinfo,v 1.5 2016/07/30 23:56:01 wen Exp $
SHA1 (Digest-Hashcash-0.03.tar.gz) = ef22445827bf3315f1118c31df013e2cfa6fbb97
RMD160 (Digest-Hashcash-0.03.tar.gz) = b0a5efe3a56b975c8f6d8f20a08fa7df2f194574
Size (Digest-Hashcash-0.03.tar.gz) = 14533 bytes
SHA1 (patch-aa) = a716fca97bc106cbf02e6da04294f9a48d692a31
SHA1 (Digest-Hashcash-1.1.tar.gz) = 7641c90bc7e89fc23c04d4abc264c04508f36f5c
RMD160 (Digest-Hashcash-1.1.tar.gz) = 964cf323724e9dffcceebdc556f49e86773d14b6
SHA512 (Digest-Hashcash-1.1.tar.gz) = 59fc4f116a963bff455f747c71e29893a15f2505eaec5f66ff6e662d09a0b1b5d0f4451dea081753eacd40fc5079edccd2385e31c0301b48b62bde36bdd7259f
Size (Digest-Hashcash-1.1.tar.gz) = 18243 bytes

View File

@@ -1,22 +0,0 @@
$NetBSD: patch-aa,v 1.2 2006/03/10 20:29:46 heinz Exp $
--- Hashcash.xs.orig 2005-03-03 17:56:51.000000000 +0100
+++ Hashcash.xs
@@ -4,7 +4,17 @@
#include <time.h>
#include <stdlib.h>
+#if defined(__NetBSD__)
+#include <sys/param.h>
+#if __NetBSD_Version__ < 105160000
+#include <inttypes.h>
+typedef uint32_t uint_fast32_t;
+#else
#include <stdint.h>
+#endif
+#else
+#include <stdint.h>
+#endif
/* NIST Secure Hash Algorithm */
/* heavily modified by Uwe Hollerbach <uh@alumni.caltech edu> */