From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipdb/
Date: Fri, 10 Mar 2017 17:24:32 +0000 (UTC) [thread overview]
Message-ID: <1489166667.31643b55165f096193bf7a980289179e1a5d2689.patrick@gentoo> (raw)
commit: 31643b55165f096193bf7a980289179e1a5d2689
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 16:40:38 2017 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 17:24:27 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31643b55
dev-python/ipdb: Bump
Package-Manager: Portage-2.3.4, Repoman-2.3.2
dev-python/ipdb/Manifest | 1 +
dev-python/ipdb/ipdb-0.10.2.ebuild | 30 ++++++++++++++++++++++++++++++
2 files changed, 31 insertions(+)
diff --git a/dev-python/ipdb/Manifest b/dev-python/ipdb/Manifest
index fe46dd77f07..cd429f3c400 100644
--- a/dev-python/ipdb/Manifest
+++ b/dev-python/ipdb/Manifest
@@ -1,4 +1,5 @@
DIST ipdb-0.10.1.tar.gz 8595 SHA256 bb2948e726dbfb2687f4a582088b3f170b2556ba8e54ae1231c783c97e99ec87 SHA512 81dcc80651f7aab54287c2b6b7a4d7af1afa6962382dbf0dfa4d436fa0002522bb3c87c82133fd2d9cbb83a4e471b611afb6f7e7c6bd6db8b0685d94d651bce2 WHIRLPOOL 3c11655ad445c0c4f985b110ecbcfe75cda84ceb2fb3aa7a4133467bae7171181a451a45c24f061f89bd41340618a4bef41e583a98160503228cd877dba760b8
+DIST ipdb-0.10.2.tar.gz 8827 SHA256 fffc45b615e46eb75becbd88a30c69c75e7164ecd0122f2c78579b4dfa41b8c9 SHA512 5bae921cf7eb8beefd26a0b3ed0969b3435d86bbff7289dd874d0a011c63c36c50683a2a15191c3d6f5ddc1d41d4ae812bbdd831c972cfbbc54258085765acbd WHIRLPOOL a0a19a56afcbe12c0910dd0b58e234b757717848b5b1f9bb6368c2620aa5e03833530959701816924fb86f90b64f6da1162c5d964f838f5b87255158ef5506a8
DIST ipdb-0.8.1.zip 20522 SHA256 1763d1564113f5eb89df77879a8d3213273c4d7ff93dcb37a3070cdf0c34fd7c SHA512 515f282cb82ea989670a77956c02ac6433c125beba94c67b1eb90058c2427aac2345d02bb64b71a9593abbf7539d5ab0c20675bd24dde294b1e00544748da65c WHIRLPOOL 3e91eced09d5da6a0fc5442a6df97947fdd018bf73cd52ce0f4800e12f0a1c92f3168c3a171395e601669238b9cbebae0507cce60ca2db02a7f2610ffd73afc2
DIST ipdb-0.8.2.tar.gz 13623 SHA256 9ac7193658c787321c79b366a3f415f968a215b4d7647508311415944762b727 SHA512 7b1f53787adffb3342f08fc55934e2e0188a990da1ec5661caae9879bb10d1678fd5f6e75268eb9125d5db648416328ae6937af8fbe097475a21751eb94f6624 WHIRLPOOL dee992900579ac68c14dcd171442541d8dcc24cccdc28b321e82d7b3b8ce3617fac7837a15db82f346717b3ac50aed166cd87985d1bac2be28c09629e31a6764
DIST ipdb-0.8.zip 20204 SHA256 0d4a33f38e667a0c80ec1a5a0e468fe58e5cdc61cb8f4077b1024b85fe7b7117 SHA512 8d0c510a80efeb3ca9a87e4a573bbd0d75629789dec33ebd135f8c9285a276af2cfe5b6628d0bb121a3dbf9e6f248a19a341d9b475b7bfaa15bb9bdca0584dde WHIRLPOOL 376a2c872ae45e943fb99e8cc201f8d8e2a3ebcdc84dde5d1857269170ab6379d8eb2106567484d4eb2454a5c38e6c355d7a136cf74fab40b907fcabef2d6b8f
diff --git a/dev-python/ipdb/ipdb-0.10.2.ebuild b/dev-python/ipdb/ipdb-0.10.2.ebuild
new file mode 100644
index 00000000000..362814e2d21
--- /dev/null
+++ b/dev-python/ipdb/ipdb-0.10.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="IPython-enabled pdb"
+HOMEPAGE="https://pypi.python.org/pypi/ipdb"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ app-arch/unzip
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep 'dev-python/backports-shutil_get_terminal_size[${PYTHON_USEDEP}]' python2_7)
+ "
+
+DOCS=( HISTORY.txt )
+
+python_test() {
+ esetup.py test
+}
next reply other threads:[~2017-03-10 17:24 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-10 17:24 Patrick Lauer [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-11-24 14:23 [gentoo-commits] repo/gentoo:master commit in: dev-python/ipdb/ Michał Górny
2023-10-29 19:52 Michał Górny
2023-06-21 7:16 Arthur Zamarin
2023-04-11 18:39 Michał Górny
2023-04-11 18:14 Arthur Zamarin
2023-03-09 17:00 Michał Górny
2023-01-13 14:50 Sam James
2022-12-14 6:31 Michał Górny
2022-12-13 19:53 Arthur Zamarin
2022-12-13 19:53 Arthur Zamarin
2022-12-13 19:53 Arthur Zamarin
2022-11-21 19:32 Arthur Zamarin
2022-08-30 6:26 Yixun Lan
2022-08-22 17:33 WANG Xuerui
2022-07-10 18:52 Michał Górny
2022-07-10 16:56 Sam James
2022-06-07 12:00 Andrew Ammerlaan
2021-08-16 6:13 Michał Górny
2021-08-15 7:47 Michał Górny
2021-07-12 6:41 Sam James
2021-07-11 10:14 Georgy Yakovlev
2021-07-03 6:32 Michał Górny
2021-07-03 6:25 Agostino Sarubbo
2021-07-03 6:22 Agostino Sarubbo
2021-07-03 6:17 Agostino Sarubbo
2021-07-01 18:39 Michał Górny
2021-06-02 23:14 Michał Górny
2021-05-26 20:39 Michał Górny
2021-04-06 21:26 Michał Górny
2021-04-06 19:53 Sam James
2021-04-06 19:47 Sam James
2021-04-05 19:01 Thomas Deutschmann
2021-03-16 12:23 Michał Górny
2021-03-08 18:59 Michał Górny
2021-03-03 11:40 Michał Górny
2021-03-03 8:07 Michał Górny
2020-11-17 17:43 Michał Górny
2020-10-16 18:22 Michał Górny
2020-04-23 8:39 Michał Górny
2020-03-17 7:23 Michał Górny
2018-01-04 21:50 Michał Górny
2017-12-28 12:29 Sergei Trofimovich
2017-12-02 20:55 Mike Gilbert
2017-11-30 19:02 Thomas Deutschmann
2017-10-01 8:57 Patrick Lauer
2017-08-25 0:14 Matt Thode
2017-06-23 12:14 Alexis Ballier
2017-05-02 9:48 Michał Górny
2017-04-18 14:57 Kacper Kowalik
2017-01-21 17:16 Agostino Sarubbo
2016-10-28 20:56 Patrick Lauer
2016-06-29 10:33 Patrick Lauer
2016-03-02 10:46 Patrick Lauer
2016-02-18 19:47 Patrick Lauer
2015-12-17 16:28 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=1489166667.31643b55165f096193bf7a980289179e1a5d2689.patrick@gentoo \
--to=patrick@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