From a215526c23a6163f854784b580f924a0165915d2 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 2 Jul 2015 12:19:41 +0000 Subject: Remove old patches (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 55758000) --- mail-mta/opensmtpd/ChangeLog | 7 +++- ...opensmtpd-5.4.5_p2-libevent-version-macro.patch | 42 ---------------------- .../opensmtpd-5.4.5_p2-setgroups-header.patch | 22 ------------ 3 files changed, 6 insertions(+), 65 deletions(-) delete mode 100644 mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-libevent-version-macro.patch delete mode 100644 mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-setgroups-header.patch (limited to 'mail-mta') diff --git a/mail-mta/opensmtpd/ChangeLog b/mail-mta/opensmtpd/ChangeLog index b31d080c845a..0ecec897052b 100644 --- a/mail-mta/opensmtpd/ChangeLog +++ b/mail-mta/opensmtpd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mail-mta/opensmtpd # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/ChangeLog,v 1.75 2015/07/02 12:19:14 zx2c4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/ChangeLog,v 1.76 2015/07/02 12:19:41 zx2c4 Exp $ + + 02 Jul 2015; Jason A. Donenfeld + -files/opensmtpd-5.4.5_p2-libevent-version-macro.patch, + -files/opensmtpd-5.4.5_p2-setgroups-header.patch, opensmtpd-5.7.1_p1.ebuild: + Remove old patches 02 Jul 2015; Jason A. Donenfeld opensmtpd-5.4.6.201506112227_p1.ebuild, opensmtpd-5.7.1_p1.ebuild: diff --git a/mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-libevent-version-macro.patch b/mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-libevent-version-macro.patch deleted file mode 100644 index ebd3ab4a77d3..000000000000 --- a/mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-libevent-version-macro.patch +++ /dev/null @@ -1,42 +0,0 @@ -diff -ru opensmtpd-5.4.5p2/configure opensmtpd-5.4.5p2-fixed/configure ---- opensmtpd-5.4.5p2/configure 2015-04-29 22:53:03.000000000 +0200 -+++ opensmtpd-5.4.5p2-fixed/configure 2015-05-27 14:20:48.977763792 +0200 -@@ -19667,7 +19667,7 @@ - if(fd == NULL) - exit(1); - -- if ((rc = fprintf(fd ,"%s\n", _EVENT_VERSION)) <0) -+ if ((rc = fprintf(fd ,"%s\n", LIBEVENT_VERSION)) <0) - exit(1); - - exit(0); -@@ -19794,7 +19794,7 @@ - main () - { - -- exit(strcmp(event_get_version(), _EVENT_VERSION) == 0 ? 0 : 1); -+ exit(strcmp(event_get_version(), LIBEVENT_VERSION) == 0 ? 0 : 1); - - ; - return 0; -diff -ru opensmtpd-5.4.5p2/configure.ac opensmtpd-5.4.5p2-fixed/configure.ac ---- opensmtpd-5.4.5p2/configure.ac 2015-04-29 22:52:18.000000000 +0200 -+++ opensmtpd-5.4.5p2-fixed/configure.ac 2015-05-27 14:21:00.868764207 +0200 -@@ -2697,7 +2697,7 @@ - if(fd == NULL) - exit(1); - -- if ((rc = fprintf(fd ,"%s\n", _EVENT_VERSION)) <0) -+ if ((rc = fprintf(fd ,"%s\n", LIBEVENT_VERSION)) <0) - exit(1); - - exit(0); -@@ -2773,7 +2773,7 @@ - #include - #include - ]], [[ -- exit(strcmp(event_get_version(), _EVENT_VERSION) == 0 ? 0 : 1); -+ exit(strcmp(event_get_version(), LIBEVENT_VERSION) == 0 ? 0 : 1); - ]])], - [ - AC_MSG_RESULT([yes]) diff --git a/mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-setgroups-header.patch b/mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-setgroups-header.patch deleted file mode 100644 index 926c473636c6..000000000000 --- a/mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-setgroups-header.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -ru opensmtpd-5.4.4p1/smtpd/ca.c opensmtpd-5.4.4p1-modified/smtpd/ca.c ---- opensmtpd-5.4.4p1/smtpd/ca.c 2014-12-24 11:46:55.000000000 +0100 -+++ opensmtpd-5.4.4p1-modified/smtpd/ca.c 2015-01-08 17:09:37.845328217 +0100 -@@ -30,6 +30,7 @@ - #include - #include - #include -+#include - - #include - #include -diff -ru opensmtpd-5.4.4p1/smtpd/pony.c opensmtpd-5.4.4p1-modified/smtpd/pony.c ---- opensmtpd-5.4.4p1/smtpd/pony.c 2014-12-24 11:46:55.000000000 +0100 -+++ opensmtpd-5.4.4p1-modified/smtpd/pony.c 2015-01-08 17:09:47.117393942 +0100 -@@ -35,6 +35,7 @@ - #include - #include - #include -+#include - - #include "smtpd.h" - #include "log.h" -- cgit v1.2.3-65-gdbad