diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-10-22 08:38:39 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-10-22 08:38:39 +0200 |
commit | d104b6781e927c3ccbc338bb6dc292a289b4683e (patch) | |
tree | 148afaeffd3d0bf5b0569d935e9d1224d53a082a /dev-python/ssl-fetch | |
parent | sys-devel/distcc: Remove old. Fix one type. (diff) | |
download | gentoo-d104b6781e927c3ccbc338bb6dc292a289b4683e.tar.gz gentoo-d104b6781e927c3ccbc338bb6dc292a289b4683e.tar.bz2 gentoo-d104b6781e927c3ccbc338bb6dc292a289b4683e.zip |
dev-python/ssl-fetch: Add python3.5 support
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=563594
Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/ssl-fetch')
-rw-r--r-- | dev-python/ssl-fetch/ssl-fetch-0.3.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-python/ssl-fetch/ssl-fetch-0.3.ebuild b/dev-python/ssl-fetch/ssl-fetch-0.3.ebuild index be3ddb7d4af8..69af695f9ad4 100644 --- a/dev-python/ssl-fetch/ssl-fetch-0.3.ebuild +++ b/dev-python/ssl-fetch/ssl-fetch-0.3.ebuild @@ -2,9 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" +EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy ) inherit distutils-r1 @@ -30,7 +30,7 @@ RDEPEND="${DEPEND} " pkg_postinst() { - einfo + echo einfo "This is beta software." einfo "The APIs it installs should be considered unstable" einfo "and are subject to change in these early versions." @@ -38,5 +38,5 @@ pkg_postinst() { einfo "Please file any enhancement requests, or bugs" einfo "at https://github.com/dol-sen/ssl-fetch/issues" einfo "I am also on IRC @ #gentoo-portage, #gentoo-keys,... of the Freenode network" - einfo + echo } |