diff options
author | Tim Harder <radhermit@gentoo.org> | 2015-06-19 06:00:54 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2015-06-19 06:00:54 +0000 |
commit | 51f2f3686e4aba5245f8dad8e47a002ab95f69e5 (patch) | |
tree | 1ae14d090fa1f7c0458052ebb16846a0b68af18e /net-mail | |
parent | Version bump. (diff) | |
download | gentoo-2-51f2f3686e4aba5245f8dad8e47a002ab95f69e5.tar.gz gentoo-2-51f2f3686e4aba5245f8dad8e47a002ab95f69e5.tar.bz2 gentoo-2-51f2f3686e4aba5245f8dad8e47a002ab95f69e5.zip |
Version bump.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/getmail/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/getmail/getmail-4.48.0.ebuild | 25 |
2 files changed, 31 insertions, 1 deletions
diff --git a/net-mail/getmail/ChangeLog b/net-mail/getmail/ChangeLog index d7228dfd9bb4..51b099ba7938 100644 --- a/net-mail/getmail/ChangeLog +++ b/net-mail/getmail/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/getmail # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.240 2015/04/08 18:18:33 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.241 2015/06/19 06:00:54 radhermit Exp $ + +*getmail-4.48.0 (19 Jun 2015) + + 19 Jun 2015; Tim Harder <radhermit@gentoo.org> +getmail-4.48.0.ebuild: + Version bump. 08 Apr 2015; Michał Górny <mgorny@gentoo.org> getmail-4.46.0.ebuild: Drop old Python implementations diff --git a/net-mail/getmail/getmail-4.48.0.ebuild b/net-mail/getmail/getmail-4.48.0.ebuild new file mode 100644 index 000000000000..7065a0278041 --- /dev/null +++ b/net-mail/getmail/getmail-4.48.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.48.0.ebuild,v 1.1 2015/06/19 06:00:54 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="ssl?" + +inherit distutils-r1 + +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="~amd64 ~ppc ~x86 ~ppc-macos ~x86-macos ~x64-solaris" +IUSE="ssl" + +python_prepare_all() { + sed -i -e "s,'getmail-%s' % __version__,'${PF}'," \ + -e "/docs\/COPYING/d" "${S}"/setup.py || die + + distutils-r1_python_prepare_all +} |