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 7D4761386F1 for ; Sun, 9 Aug 2015 12:52:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B4C6141CD; Sun, 9 Aug 2015 12:52:55 +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 85199141CD for ; Sun, 9 Aug 2015 12:52:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 89611340A66 for ; Sun, 9 Aug 2015 12:52:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4007C147 for ; Sun, 9 Aug 2015 12:52:52 +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: <1439124726.7c0a3f03210370576741a6c30c1962dfe7831995.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ptpython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ptpython/Manifest dev-python/ptpython/ptpython-0.21.ebuild X-VCS-Directories: dev-python/ptpython/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 7c0a3f03210370576741a6c30c1962dfe7831995 X-VCS-Branch: master Date: Sun, 9 Aug 2015 12:52:52 +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: bd81baf8-c595-49ca-9fab-93fdfc35ad3c X-Archives-Hash: 6cce7fbe5d821dc02fc6ba2bdb2b1968 commit: 7c0a3f03210370576741a6c30c1962dfe7831995 Author: Justin Lecher gentoo org> AuthorDate: Sun Aug 9 12:51:03 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Aug 9 12:52:06 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c0a3f03 dev-python/ptpython: Version Bump Package-Manager: portage-2.2.20 Signed-off-by: Justin Lecher gentoo.org> dev-python/ptpython/Manifest | 1 + dev-python/ptpython/ptpython-0.21.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/dev-python/ptpython/Manifest b/dev-python/ptpython/Manifest index e55979d..561fdfc 100644 --- a/dev-python/ptpython/Manifest +++ b/dev-python/ptpython/Manifest @@ -1 +1,2 @@ DIST ptpython-0.20.tar.gz 29618 SHA256 a6ebe6f6e496693c69f460e46296492832b47997a0feea069b386cf9bee5bc4f SHA512 2ff701d65f449676bd51cad6287723497a6ff8dd2dda5daf992125892c9d1131bfce7c648e8d53260e9d9a33d648ed1b97bb32f60253c106e6f96a58dcece848 WHIRLPOOL c5ab855f747f785c5c29f54346eac6285779dfea054073caea4769e6a92593e48fc84fc2ed69cfcc6f44b17e1323f646c8a6070c892bcf1caf66f128ea748ff6 +DIST ptpython-0.21.tar.gz 27410 SHA256 37aad517cf9d55e567697fe001bc2d07e7013753218537f78425c2bac1181a0b SHA512 d85c7167932cfc033324bf62e96b27ee9296eab92fc1f3ce9e4afac5af6f4e5bfaee1950fcdc76121acd7176efe79c61d6cb2b06a59e7a9a5c5c34a1b41a64d1 WHIRLPOOL 5290c0389893c13c8f4a69a4726faea984be62748ce0beff400e7b7eb8ef5fe1a352f0e37a2afc991d869d69c9afeaaee3c76a00c1157037bd35227d1837285f diff --git a/dev-python/ptpython/ptpython-0.21.ebuild b/dev-python/ptpython/ptpython-0.21.ebuild new file mode 100644 index 0000000..b5b10e0 --- /dev/null +++ b/dev-python/ptpython/ptpython-0.21.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4} ) + +inherit distutils-r1 eutils + +DESCRIPTION="Python REPL build on top of prompt_toolkit" +HOMEPAGE="https://pypi.python.org/pypi/ptpython/ https://github.com/jonathanslenders/ptpython" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + >=dev-python/prompt_toolkit-0.46[${PYTHON_USEDEP}] + >=dev-python/jedi-0.9.0[${PYTHON_USEDEP}] + dev-python/docopt[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] +" + +pkg_postinst() { + optfeature "ipython enhanced version" dev-python/ipython +}