diff options
author | Torsten Veller <tove@gentoo.org> | 2007-01-08 22:31:02 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2007-01-08 22:31:02 +0000 |
commit | 07786a7f4c9afdb02300a5cb845e2dff54388253 (patch) | |
tree | d927c6e676cc0a4381a9cff43d62170e3ce4440f /net-mail/fetchmail/files | |
parent | Removed old ebuilds and unused patches. Removed all unneeded keywords from fe... (diff) | |
download | gentoo-2-07786a7f4c9afdb02300a5cb845e2dff54388253.tar.gz gentoo-2-07786a7f4c9afdb02300a5cb845e2dff54388253.tar.bz2 gentoo-2-07786a7f4c9afdb02300a5cb845e2dff54388253.zip |
Removed old ebuilds and unused patches. Removed all unneeded keywords from fetchmail-6.3.4.
(Portage version: 2.1.2_rc4-r6)
(Signed Manifest commit)
Diffstat (limited to 'net-mail/fetchmail/files')
4 files changed, 0 insertions, 50 deletions
diff --git a/net-mail/fetchmail/files/digest-fetchmail-6.3.5 b/net-mail/fetchmail/files/digest-fetchmail-6.3.5 deleted file mode 100644 index 25509b9e4b71..000000000000 --- a/net-mail/fetchmail/files/digest-fetchmail-6.3.5 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 e8dc5cd8e80677bb60e397d6171d12ec fetchmail-6.3.5.tar.bz2 1237821 -RMD160 3032622b8e3d2171bc7d94357414ccc69bfa9f0d fetchmail-6.3.5.tar.bz2 1237821 -SHA256 0af641629fc1b7ee2561eccd5ecd0efea20fea935656d155886061c530114f2b fetchmail-6.3.5.tar.bz2 1237821 diff --git a/net-mail/fetchmail/files/digest-fetchmail-6.3.5-r1 b/net-mail/fetchmail/files/digest-fetchmail-6.3.5-r1 deleted file mode 100644 index 25509b9e4b71..000000000000 --- a/net-mail/fetchmail/files/digest-fetchmail-6.3.5-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 e8dc5cd8e80677bb60e397d6171d12ec fetchmail-6.3.5.tar.bz2 1237821 -RMD160 3032622b8e3d2171bc7d94357414ccc69bfa9f0d fetchmail-6.3.5.tar.bz2 1237821 -SHA256 0af641629fc1b7ee2561eccd5ecd0efea20fea935656d155886061c530114f2b fetchmail-6.3.5.tar.bz2 1237821 diff --git a/net-mail/fetchmail/files/fetchmail-6.3.5-preserve-logging-fd.patch b/net-mail/fetchmail/files/fetchmail-6.3.5-preserve-logging-fd.patch deleted file mode 100644 index faafcb7f3598..000000000000 --- a/net-mail/fetchmail/files/fetchmail-6.3.5-preserve-logging-fd.patch +++ /dev/null @@ -1,17 +0,0 @@ -Don't close the logfile if you succeed in opening it. - -Signed-off-by: Brian Harring <ferringb@gmail.com> -Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> - ---- fetchmail-6.3.5-old/daemon.c 2006-08-07 02:22:40.000000000 -0700 -+++ fetchmail-6.3.5/daemon.c 2006-10-10 00:54:04.000000000 -0700 -@@ -218,8 +218,7 @@ - if ((logfd = open(logfile, O_CREAT|O_WRONLY|O_APPEND, 0666)) < 0) { /* stdout */ - report(stderr, "cannot open %s: %s\n", logfile, strerror(errno)); - return PS_IOERR; -- } else -- logfd = 0; /* use /dev/null */ -+ } - } else - logfd = 0; /* this is /dev/null */ - diff --git a/net-mail/fetchmail/files/patch-6.3.2.1-fix-netrc-SIGSEGV.diff b/net-mail/fetchmail/files/patch-6.3.2.1-fix-netrc-SIGSEGV.diff deleted file mode 100644 index 2b6d112b2dde..000000000000 --- a/net-mail/fetchmail/files/patch-6.3.2.1-fix-netrc-SIGSEGV.diff +++ /dev/null @@ -1,27 +0,0 @@ -Craig Leres identified a problem that makes fetchmail 6.3.2 (only this -version) crash if the .netrc file does not contain a password for a -particular account. - -This patch is mostly Craig Leres' work has been committed to the -SVN repository and should be applied to fetchmail 6.3.2 on all sites -that plan to use netrc files: - -Index: netrc.c -=================================================================== ---- netrc.c (Revision 4683) -+++ netrc.c (Revision 4684) -@@ -314,8 +314,10 @@ - free_netrc(netrc_entry *a) { - while(a) { - netrc_entry *n = a->next; -- memset(a->password, 0x55, strlen(a->password)); -- xfree(a->password); -+ if (a->password != NULL) { -+ memset(a->password, 0x55, strlen(a->password)); -+ free(a->password); -+ } - xfree(a->login); - xfree(a->host); - xfree(a); - -Sorry for the inconvenience. -- Matthias Andree, 2006-01-30 |