From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 05F5513888F for ; Thu, 22 Oct 2015 06:39:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 997EDE081C; Thu, 22 Oct 2015 06:39:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 467EFE081C for ; Thu, 22 Oct 2015 06:39:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 69D1E3408EA for ; Thu, 22 Oct 2015 06:39:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1348F1377 for ; Thu, 22 Oct 2015 06:39:01 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1445495919.d104b6781e927c3ccbc338bb6dc292a289b4683e.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ssl-fetch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ssl-fetch/ssl-fetch-0.3.ebuild X-VCS-Directories: dev-python/ssl-fetch/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: d104b6781e927c3ccbc338bb6dc292a289b4683e X-VCS-Branch: master Date: Thu, 22 Oct 2015 06:39:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 01681e62-93fe-4042-b9f9-5be1f8946da6 X-Archives-Hash: b3b8e7bbfdacce1a47295727c4bc1901 commit: d104b6781e927c3ccbc338bb6dc292a289b4683e Author: Justin Lecher gentoo org> AuthorDate: Thu Oct 22 06:38:39 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Oct 22 06:38:39 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d104b678 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 gentoo.org> dev-python/ssl-fetch/ssl-fetch-0.3.ebuild | 8 ++++---- 1 file 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 be3ddb7..69af695 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 }