diff options
author | Patrick Lauer <patrick@gentoo.org> | 2014-02-24 06:05:44 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2014-02-24 06:05:44 +0000 |
commit | 13e24ddeec67463c8f9c1fc4cfc198b221758a64 (patch) | |
tree | ebb9f695dbf61a8b5b0edf2f15ff109cacd15f91 /dev-python/pyspf | |
parent | Bump #487804 #450658 (diff) | |
download | gentoo-2-13e24ddeec67463c8f9c1fc4cfc198b221758a64.tar.gz gentoo-2-13e24ddeec67463c8f9c1fc4cfc198b221758a64.tar.bz2 gentoo-2-13e24ddeec67463c8f9c1fc4cfc198b221758a64.zip |
Bump for #488474
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/pyspf')
-rw-r--r-- | dev-python/pyspf/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/pyspf/pyspf-2.0.8.ebuild | 28 |
2 files changed, 35 insertions, 2 deletions
diff --git a/dev-python/pyspf/ChangeLog b/dev-python/pyspf/ChangeLog index f5422346f0b0..5235a602e3f4 100644 --- a/dev-python/pyspf/ChangeLog +++ b/dev-python/pyspf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyspf -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyspf/ChangeLog,v 1.22 2013/04/05 08:31:58 idella4 Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyspf/ChangeLog,v 1.23 2014/02/24 06:05:44 patrick Exp $ + +*pyspf-2.0.8 (24 Feb 2014) + + 24 Feb 2014; Patrick Lauer <patrick@gentoo.org> +pyspf-2.0.8.ebuild: + Bump for #488474 *pyspf-2.0.7-r1 (05 Apr 2013) diff --git a/dev-python/pyspf/pyspf-2.0.8.ebuild b/dev-python/pyspf/pyspf-2.0.8.ebuild new file mode 100644 index 000000000000..35cab37dd252 --- /dev/null +++ b/dev-python/pyspf/pyspf-2.0.8.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyspf/pyspf-2.0.8.ebuild,v 1.1 2014/02/24 06:05:44 patrick Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit distutils-r1 + +DESCRIPTION="Python implementation of the Sender Policy Framework (SPF) protocol" +HOMEPAGE="http://pypi.python.org/pypi/pyspf" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/authres[${PYTHON_USEDEP}] + || ( dev-python/pydns:2 dev-python/pydns:0 )" +DEPEND="${DEPEND} + test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" + +python_test() { + pushd test &> /dev/null + "${PYTHON}" testspf.py || die + popd &> /dev/null +} |