public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrey Grozin" <grozin@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ptpython/
Date: Fri,  1 Apr 2016 16:37:32 +0000 (UTC)	[thread overview]
Message-ID: <1459528046.a75a9351e27733973b7b8e849ffa1ffaa49fbddf.grozin@gentoo> (raw)

commit:     a75a9351e27733973b7b8e849ffa1ffaa49fbddf
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  1 16:27:26 2016 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Fri Apr  1 16:27:26 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a75a9351

dev-python/ptpython: bump to 0.32

Package-Manager: portage-2.2.28

 dev-python/ptpython/Manifest             |  1 +
 dev-python/ptpython/ptpython-0.32.ebuild | 35 ++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/dev-python/ptpython/Manifest b/dev-python/ptpython/Manifest
index b9536e6..74440be 100644
--- a/dev-python/ptpython/Manifest
+++ b/dev-python/ptpython/Manifest
@@ -5,3 +5,4 @@ DIST ptpython-0.24.tar.gz 41967 SHA256 6dfb728183e92447de5b4de4ac1f6caa07c2ae29e
 DIST ptpython-0.25.tar.gz 42214 SHA256 6df30f3cde8db140daaf0243b54030e9d9acece8c2c424215edd90d437c257ae SHA512 200ad3bfc709b7c2f6ee3d00d4e42f7484b9f13f84b9ce94ea49e52d866acaf5e44bdd057732df296c907ce2686e08a1be85385a1ffd05a4f35d50a9248498f2 WHIRLPOOL c1dc0cbb4e5fa3ea11714e4b1016d076573c15734c49bb013e2bff4b23802a79e7cebb84c81a4762cd68dc4fbb0a5e98f8eea7e8a4a955b3744dcc027226f210
 DIST ptpython-0.28.tar.gz 42771 SHA256 f4bc7c4b129925be316c60669b5c0a5cc97edc0fb381fd007aa0ecc81758ee1d SHA512 41d58dbf8f5428f7892480caf595e5a5a82a22ec2b44376518917cb7364592f38d39a32fa979b9afceca5517dc37de38887438cf91aedd43ac128f9de77fd424 WHIRLPOOL 5b2cd3f71c007065245cb6465812846145774e944583bc50407765612a383d74a432f75ac1686dbf2446292c0d4958878d9ea162a4fa7d0ff8777e69687c8580
 DIST ptpython-0.29.tar.gz 42867 SHA256 2156a2b4c8cbe1ae2299d1c6a6077d6bbffd7579c4803c697d4dd4c39a566cb2 SHA512 9a1c5d4f269ddc1afe9ccf958610232bb4c2ba9abb2f29de8cd5c7beb36034e222d5eb65bab638064e4d56d20f850fe11890b5d280dae510dade6d9e3e91b16a WHIRLPOOL b71acf9a5f9364471aa5781c4a758adb5440f67976642a788c1694f68a374b09f05ff7a3cb61a8b91c2d5ce2d351607a0065176d59706d5eed5da7269453e3f6
+DIST ptpython-0.32.tar.gz 42967 SHA256 0dccac7b3f0ed6efe206ee61c4042950e52b4bee05680c499472115681d3efe8 SHA512 85005a400789b6d861e708c5fcea1e93e414576927a933ff22dc5d2de087cb81c30d5c5acb93a4d8d62536ca3c6a036f83959a531ba4707c49a1934c7e5b38ba WHIRLPOOL 15e36a0df88854632d68b4401c357160e4c089cb9155e567c92035dbfa05278fff4d1aa6bde7351123672e89c552f383b6167fd014f0ef0a8cd9e132c1050b1d

diff --git a/dev-python/ptpython/ptpython-0.32.ebuild b/dev-python/ptpython/ptpython-0.32.ebuild
new file mode 100644
index 0000000..e09cd21
--- /dev/null
+++ b/dev-python/ptpython/ptpython-0.32.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+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/docopt[${PYTHON_USEDEP}]
+	>=dev-python/jedi-0.9.0[${PYTHON_USEDEP}]
+	>=dev-python/prompt_toolkit-0.58[${PYTHON_USEDEP}]
+	dev-python/pygments[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+# Not included
+RESTRICT=test
+
+python_test() {
+	"${PYTHON}" tests/run_tests.py || die
+}


             reply	other threads:[~2016-04-01 16:37 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-01 16:37 Andrey Grozin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-10-16 18:22 [gentoo-commits] repo/gentoo:master commit in: dev-python/ptpython/ Michał Górny
2020-03-28 17:07 Michał Górny
2019-12-29 13:06 David Seifert
2019-12-12 19:42 Aaron Bauman
2018-07-21  0:06 Mikle Kolyada
2018-06-24  9:40 Mikle Kolyada
2017-03-30 18:19 Andrey Grozin
2016-10-19 23:22 Patrice Clement
2016-10-19 23:22 Patrice Clement
2016-06-07 21:46 Patrice Clement
2016-02-25  8:21 Justin Lecher
2016-01-07  9:28 Justin Lecher
2015-10-31 10:25 Justin Lecher
2015-09-24 11:50 Justin Lecher
2015-09-06 18:00 Justin Lecher
2015-08-09 12:52 Justin Lecher
2015-08-09 12:52 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1459528046.a75a9351e27733973b7b8e849ffa1ffaa49fbddf.grozin@gentoo \
    --to=grozin@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox