From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cmd2/
Date: Tue, 01 Jul 2025 02:35:29 +0000 (UTC) [thread overview]
Message-ID: <1751337181.941448682f0531426b5f5a48588a3923e9956dbf.mgorny@gentoo> (raw)
commit: 941448682f0531426b5f5a48588a3923e9956dbf
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 1 02:32:48 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jul 1 02:33:01 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94144868
dev-python/cmd2: Bump to 2.7.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/cmd2/Manifest | 1 +
dev-python/cmd2/cmd2-2.7.0.ebuild | 57 +++++++++++++++++++++++++++++++++++++++
2 files changed, 58 insertions(+)
diff --git a/dev-python/cmd2/Manifest b/dev-python/cmd2/Manifest
index 5bc5e53682d1..80e728ff1b52 100644
--- a/dev-python/cmd2/Manifest
+++ b/dev-python/cmd2/Manifest
@@ -1,3 +1,4 @@
DIST cmd2-2.5.11.tar.gz 883350 BLAKE2B 37fb197ff085016152bc33f243852afe71c5cca303bacf02bdee9e1cfa2fa56ad2714321f046b7e501cb1602208f7b8fadaa4454ee349d2c6b5dcf04c31c3df9 SHA512 acf3d339d33822827be85b23491b99c33556bbd1d67715450c19c8877f7b9565253a402e57afd95bf02bb5edf8ec09f9fe7c141e01d81010286a5cfabca27909
DIST cmd2-2.6.1.tar.gz 888293 BLAKE2B 693495ac2ac63b06b56195ffa8ce2887a78b89d8219a9a2c094004aeb52d260a85e567382a9434418b66df8ec2fcff82bdf0ae56899e6812043e19646ade08b3 SHA512 241ce183d5802f8c11bd68362a025a75a611978acc3592e5ef752faf84fab2af24b8dedea894c1c998253159ccf5c68def779e3daf87cd01bb55f11de524527e
DIST cmd2-2.6.2.tar.gz 592373 BLAKE2B 917ecd684c60c0a6c1b273ef52fa1e317f71522dfd6fc8a9d2c1ee7fa28788b734c6536a9481ac56ef8409002f503837ae51191478a68e364c4780e9feb4b8e8 SHA512 75531dca561427eef259765a55c6385401edd8bc9d5c4cf08ab97e53e118334be932ee5c59f9e1fcd529a7a5f7416e654ee1d618d91623068ef21bcc66dcfdd7
+DIST cmd2-2.7.0.tar.gz 593131 BLAKE2B 2488c3c9d8e770fca8046fbd5d9537349cfd2b45cb32ed5775cd0b451ae25425909fadb7414d202aa52587e691e2ef8a39b3fe691e345497a0523e17281228df SHA512 6d2e7f3c9e125782da8983fb27a53d5db0c0cc35a8c86eb129961596ff3ff5751622894ee8fb355b0330de3b2cbb7cf18eddaba2ad0b8781e80b479cf53a1c89
diff --git a/dev-python/cmd2/cmd2-2.7.0.ebuild b/dev-python/cmd2/cmd2-2.7.0.ebuild
new file mode 100644
index 000000000000..5b9fc1eba1ff
--- /dev/null
+++ b/dev-python/cmd2/cmd2-2.7.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit distutils-r1 optfeature virtualx pypi
+
+DESCRIPTION="Extra features for standard library's cmd module"
+HOMEPAGE="
+ https://github.com/python-cmd2/cmd2/
+ https://pypi.org/project/cmd2/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ >=dev-python/pyperclip-1.8[${PYTHON_USEDEP}]
+ >=dev-python/rich-argparse-1.7.1[${PYTHON_USEDEP}]
+ >=dev-python/wcwidth-0.2.10[${PYTHON_USEDEP}]
+"
+# pyperclip uses clipboard backends in the following preference order:
+# pygtk, xclip, xsel, klipper, qtpy, pyqt5, pyqt4.
+# klipper is known to be broken in Xvfb, and therefore causes test
+# failures. to avoid them, we must ensure that one of the backends
+# preferred to it is available (i.e. xclip or xsel).
+BDEPEND="
+ dev-python/setuptools-scm[${PYTHON_USEDEP}]
+ test? (
+ || (
+ x11-misc/xclip
+ x11-misc/xsel
+ )
+ )
+"
+
+EPYTEST_PLUGINS=( pytest-{mock,rerunfailures} )
+distutils_enable_tests pytest
+
+src_test() {
+ # tests rely on very specific text wrapping...
+ local -x COLUMNS=80
+ virtx distutils-r1_src_test
+}
+
+python_test() {
+ # TODO: tests_isolated?
+ nonfatal epytest -o addopts= --reruns=5 tests || die
+}
+
+pkg_postinst() {
+ optfeature "IPython shell integration" dev-python/ipython
+}
next reply other threads:[~2025-07-01 2:35 UTC|newest]
Thread overview: 178+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-01 2:35 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-27 4:11 [gentoo-commits] repo/gentoo:master commit in: dev-python/cmd2/ Michał Górny
2025-09-18 6:21 Michał Górny
2025-09-17 3:31 Michał Górny
2025-07-20 15:53 Sam James
2025-07-12 11:42 Michał Górny
2025-07-12 11:33 Michał Górny
2025-07-03 3:17 Sam James
2025-07-03 2:19 Sam James
2025-07-02 0:20 Jakov Smolić
2025-07-01 18:15 Arthur Zamarin
2025-07-01 15:47 Arthur Zamarin
2025-07-01 4:50 Sam James
2025-07-01 4:43 Sam James
2025-06-27 2:26 Michał Górny
2025-06-27 2:26 Michał Górny
2025-06-09 4:28 Michał Górny
2025-05-31 18:36 Sam James
2025-05-31 18:36 Sam James
2025-02-15 8:19 Michał Górny
2025-02-15 7:44 Arthur Zamarin
2025-02-01 11:58 Michał Górny
2025-01-26 3:06 Michał Górny
2025-01-18 7:20 Michał Górny
2025-01-04 12:40 Michał Górny
2025-01-04 12:28 Sam James
2024-12-18 8:07 Michał Górny
2024-12-07 11:36 Michał Górny
2024-12-07 10:35 Arthur Zamarin
2024-11-23 7:10 Michał Górny
2024-11-15 4:59 Michał Górny
2024-11-15 4:59 Michał Górny
2024-11-14 4:39 Michał Górny
2024-11-07 6:45 Michał Górny
2024-11-06 7:11 Michał Górny
2024-11-06 7:11 Michał Górny
2024-11-04 5:04 Michał Górny
2024-11-03 3:52 Michał Górny
2024-10-24 4:32 Michał Górny
2024-06-11 13:40 Michał Górny
2023-05-31 19:23 Arthur Zamarin
2023-04-06 13:25 Michał Górny
2023-04-06 8:06 Arthur Zamarin
2023-03-16 3:47 Michał Górny
2023-01-28 7:39 Michał Górny
2022-08-13 11:53 Arthur Zamarin
2022-07-14 7:31 Michał Górny
2022-05-28 21:12 Jakov Smolić
2022-05-27 19:45 Michał Górny
2022-05-27 9:07 Jakov Smolić
2022-05-21 13:49 Michał Górny
2022-04-26 1:51 Sam James
2022-04-15 8:22 Arthur Zamarin
2022-03-26 18:14 Arthur Zamarin
2022-03-26 17:34 Arthur Zamarin
2022-02-23 8:12 Michał Górny
2021-12-13 8:09 Michał Górny
2021-12-13 5:42 Sam James
2021-11-29 22:28 Michał Górny
2021-11-22 23:04 Michał Górny
2021-11-19 9:03 Michał Górny
2021-11-12 9:40 Michał Górny
2021-10-16 5:59 Michał Górny
2021-10-15 22:43 Sam James
2021-09-14 21:35 Michał Górny
2021-08-07 14:52 Michał Górny
2021-08-07 14:43 Sam James
2021-07-12 22:46 Michał Górny
2021-07-12 21:50 Sam James
2021-07-06 7:58 Michał Górny
2021-06-17 19:35 Michał Górny
2021-06-14 21:03 Michał Górny
2021-06-07 6:56 Michał Górny
2021-05-24 1:34 Joshua Kinard
2021-03-07 22:39 Michał Górny
2021-03-07 19:43 Sam James
2021-02-01 8:50 Michał Górny
2021-01-05 21:27 Michał Górny
2021-01-05 21:03 Sam James
2021-01-05 15:53 Michał Górny
2020-12-22 21:13 Michał Górny
2020-12-22 20:36 Sam James
2020-12-01 10:32 Michał Górny
2020-11-30 21:12 Sergei Trofimovich
2020-11-12 9:17 Michał Górny
2020-10-26 23:44 Sergei Trofimovich
2020-10-01 21:38 Michał Górny
2020-09-19 7:21 Michał Górny
2020-09-19 2:10 Sam James
2020-09-18 14:36 Michał Górny
2020-09-18 7:23 Michał Górny
2020-09-04 3:30 Michał Górny
2020-08-28 6:28 Michał Górny
2020-08-26 6:38 Michał Górny
2020-08-21 15:36 Agostino Sarubbo
2020-08-21 15:31 Agostino Sarubbo
2020-08-21 15:27 Agostino Sarubbo
2020-08-21 2:47 Michał Górny
2020-08-17 7:10 Agostino Sarubbo
2020-08-16 14:48 Agostino Sarubbo
2020-08-16 14:46 Agostino Sarubbo
2020-08-16 14:46 Agostino Sarubbo
2020-08-15 7:26 Sergei Trofimovich
2020-08-13 19:49 Michał Górny
2020-08-11 13:43 Michał Górny
2020-08-07 4:53 Michał Górny
2020-08-05 7:50 Michał Górny
2020-07-15 5:04 Michał Górny
2020-07-14 12:01 Michał Górny
2020-07-08 13:16 Michał Górny
2020-06-07 7:27 Michał Górny
2020-05-31 15:42 Michał Górny
2020-05-31 6:57 Matt Turner
2020-05-17 9:37 Sergei Trofimovich
2020-05-04 10:29 Michał Górny
2020-04-23 12:12 Michał Górny
2020-04-21 19:45 Sergei Trofimovich
2020-04-09 18:40 Sergei Trofimovich
2020-04-08 20:53 Sergei Trofimovich
2020-04-08 20:53 Sergei Trofimovich
2020-04-08 20:53 Sergei Trofimovich
2020-04-07 10:42 Michał Górny
2020-04-03 9:37 Michał Górny
2020-03-26 14:51 Michał Górny
2020-03-26 14:51 Michał Górny
2020-03-26 14:51 Michał Górny
2020-03-15 18:41 Agostino Sarubbo
2020-03-15 18:27 Agostino Sarubbo
2020-03-14 22:31 Agostino Sarubbo
2020-03-14 4:55 Michał Górny
2020-03-02 5:42 Michał Górny
2020-02-21 10:08 Michał Górny
2020-02-11 11:37 Agostino Sarubbo
2020-02-10 8:18 Agostino Sarubbo
2020-02-09 8:48 Mikle Kolyada
2020-02-09 4:44 Michał Górny
2020-02-09 4:44 Michał Górny
2020-01-27 11:50 Mikle Kolyada
2020-01-27 7:22 Michał Górny
2020-01-26 20:24 Matthew Thode
2020-01-26 20:24 Matthew Thode
2020-01-24 5:27 Michał Górny
2020-01-24 5:27 Michał Górny
2020-01-13 8:50 Agostino Sarubbo
2020-01-10 19:14 Agostino Sarubbo
2020-01-10 6:19 Michał Górny
2020-01-10 6:19 Michał Górny
2020-01-10 6:19 Michał Górny
2020-01-03 20:46 David Seifert
2019-12-10 14:26 Michał Górny
2019-12-10 14:26 Michał Górny
2019-11-27 10:45 Michał Górny
2019-11-27 10:45 Michał Górny
2019-11-13 7:33 Michał Górny
2019-11-13 7:33 Michał Górny
2019-10-16 7:42 Michał Górny
2019-10-16 7:42 Michał Górny
2019-10-02 13:30 Michał Górny
2019-09-25 5:53 Michał Górny
2019-09-25 5:53 Michał Górny
2019-08-08 3:31 Michał Górny
2019-07-25 5:52 Michał Górny
2019-07-10 19:34 Michał Górny
2019-07-09 20:00 Michał Górny
2019-07-09 19:54 Michał Górny
2019-05-11 19:48 Matthew Thode
2019-04-12 22:47 Matthew Thode
2019-01-28 0:25 Matthew Thode
2018-08-30 17:50 Matt Thode
2018-02-22 19:59 Matt Thode
2017-08-31 20:46 Matt Thode
2017-08-31 19:17 Mike Gilbert
2017-08-31 17:20 Matt Thode
2017-08-28 18:35 Matt Thode
2017-04-22 18:28 Mike Gilbert
2017-04-22 18:08 Mike Gilbert
2016-03-26 1:56 Matt Thode
2016-02-28 7:00 Matt Thode
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=1751337181.941448682f0531426b5f5a48588a3923e9956dbf.mgorny@gentoo \
--to=mgorny@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