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,12 +1,11 @@
# $NetBSD: Makefile,v 1.48 2015/08/30 14:38:18 wiz Exp $
# $NetBSD: Makefile,v 1.53 2016/07/16 08:19:22 wiz Exp $
DISTNAME= libgpg-error-1.20
DISTNAME= libgpg-error-1.24
CATEGORIES= security
MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/libgpg-error/ \
ftp://ftp.ring.gr.jp/pub/net/gnupg/libgpg-error/ \
ftp://mirror.switch.ch/mirror/gnupg/libgpg-error/ \
ftp://ftp.freenet.de/pub/ftp.gnupg.org/gcrypt/libgpg-error/ \
ftp://ftp.gnupg.ca/libgpg-error/
ftp://ftp.freenet.de/pub/ftp.gnupg.org/gcrypt/libgpg-error/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= minskim@NetBSD.org

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.25 2015/08/30 14:38:18 wiz Exp $
$NetBSD: distinfo,v 1.30 2016/07/16 08:19:22 wiz Exp $
SHA1 (libgpg-error-1.20.tar.bz2) = 89c961f63469739fe816a56dcdd86c2e1897cace
RMD160 (libgpg-error-1.20.tar.bz2) = 0b839118b5950d2e9798ff7888c8ce7f0e3e3bcb
Size (libgpg-error-1.20.tar.bz2) = 770279 bytes
SHA1 (patch-src_estream.c) = 792929cebef6ba7860da89c70742b3cd28c9c92d
SHA1 (libgpg-error-1.24.tar.bz2) = c3e5bd0c3ddea647416b429cd8e2ec755bad9d9e
RMD160 (libgpg-error-1.24.tar.bz2) = b7e9ee8344da7c5a73879f3caad6f2938b3123be
SHA512 (libgpg-error-1.24.tar.bz2) = d577ebf36251402dd27187056f7c54cea226119f499d1c3bc1c4201ba4d2ae4a9dcefdf4502411cfcffe52b1cefab8c2cfddfa16b7e6ad3b49305a3394ccca31
Size (libgpg-error-1.24.tar.bz2) = 783628 bytes
SHA1 (patch-src_estream.c) = 6b7879019c23a7161a8f2d7e04377c523670327a
SHA1 (patch-src_gpg-error-config.in) = e22e99208192971f8c123d7ee9b22c5f615669e1

View File

@@ -1,4 +1,4 @@
$NetBSD: patch-src_estream.c,v 1.2 2014/10/30 14:30:35 wiz Exp $
$NetBSD: patch-src_estream.c,v 1.3 2016/05/05 11:34:49 wiz Exp $
Don't use atexit(), since this library mey be dlopen()ed
and dlclose()d before exit() is called.
@@ -7,17 +7,17 @@ Instead mark the do_deinit() function as a destructor.
https://bugs.g10code.com/gnupg/issue1749
--- src/estream.c.orig 2014-09-11 09:38:21.000000000 +0000
--- src/estream.c.orig 2016-04-05 13:44:10.000000000 +0000
+++ src/estream.c
@@ -471,6 +471,7 @@ do_list_remove (estream_t stream, int wi
@@ -529,6 +529,7 @@ do_list_remove (estream_t stream, int wi
/*
* The atexit handler for this estream module.
*/
+__attribute__((destructor,used))
static void
do_deinit (void)
{
@@ -503,7 +504,16 @@ _gpgrt_es_init (void)
@@ -560,7 +561,16 @@ _gpgrt_es_init (void)
if (!initialized)
{
initialized = 1;