diff options
author | 2011-04-25 18:42:06 +0000 | |
---|---|---|
committer | 2011-04-25 18:42:06 +0000 | |
commit | 0da8e53c665e62e42f64c605eb3832120149beb2 (patch) | |
tree | dd6731f62d4f2aa00b2adc0ab5c12e34483c3134 /net-mail | |
parent | Fix deprecation warnings. (diff) | |
download | gentoo-2-0da8e53c665e62e42f64c605eb3832120149beb2.tar.gz gentoo-2-0da8e53c665e62e42f64c605eb3832120149beb2.tar.bz2 gentoo-2-0da8e53c665e62e42f64c605eb3832120149beb2.zip |
version bump - bug #364803
(Portage version: 2.1.9.46/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/getmail/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/getmail/getmail-4.20.2.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/net-mail/getmail/ChangeLog b/net-mail/getmail/ChangeLog index e42dfc84211a..18ac96acf917 100644 --- a/net-mail/getmail/ChangeLog +++ b/net-mail/getmail/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/getmail # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.183 2011/04/25 14:35:47 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.184 2011/04/25 18:42:06 eras Exp $ + +*getmail-4.20.2 (25 Apr 2011) + + 25 Apr 2011; Eray Aslan <eras@gentoo.org> +getmail-4.20.2.ebuild: + version bump - bug #364803 25 Apr 2011; Raúl Porcel <armin76@gentoo.org> getmail-4.9.1.ebuild, getmail-4.9.2.ebuild, getmail-4.13.0.ebuild, getmail-4.16.0-r1.ebuild, diff --git a/net-mail/getmail/getmail-4.20.2.ebuild b/net-mail/getmail/getmail-4.20.2.ebuild new file mode 100644 index 000000000000..bbd26db62a9a --- /dev/null +++ b/net-mail/getmail/getmail-4.20.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.20.2.ebuild,v 1.1 2011/04/25 18:42:06 eras Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +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" + +LICENSE="GPL-2" +SLOT="4" +KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~ppc-macos ~x86-macos ~x64-solaris" +IUSE="" + +DEPEND="" +RDEPEND="" +RESTRICT_PYTHON_ABIS="3.*" + +PYTHON_MODNAME="getmailcore" + +src_prepare() { + sed -i -e "s,'getmail-%s' % __version__,'${PF}'," \ + -e "/docs\/COPYING/d" "${S}"/setup.py || die + distutils_src_prepare +} |