summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2016-09-19 13:01:09 +0000
committerwiz <wiz@pkgsrc.org>2016-09-19 13:01:09 +0000
commit68addbb1f9a88390e57b6611c2a60c5a964de2ab (patch)
tree0547e325ce7aba5edb826641f379f84e1f7d6d84 /security
parent10e96116051113fa077fd8e376740abb0d2fec65 (diff)
downloadpkgsrc-68addbb1f9a88390e57b6611c2a60c5a964de2ab.tar.gz
Remove two obsolete patches.
Diffstat (limited to 'security')
-rw-r--r--security/gnutls/Makefile3
-rw-r--r--security/gnutls/distinfo4
-rw-r--r--security/gnutls/patches/patch-gl_stdio.in.h22
-rw-r--r--security/gnutls/patches/patch-src_gl_stdio.in.h22
4 files changed, 3 insertions, 48 deletions
diff --git a/security/gnutls/Makefile b/security/gnutls/Makefile
index f0e67323460..fa5da6838bd 100644
--- a/security/gnutls/Makefile
+++ b/security/gnutls/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.163 2016/09/19 12:33:10 wiz Exp $
+# $NetBSD: Makefile,v 1.164 2016/09/19 13:01:09 wiz Exp $
DISTNAME= gnutls-3.5.4
+PKGREVISION= 1
CATEGORIES= security devel
MASTER_SITES= ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/
EXTRACT_SUFX= .tar.xz
diff --git a/security/gnutls/distinfo b/security/gnutls/distinfo
index 5a2aee21254..47379e7aee9 100644
--- a/security/gnutls/distinfo
+++ b/security/gnutls/distinfo
@@ -1,13 +1,11 @@
-$NetBSD: distinfo,v 1.119 2016/09/19 12:33:10 wiz Exp $
+$NetBSD: distinfo,v 1.120 2016/09/19 13:01:09 wiz Exp $
SHA1 (gnutls-3.5.4.tar.xz) = d2b9d5f7ad158c5b2a636660fc445765ffd92c75
RMD160 (gnutls-3.5.4.tar.xz) = d4bb8babd43455bcec24f1298710b576ae996f44
SHA512 (gnutls-3.5.4.tar.xz) = 175aab43b6349a62530938333910feb26ea5d923e151a9942fd5a6989f87193b18862e69bbbdb6308f889585d428d689d8fd3a6e8149f9fd1ac2882802ea6a9f
Size (gnutls-3.5.4.tar.xz) = 6930620 bytes
SHA1 (patch-ae) = 5e020483ac14ef6ccc45a53e351242ab16c860f1
-SHA1 (patch-gl_stdio.in.h) = a2359986aac788652a03b5a43860706a9d103e36
SHA1 (patch-lib_Makefile.in) = d0e292e632a91a9f19e39bd2c2d205a086ba5588
-SHA1 (patch-src_gl_stdio.in.h) = ceacb1fdc7b71c7ca184bfc2b993c71bbd12d58c
SHA1 (patch-src_libopts_autoopts_options.h) = 9202c55314fe8764ac82c95bbfabfa1b031e9ba4
SHA1 (patch-src_libopts_compat_compat.h) = 240fbfc0ba20af35e0634ba873fe9e34bfbcc921
SHA1 (patch-src_libopts_libopts.c) = ce5e7681def882e95ed5ab770564d1f999b97039
diff --git a/security/gnutls/patches/patch-gl_stdio.in.h b/security/gnutls/patches/patch-gl_stdio.in.h
deleted file mode 100644
index 0c2187fd246..00000000000
--- a/security/gnutls/patches/patch-gl_stdio.in.h
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-gl_stdio.in.h,v 1.4 2016/09/19 12:33:10 wiz Exp $
-
-Avoid conflict between gets() and std::gets()
-
---- gl/stdio.in.h.orig 2016-05-28 07:57:01.000000000 +0000
-+++ gl/stdio.in.h
-@@ -719,6 +719,7 @@ _GL_WARN_ON_USE (getline, "getline is un
- # endif
- #endif
-
-+#if !(defined __cplusplus)
- /* It is very rare that the developer ever has full control of stdin,
- so any use of gets warrants an unconditional warning; besides, C11
- removed it. */
-@@ -726,6 +727,7 @@ _GL_WARN_ON_USE (getline, "getline is un
- #if HAVE_RAW_DECL_GETS && !defined __cplusplus
- _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
- #endif
-+#endif
-
- #if @GNULIB_OBSTACK_PRINTF@ || @GNULIB_OBSTACK_PRINTF_POSIX@
- struct obstack;
diff --git a/security/gnutls/patches/patch-src_gl_stdio.in.h b/security/gnutls/patches/patch-src_gl_stdio.in.h
deleted file mode 100644
index 7494bd1feca..00000000000
--- a/security/gnutls/patches/patch-src_gl_stdio.in.h
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-src_gl_stdio.in.h,v 1.2 2016/09/19 12:33:10 wiz Exp $
-
-Avoid conflict between gets() and std::gets()
-
---- src/gl/stdio.in.h.orig 2015-10-07 08:19:33.000000000 +0000
-+++ src/gl/stdio.in.h
-@@ -719,6 +719,7 @@ _GL_WARN_ON_USE (getline, "getline is un
- # endif
- #endif
-
-+#if !defined(__cplusplus)
- /* It is very rare that the developer ever has full control of stdin,
- so any use of gets warrants an unconditional warning; besides, C11
- removed it. */
-@@ -726,6 +727,7 @@ _GL_WARN_ON_USE (getline, "getline is un
- #if HAVE_RAW_DECL_GETS && !defined __cplusplus
- _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
- #endif
-+#endif
-
- #if @GNULIB_OBSTACK_PRINTF@ || @GNULIB_OBSTACK_PRINTF_POSIX@
- struct obstack;