From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/Babel/
Date: Fri, 17 Jun 2022 06:02:36 +0000 (UTC) [thread overview]
Message-ID: <1655445738.e48295223cafc9c3250fe40f2068ccc644f4f02b.mgorny@gentoo> (raw)
commit: e48295223cafc9c3250fe40f2068ccc644f4f02b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 17 05:47:28 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jun 17 06:02:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4829522
dev-python/Babel: Bump to 2.10.3
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/Babel/Babel-2.10.3.ebuild | 62 ++++++++++++++++++++++++++++++++++++
dev-python/Babel/Manifest | 1 +
2 files changed, 63 insertions(+)
diff --git a/dev-python/Babel/Babel-2.10.3.ebuild b/dev-python/Babel/Babel-2.10.3.ebuild
new file mode 100644
index 000000000000..02e77dc3bc66
--- /dev/null
+++ b/dev-python/Babel/Babel-2.10.3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+# see scripts/download_import_cldr.py
+CLDR_PV=41.0
+DESCRIPTION="Collection of tools for internationalizing Python applications"
+HOMEPAGE="
+ https://babel.pocoo.org/
+ https://pypi.org/project/Babel/
+ https://github.com/python-babel/babel/
+"
+SRC_URI="
+ mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
+ https://unicode.org/Public/cldr/${CLDR_PV%.*}/cldr-common-${CLDR_PV}.zip
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+
+RDEPEND="
+ dev-python/pytz[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ dev-python/backports-zoneinfo[${PYTHON_USEDEP}]
+ ' 3.8)
+"
+# RDEPEND in BDEPEND for import_cldr.py usage, bug #852158
+BDEPEND="
+ app-arch/unzip
+ ${RDEPEND}
+ test? (
+ dev-python/freezegun[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+src_prepare() {
+ rm babel/locale-data/*.dat || die
+ rm babel/global.dat || die
+ distutils-r1_src_prepare
+}
+
+python_configure() {
+ if [[ ! -f babel/global.dat ]]; then
+ "${EPYTHON}" scripts/import_cldr.py "${WORKDIR}"/common || die
+ fi
+}
+
+python_test() {
+ local -x TZ=UTC
+ epytest
+}
diff --git a/dev-python/Babel/Manifest b/dev-python/Babel/Manifest
index 048ea62b416b..6d6ed96521d3 100644
--- a/dev-python/Babel/Manifest
+++ b/dev-python/Babel/Manifest
@@ -1,3 +1,4 @@
DIST Babel-2.10.1.tar.gz 9342917 BLAKE2B fe9f4cff416a57b4964481afcf9cf154b3d9e2c0c88b2b97786cbede1cb068f9637a2168a819dd94770ce3a5836ee8096b2fe7131d2dff16eb0a31a924b9fae1 SHA512 d6f8876bc47d2ad88277f5a9512abb177518b79d4f477cdba11d1cd1af8fb92bfd033c2c05c7a6c32dbd087a28189288f8ac80f9b654027b3e026a06c4ade127
DIST Babel-2.10.2.tar.gz 9346156 BLAKE2B f6d8c3ccc00c5384c52d98d9939e58a2ec6f16dafd89b5ae5b5a302db16ff1d773d5843d1aca6a4cede859aa7dfa33ebbe4c49bd06c2720e0aa916a097d26fdd SHA512 d292cd26e8eeeed699a8307540a10bb5521a118940928eecf56622d22c01fd566b1c22cd86b33d92c0c1fe3eaaf8c0d634636d288f74f18cb297137de6fdc842
+DIST Babel-2.10.3.tar.gz 9344140 BLAKE2B c21d1e33160de2c98ac26b6ac83102a6249cbaf4b4860cd86e19b461ee66fd815a2972fc3652b411e2030b201bf32db77144fde91efc4e9e6ba51a580cad93b7 SHA512 72a5759d2cfa239df56f3d2809b23367b9691e21de92535b30f9b3455d253682f6c18ca919f3fb039deed2663db9276307f6343cbbab56fca96ff1ac9c214fa7
DIST cldr-common-41.0.zip 29364494 BLAKE2B 1960e860017c3e5f31d935d66a1ff551720975dca0af459adc72b8dc54100938fbd2d2ef00eb457f3fd04d4f1e90a4783229c350b125029dcda5c1e6903f9a54 SHA512 c64f3338e292962817b043dd11e9c47f533c9b70d432f83e80654e20f4937c72b37e66a60485df43f734b1ff94ebf0452547a063076917889303c9653b4d6ce5
next reply other threads:[~2022-06-17 6:02 UTC|newest]
Thread overview: 120+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-17 6:02 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-22 20:18 [gentoo-commits] repo/gentoo:master commit in: dev-python/babel/ Michał Górny
2024-08-24 13:06 [gentoo-commits] repo/gentoo:master commit in: dev-python/Babel/ Michał Górny
2024-08-24 8:11 Sam James
2024-08-09 3:10 Michał Górny
2024-05-28 12:10 Michał Górny
2024-05-12 2:25 Michał Górny
2024-05-06 4:39 Michał Górny
2023-12-30 14:32 Michał Górny
2023-12-30 14:25 Arthur Zamarin
2023-12-12 16:27 Michał Górny
2023-11-05 19:13 Arthur Zamarin
2023-10-25 7:43 Michał Górny
2023-10-04 5:51 Michał Górny
2023-06-18 17:07 Michał Górny
2023-05-28 16:25 Michał Górny
2023-04-29 17:25 Arthur Zamarin
2023-04-22 8:41 Michał Górny
2023-03-01 6:16 Michał Górny
2023-03-01 6:16 Michał Górny
2022-12-10 8:54 Michał Górny
2022-12-10 8:50 Arthur Zamarin
2022-11-02 7:37 Michał Górny
2022-07-24 20:28 Michał Górny
2022-06-16 4:32 Michał Górny
2022-06-15 14:55 Sam James
2022-06-15 13:58 Sam James
2022-06-15 11:32 Michał Górny
2022-06-10 6:54 Michał Górny
2022-05-13 9:08 Michał Górny
2022-05-08 7:34 WANG Xuerui
2022-04-21 8:24 Michał Górny
2021-09-26 7:05 James Le Cuirot
2021-05-18 13:02 Michał Górny
2021-04-30 15:23 Agostino Sarubbo
2021-04-29 7:18 Michał Górny
2021-02-22 6:32 Joshua Kinard
2021-01-24 10:28 Sergei Trofimovich
2021-01-18 14:53 Sam James
2021-01-07 20:15 Sam James
2021-01-07 11:36 Sam James
2021-01-07 1:12 Sam James
2021-01-06 8:09 Sam James
2021-01-05 21:00 Sam James
2021-01-05 14:14 Sergei Trofimovich
2020-12-20 11:49 Mikle Kolyada
2020-12-16 19:33 Michał Górny
2020-12-16 18:00 Sam James
2020-12-16 10:47 Michał Górny
2020-12-13 1:06 Sam James
2020-12-07 3:59 Matt Turner
2020-12-07 0:03 Sam James
2020-12-06 23:50 Sam James
2020-12-06 20:58 Sam James
2020-12-04 20:45 Sergei Trofimovich
2020-12-04 20:45 Sergei Trofimovich
2020-12-04 20:45 Sergei Trofimovich
2020-12-04 19:51 Sergei Trofimovich
2020-11-11 13:04 Michał Górny
2020-09-20 8:16 Michał Górny
2020-05-31 16:33 Michał Górny
2020-04-15 5:33 Mike Gilbert
2020-03-26 13:49 Michał Górny
2020-03-26 13:49 Michał Górny
2020-03-25 14:52 Agostino Sarubbo
2020-03-25 14:17 Agostino Sarubbo
2020-01-01 4:40 Michał Górny
2019-11-25 12:35 Michał Górny
2019-11-24 17:36 Michał Górny
2019-11-24 17:36 Michał Górny
2019-05-02 21:07 Mikle Kolyada
2019-04-12 5:20 Aaron Bauman
2019-03-17 23:02 Sergei Trofimovich
2019-03-17 10:29 Sergei Trofimovich
2019-03-16 21:57 Sergei Trofimovich
2019-03-16 17:02 Mikle Kolyada
2019-03-16 17:02 Mikle Kolyada
2019-03-16 14:39 Mikle Kolyada
2019-03-16 14:39 Mikle Kolyada
2019-03-16 10:19 Sergei Trofimovich
2019-02-17 17:46 Mikle Kolyada
2018-12-29 16:29 Matt Turner
2018-07-20 12:11 Tobias Klausmann
2018-07-15 10:25 Sergei Trofimovich
2018-07-15 10:25 Sergei Trofimovich
2018-07-15 9:01 Sergei Trofimovich
2018-07-14 17:19 Louis Sautier
2018-07-14 17:19 Louis Sautier
2018-07-13 18:46 Sergei Trofimovich
2018-07-13 8:23 Michał Górny
2018-07-13 8:23 Michał Górny
2018-05-29 20:05 Markus Meier
2018-05-08 7:11 Agostino Sarubbo
2018-05-07 7:41 Michał Górny
2018-05-07 0:12 Mart Raudsepp
2018-04-06 22:31 Manuel Rüger
2018-02-19 21:07 Michał Górny
2018-02-16 6:08 Matt Thode
2017-09-29 23:32 Matt Thode
2017-09-12 9:13 Fabian Groffen
2017-08-27 8:56 Tim Harder
2017-08-27 8:56 Tim Harder
2017-06-26 4:35 Sebastien Fabbro
2017-06-15 18:19 Markus Meier
2017-05-22 16:48 Tobias Klausmann
2017-05-22 11:40 Agostino Sarubbo
2017-05-19 21:44 Michael Weber
2017-05-14 21:02 Mike Gilbert
2017-05-06 11:13 Jeroen Roovers
2017-05-03 11:41 Michał Górny
2017-01-29 16:59 Fabian Groffen
2016-11-30 18:05 Michał Górny
2016-07-17 15:44 Patrick Lauer
2016-01-07 8:56 Justin Lecher
2016-01-06 21:06 Justin Lecher
2015-10-30 14:13 Matt Thode
2015-10-30 12:53 Justin Lecher
2015-09-26 10:49 Justin Lecher
2015-09-26 10:18 Agostino Sarubbo
2015-09-26 6:29 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=1655445738.e48295223cafc9c3250fe40f2068ccc644f4f02b.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