From: "Louis Sautier" <sbraz@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/inflect/
Date: Sat, 9 Nov 2019 12:28:55 +0000 (UTC) [thread overview]
Message-ID: <1573302523.19a9354108942904e2bdf764721ee6cb2eef03ae.sbraz@gentoo> (raw)
commit: 19a9354108942904e2bdf764721ee6cb2eef03ae
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 9 12:23:15 2019 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sat Nov 9 12:28:43 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19a93541
dev-python/inflect: bump to 3.0.2, add doc
Also run tests with pytest.
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/inflect/Manifest | 1 +
dev-python/inflect/inflect-3.0.2.ebuild | 49 +++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/dev-python/inflect/Manifest b/dev-python/inflect/Manifest
index 518a37908bb..5c38db75c6c 100644
--- a/dev-python/inflect/Manifest
+++ b/dev-python/inflect/Manifest
@@ -1,3 +1,4 @@
DIST inflect-0.2.5.tar.gz 109756 BLAKE2B ecb64b0fea04602f112dfba11ade6828eae7a7f3f44d4c4fb15c2300ac18025ea4c51f9c36aae5e7e92bd09e24d08091ce096b888a520fd2d4c40374356333d5 SHA512 68371158ac90d9662c19657cbf697f44ee9ceac090286d53e29ee04252efbb7d0bfbd99ae6847e6eec1991ef4ef670eff60693d1f0a301885bab2a09c7ce4616
DIST inflect-1.0.1.tar.gz 110413 BLAKE2B 4c7a5801fde8e0825c7a18612d7d4b6e92534c742ca9021e31c77ffb346e4e5b83f2ca1336d4a4116b721c14d1d6d7387838eff5a52b198c6490a1d00fa8d1a0 SHA512 000cd0e16d16b67cd36914c11d2230268e49be524f184f247d5cea29cc6b69d7b7259b9a67174efd570a2fb9eb6c392a7a6e223d48fd04d824a625fb7fc7f2a7
DIST inflect-2.1.0.tar.gz 98767 BLAKE2B 2cddbeb7d4ca5e150435e42b75e0eff2e2b20a8cf38c89fe6e8958bc52d69aa070f7ba5c6c73bfdd2dab585ceb32006542f31abbeccc2375760742c70e0c6c50 SHA512 c5230ad6f224a6e9667ce3c135bf43d09939bf457f68fb3d52a4278b110df10c9ddddd05e68d94f04a6902319ad71440440bad019c081d0d781a2dbde9ab98bc
+DIST inflect-3.0.2.tar.gz 71546 BLAKE2B 951eb818ba1645a9e426468811ad449378aa5a7341575ac2aff5e9d1e06237fe8e96fa64cd678665cd6c05e1dc5e477a65b261b9d8bd170be4fb923d5fb90e9c SHA512 5858548e947f742b91630fc584f568a2221057ada7cd4a55f39de1b52a82c97884d6a78c2f32e5995e354fd1c4eae4d5b3d30491ef57dd5187fd6baca93d2779
diff --git a/dev-python/inflect/inflect-3.0.2.ebuild b/dev-python/inflect/inflect-3.0.2.ebuild
new file mode 100644
index 00000000000..94231ddd4ce
--- /dev/null
+++ b/dev-python/inflect/inflect-3.0.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy{,3} python{2_7,3_{5,6,7}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Correctly inflect words and numbers"
+HOMEPAGE="https://github.com/jazzband/inflect"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+# nose is still required by some test features
+# https://github.com/jazzband/inflect/issues/90
+BDEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ dev-python/setuptools_scm[${PYTHON_USEDEP}]
+ doc? (
+ >=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
+ >=dev-python/rst-linker-1.9[${PYTHON_USEDEP}]
+ dev-python/alabaster[${PYTHON_USEDEP}]
+ dev-python/sphinx[${PYTHON_USEDEP}]
+ )
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]
+ )
+"
+
+python_compile_all() {
+ if use doc; then
+ sphinx-build docs docs/_build/html || die
+ HTML_DOCS=( docs/_build/html/. )
+ fi
+}
+
+python_test() {
+ # Override pytest options to skip flake8
+ pytest -vv tests --override-ini="addopts=--doctest-modules" \
+ || die "tests failed with ${EPYTHON}"
+}
next reply other threads:[~2019-11-09 12:29 UTC|newest]
Thread overview: 106+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-09 12:28 Louis Sautier [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-18 10:03 [gentoo-commits] repo/gentoo:master commit in: dev-python/inflect/ Michał Górny
2025-01-18 8:56 Arthur Zamarin
2024-12-29 3:21 Michał Górny
2024-09-28 12:59 Michał Górny
2024-09-28 12:40 Sam James
2024-09-08 2:52 Michał Górny
2024-07-20 9:01 Michał Górny
2024-07-20 7:39 Arthur Zamarin
2024-07-02 6:58 Michał Górny
2024-06-21 1:58 Michał Górny
2024-06-14 19:07 Michał Górny
2024-05-08 8:15 Michał Górny
2024-04-24 2:03 Michał Górny
2024-04-20 9:48 Michał Górny
2024-04-20 9:45 Michał Górny
2024-03-31 19:07 Arthur Zamarin
2024-01-03 8:29 Michał Górny
2023-08-19 18:14 Michał Górny
2023-08-19 16:44 Arthur Zamarin
2023-08-19 15:51 Michał Górny
2023-07-05 7:58 Michał Górny
2023-07-04 2:59 Michał Górny
2023-07-03 4:15 Michał Górny
2023-05-31 17:43 Michał Górny
2023-05-23 16:15 Michał Górny
2023-05-23 15:58 Arthur Zamarin
2023-05-03 7:54 Fabian Groffen
2023-04-07 4:19 Michał Górny
2023-04-06 3:07 Michał Górny
2023-02-07 9:26 Michał Górny
2022-11-25 13:58 Michał Górny
2022-11-25 13:52 Arthur Zamarin
2022-10-21 5:14 Michał Górny
2022-10-02 6:27 Joshua Kinard
2022-09-25 17:59 Arthur Zamarin
2022-09-25 17:58 Arthur Zamarin
2022-08-25 7:40 Michał Górny
2022-08-09 5:51 Michał Górny
2022-08-08 19:53 Arthur Zamarin
2022-07-31 18:20 Arthur Zamarin
2022-07-16 8:02 Michał Górny
2022-07-09 17:48 Arthur Zamarin
2022-05-21 19:25 Michał Górny
2022-05-21 17:36 Jakov Smolić
2022-05-13 16:31 Arthur Zamarin
2022-05-02 8:27 Michał Górny
2022-04-20 12:18 Michał Górny
2022-04-06 6:42 Michał Górny
2022-03-15 14:10 Michał Górny
2022-03-15 11:44 Jakov Smolić
2022-02-04 12:04 Michał Górny
2022-02-01 10:06 Michał Górny
2022-01-19 22:45 James Le Cuirot
2021-05-06 14:44 Michał Górny
2021-04-05 18:39 Michał Górny
2021-03-30 11:10 Michał Górny
2021-03-30 9:27 Sam James
2021-03-03 7:11 Michał Górny
2021-02-24 7:59 Michał Górny
2020-12-31 8:50 Michał Górny
2020-12-31 1:17 Sam James
2020-11-28 8:27 Sam James
2020-11-15 23:55 Louis Sautier
2020-09-21 15:30 Michał Górny
2020-09-20 15:38 Michał Górny
2020-09-19 0:25 Sam James
2020-09-04 23:03 Louis Sautier
2020-05-15 17:33 Sergei Trofimovich
2020-05-13 17:14 Agostino Sarubbo
2020-05-13 17:12 Agostino Sarubbo
2020-05-13 17:11 Agostino Sarubbo
2020-05-13 13:18 Agostino Sarubbo
2020-05-04 11:07 Michał Górny
2020-04-26 14:16 Agostino Sarubbo
2020-04-23 8:10 Sergei Trofimovich
2020-04-22 16:41 Mart Raudsepp
2020-04-09 18:40 Sergei Trofimovich
2020-04-06 9:03 Louis Sautier
2020-03-27 15:37 Michał Górny
2020-03-27 15:37 Michał Górny
2020-03-26 10:24 Agostino Sarubbo
2020-03-26 8:28 Agostino Sarubbo
2020-03-15 12:21 Mikle Kolyada
2020-03-03 7:22 Matt Turner
2020-02-28 15:37 Louis Sautier
2020-02-06 9:02 Sergei Trofimovich
2020-02-06 8:34 Sergei Trofimovich
2020-02-06 8:23 Sergei Trofimovich
2019-12-30 0:07 Louis Sautier
2019-12-30 0:07 Louis Sautier
2019-12-03 16:08 Aaron Bauman
2019-11-09 12:28 Louis Sautier
2018-11-13 12:32 Louis Sautier
2018-11-13 12:32 Louis Sautier
2018-09-25 21:34 Louis Sautier
2018-09-25 21:34 Louis Sautier
2018-07-26 21:57 Louis Sautier
2018-07-24 23:41 Louis Sautier
2018-05-12 18:29 Michał Górny
2018-05-12 18:29 Michał Górny
2018-05-12 18:29 Michał Górny
2017-06-17 17:24 Agostino Sarubbo
2017-06-17 15:36 Agostino Sarubbo
2017-05-15 13:49 Manuel Rüger
2015-12-29 11:33 Ian Delaney
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=1573302523.19a9354108942904e2bdf764721ee6cb2eef03ae.sbraz@gentoo \
--to=sbraz@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