summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2005-05-24 14:15:57 +0000
committerAndrej Kacian <ticho@gentoo.org>2005-05-24 14:15:57 +0000
commit461c91c7bbeedbce5eb973144545048ace11016e (patch)
treef9bcfb0f90ceeb24b5e06841f7eb612ba8473913 /net-mail
parentStable on x86 (diff)
downloadgentoo-2-461c91c7bbeedbce5eb973144545048ace11016e.tar.gz
gentoo-2-461c91c7bbeedbce5eb973144545048ace11016e.tar.bz2
gentoo-2-461c91c7bbeedbce5eb973144545048ace11016e.zip
Removed 4.3.9, as it was faulty.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/getmail/ChangeLog6
-rw-r--r--net-mail/getmail/files/digest-getmail-4.3.91
-rw-r--r--net-mail/getmail/files/getmail-4.3.9-fix.patch11
-rw-r--r--net-mail/getmail/getmail-4.3.9.ebuild59
4 files changed, 5 insertions, 72 deletions
diff --git a/net-mail/getmail/ChangeLog b/net-mail/getmail/ChangeLog
index 6bcfe35eba43..97ab279704ef 100644
--- a/net-mail/getmail/ChangeLog
+++ b/net-mail/getmail/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-mail/getmail
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.74 2005/05/19 20:47:08 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.75 2005/05/24 14:15:57 ticho Exp $
+
+ 24 May 2005; Andrej Kacian <ticho@gentoo.org>
+ -files/getmail-4.3.9-fix.patch, -getmail-4.3.9.ebuild:
+ Removed 4.3.9, as it was faulty.
*getmail-4.3.10 (19 May 2005)
diff --git a/net-mail/getmail/files/digest-getmail-4.3.9 b/net-mail/getmail/files/digest-getmail-4.3.9
deleted file mode 100644
index dbd976f2a096..000000000000
--- a/net-mail/getmail/files/digest-getmail-4.3.9
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3689bbe74d116a53a6ae0d66a31cbdf5 getmail-4.3.9.tar.gz 134255
diff --git a/net-mail/getmail/files/getmail-4.3.9-fix.patch b/net-mail/getmail/files/getmail-4.3.9-fix.patch
deleted file mode 100644
index dada72ac537c..000000000000
--- a/net-mail/getmail/files/getmail-4.3.9-fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -bur getmail-4.3.9-orig/getmailcore/message.py getmail-4.3.9/getmailcore/message.py
---- getmail-4.3.9-orig/getmailcore/message.py 2005-05-19 01:50:01.000000000 +0200
-+++ getmail-4.3.9/getmailcore/message.py 2005-05-19 02:53:36.000000000 +0200
-@@ -13,6 +13,7 @@
- import email
- import email.Errors
- import email.Utils
-+import email.Parser
- from email.Generator import Generator
-
- from exceptions import *
diff --git a/net-mail/getmail/getmail-4.3.9.ebuild b/net-mail/getmail/getmail-4.3.9.ebuild
deleted file mode 100644
index 72f00e4eb0c5..000000000000
--- a/net-mail/getmail/getmail-4.3.9.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.3.9.ebuild,v 1.2 2005/05/19 01:09:11 ticho Exp $
-
-inherit distutils
-
-IUSE=""
-DESCRIPTION="A POP3 mail retriever with reliable Maildir and mbox delivery"
-HOMEPAGE="http://pyropus.ca/software/getmail/"
-SRC_URI="http://pyropus.ca/software/getmail/old-versions/${P}.tar.gz"
-
-SLOT="4"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64"
-
-DEPEND=">=dev-lang/python-2.3.3"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- epatch ${FILESDIR}/${P}-fix.patch || die "epatch failed"
- if has_version "=dev-lang/python-2.4*" ; then
- sed -i -e "s:strict=False::" getmailcore/message.py
- fi
-}
-
-src_compile() {
- distutils_src_compile
-}
-
-src_install() {
- distutils_src_install
-
- if has_version "=net-mail/getmail-3*" ; then
- mv ${D}/usr/bin/getmail ${D}/usr/bin/getmail4
- mv ${D}/usr/bin/getmail_maildir ${D}/usr/bin/getmail_maildir4
- mv ${D}/usr/bin/getmail_mbox ${D}/usr/bin/getmail_mbox4
- fi
-
- # handle docs the gentoo way
- if [ ${P} != ${PF} ]; then
- mv ${D}/usr/share/doc/${P} ${D}/usr/share/doc/${PF}
- fi
-
- dodir /usr/share/doc/${PF}/html
- mv ${D}/usr/share/doc/${PF}/*.html ${D}/usr/share/doc/${PF}/*.css ${D}/usr/share/doc/${PF}/html
- gzip --silent ${D}/usr/share/doc/${PF}/*
-}
-
-pkg_postinst() {
- if has_version "=net-mail/getmail-3*" ; then
- echo
- ewarn "An already installed instance of getmail v3 was detected. In order to"
- ewarn "co-exist with it the three main scripts of getmail v4 were renamed to"
- ewarn "getmail4, getmail_maildir4, getmail_mbox4."
- echo
- fi
-}