From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/importlib_metadata/
Date: Wed, 19 Apr 2023 06:34:13 +0000 (UTC) [thread overview]
Message-ID: <1681886046.fb9d2e4c5fbeaa1bf6ca48411839fbd560c039c4.mgorny@gentoo> (raw)
commit: fb9d2e4c5fbeaa1bf6ca48411839fbd560c039c4
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 19 06:21:18 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 19 06:34:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb9d2e4c
dev-python/importlib_metadata: Bump to 6.5.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/importlib_metadata/Manifest | 1 +
.../importlib_metadata-6.5.0.ebuild | 53 ++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/dev-python/importlib_metadata/Manifest b/dev-python/importlib_metadata/Manifest
index c63fc355baca..5fce36a693ee 100644
--- a/dev-python/importlib_metadata/Manifest
+++ b/dev-python/importlib_metadata/Manifest
@@ -1,3 +1,4 @@
DIST importlib_metadata-6.0.1.tar.gz 49963 BLAKE2B 8f915035334965ae373977814d335b66028f85372f96a9815fe3e59ca346b60d64c16e147e8a9d1ce44e26b31851dcfbda84002fc1a0d93c0d154115f5acec4e SHA512 9ee241a8865d181fae103e643ae618f46541ba9aab299df32892739db991d78b4199df436f77d7c28aeb736e4c2cfb38301cb7133d8baff3c149f4421e0431a1
DIST importlib_metadata-6.3.0.tar.gz 52838 BLAKE2B 9d7e247f712de55c079720118d5ab27731b305143b69cd425d3e720e223888740a17818263125c9db9f64f7a715efe2922722c6328474926d05db4753c699185 SHA512 bf6b4961d2e98e873f6842b6ee348dde9445e7aa1faf2c599a9908439312b03a532db5978a5311d60d8d992be0b882b2b496bf721a6af2ef7f14032758055cb4
DIST importlib_metadata-6.4.1.tar.gz 52684 BLAKE2B 216e0ee6d1775b3734b15919c6c5fc9b557fccf106b83bec6388bc514557dc16f6ef7a9ba15e9cd1686fa85aecffc10829f80c6d42e984b8da3b1dfc982aca07 SHA512 925336d321872a01b8c1b6384fa494c912d69531c5c9c991af43b09690a40aa5aaa2e9c6f47345ed8ee7e0d6b632758c4111a5558b5bf1b659b99cad0bae908c
+DIST importlib_metadata-6.5.0.tar.gz 53101 BLAKE2B a22b48f3ea927c9588fc15f4731c8ffd2a51fb3544c0c74ab48d44a3949f2d981c63aa3714914e02ac3a8035ca0a0e726f790672fbad9e39e3158e251d90f7c5 SHA512 c581ff46d601a239ba9e83114a18b1fc5c0245c215752b8313624fbef6b441eac7cebd4e021d09f12d26ba30715b99475eeeb66befc49bcd609f1b53b79f9bfd
diff --git a/dev-python/importlib_metadata/importlib_metadata-6.5.0.ebuild b/dev-python/importlib_metadata/importlib_metadata-6.5.0.ebuild
new file mode 100644
index 000000000000..94609d071b76
--- /dev/null
+++ b/dev-python/importlib_metadata/importlib_metadata-6.5.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
+EAPI=7
+
+DISTUTILS_USE_PEP517=flit
+# NB: this package extends beyond built-in importlib stuff in py3.8+
+# new entry_point API not yet included in cpython release
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Read metadata from Python packages"
+HOMEPAGE="
+ https://github.com/python/importlib_metadata/
+ https://pypi.org/project/importlib-metadata/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+RDEPEND="
+ dev-python/zipp[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/packaging[${PYTHON_USEDEP}]
+ dev-python/pyfakefs[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ dev-python/importlib_resources[${PYTHON_USEDEP}]
+ ' 3.8)
+ )
+"
+
+distutils_enable_tests unittest
+
+src_configure() {
+ grep -q 'build-backend = "setuptools' pyproject.toml ||
+ die "Upstream changed build-backend, recheck"
+ # write a custom pyproject.toml to ease setuptools bootstrap
+ cat > pyproject.toml <<-EOF || die
+ [build-system]
+ requires = ["flit_core >=3.2,<4"]
+ build-backend = "flit_core.buildapi"
+
+ [project]
+ name = "importlib_metadata"
+ version = "${PV}"
+ description = "Read metadata from Python packages"
+ EOF
+}
next reply other threads:[~2023-04-19 6:34 UTC|newest]
Thread overview: 201+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-19 6:34 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-04-19 15:07 [gentoo-commits] repo/gentoo:master commit in: dev-python/importlib_metadata/ Michał Górny
2023-04-15 19:39 Michał Górny
2023-04-11 20:59 Louis Sautier
2023-04-10 6:07 Michał Górny
2023-04-10 5:30 Michał Górny
2023-04-10 5:30 Michał Górny
2023-04-10 5:21 Sam James
2023-04-08 5:13 Michał Górny
2023-04-01 17:43 Michał Górny
2023-03-19 4:13 Michał Górny
2023-03-19 4:13 Michał Górny
2023-02-03 12:32 Michał Górny
2023-02-03 12:04 Arthur Zamarin
2023-01-02 14:54 Michał Górny
2022-12-25 17:33 Michał Górny
2022-12-19 6:46 Michał Górny
2022-11-25 13:53 Arthur Zamarin
2022-11-25 5:14 Michał Górny
2022-11-03 19:41 Arthur Zamarin
2022-11-03 19:34 Arthur Zamarin
2022-10-02 18:54 Arthur Zamarin
2022-07-29 12:49 Michał Górny
2022-07-29 11:43 Arthur Zamarin
2022-06-26 4:49 Michał Górny
2022-06-24 11:33 Arthur Zamarin
2022-06-24 11:32 Arthur Zamarin
2022-06-02 8:32 Michał Górny
2022-05-24 6:16 Michał Górny
2022-05-22 5:53 Michał Górny
2022-04-19 16:03 Michał Górny
2022-04-19 13:46 Jakov Smolić
2022-03-27 9:50 Fabian Groffen
2022-03-15 14:10 Michał Górny
2022-03-15 11:36 Jakov Smolić
2022-03-14 17:04 Michał Górny
2022-03-04 7:18 Michał Górny
2022-02-28 8:28 Michał Górny
2022-02-15 9:05 Michał Górny
2022-02-11 9:42 Michał Górny
2022-02-07 21:15 James Le Cuirot
2022-01-18 17:50 Michał Górny
2022-01-18 12:24 Sam James
2022-01-17 9:21 Michał Górny
2021-12-20 8:40 Michał Górny
2021-12-16 21:05 Michał Górny
2021-12-09 22:39 Michał Górny
2021-12-09 21:24 Sam James
2021-11-09 14:01 Michał Górny
2021-11-09 10:23 Michał Górny
2021-10-03 19:24 Michał Górny
2021-10-03 18:48 Sam James
2021-09-05 6:35 Michał Górny
2021-09-05 6:05 Michał Górny
2021-09-05 6:02 Sam James
2021-08-29 21:50 Michał Górny
2021-08-29 6:57 Michał Górny
2021-08-27 7:28 Michał Górny
2021-08-14 8:03 Michał Górny
2021-08-07 14:52 Michał Górny
2021-08-07 14:43 Sam James
2021-08-01 12:25 Michał Górny
2021-07-12 22:53 Michał Górny
2021-07-12 21:50 Sam James
2021-07-05 6:07 Michał Górny
2021-06-27 14:20 Michał Górny
2021-06-24 8:00 Michał Górny
2021-06-24 4:26 Agostino Sarubbo
2021-06-04 7:15 Michał Górny
2021-06-02 16:12 Michał Górny
2021-05-31 19:11 Michał Górny
2021-05-29 8:06 Michał Górny
2021-05-27 23:18 Michał Górny
2021-05-27 23:18 Michał Górny
2021-05-26 20:39 Michał Górny
2021-05-24 21:20 Joshua Kinard
2021-05-17 17:59 Georgy Yakovlev
2021-05-06 11:03 Michał Górny
2021-05-06 9:57 Sam James
2021-04-21 6:40 Michał Górny
2021-04-19 7:23 Michał Górny
2021-04-18 16:18 Michał Górny
2021-04-18 7:05 Michał Górny
2021-04-18 1:41 Sam James
2021-04-13 9:05 Michał Górny
2021-04-09 22:25 Michał Górny
2021-04-09 22:17 Sam James
2021-03-30 11:10 Michał Górny
2021-03-30 9:27 Sam James
2021-03-30 7:17 Michał Górny
2021-03-29 8:37 Louis Sautier
2021-03-29 8:37 Louis Sautier
2021-03-29 7:46 Michał Górny
2021-03-28 9:48 Michał Górny
2021-03-27 7:49 Michał Górny
2021-03-14 22:10 Michał Górny
2021-03-08 7:25 Michał Górny
2021-03-07 23:03 Michał Górny
2021-03-06 16:38 Michał Górny
2021-03-02 8:25 Michał Górny
2021-03-02 1:34 Sam James
2021-02-24 21:43 Michał Górny
2021-02-24 7:59 Michał Górny
2021-02-23 18:43 Michał Górny
2021-01-13 20:16 Michał Górny
2021-01-13 19:06 Sam James
2021-01-11 9:21 Michał Górny
2021-01-05 21:27 Michał Górny
2021-01-05 21:03 Sam James
2020-12-25 23:35 Michał Górny
2020-12-25 23:00 Sam James
2020-12-14 8:21 Michał Górny
2020-12-13 20:24 Louis Sautier
2020-12-02 12:02 Louis Sautier
2020-12-02 12:02 Louis Sautier
2020-11-28 8:32 Sam James
2020-11-24 22:19 Louis Sautier
2020-11-24 0:05 Louis Sautier
2020-11-24 0:05 Louis Sautier
2020-10-25 21:48 Sam James
2020-10-25 21:34 Thomas Deutschmann
2020-09-23 12:13 Louis Sautier
2020-09-23 7:29 Michał Górny
2020-09-20 15:38 Michał Górny
2020-08-18 15:39 Sam James
2020-07-23 10:00 Michał Górny
2020-07-23 8:56 Sergei Trofimovich
2020-07-17 0:35 Sam James
2020-07-12 2:45 Sam James
2020-07-09 10:39 Michał Górny
2020-07-09 10:39 Michał Górny
2020-07-09 8:41 Agostino Sarubbo
2020-07-09 8:27 Agostino Sarubbo
2020-07-03 9:58 Michał Górny
2020-06-28 12:00 Michał Górny
2020-06-26 21:16 Mart Raudsepp
2020-06-06 8:38 Michał Górny
2020-05-30 7:27 Michał Górny
2020-05-30 7:27 Michał Górny
2020-05-01 8:40 Mart Raudsepp
2020-04-13 21:50 Sergei Trofimovich
2020-04-09 2:07 Patrick McLean
2020-03-27 11:19 Louis Sautier
2020-03-27 11:19 Louis Sautier
2020-03-26 14:40 Louis Sautier
2020-03-21 9:24 Mart Raudsepp
2020-03-03 7:22 Matt Turner
2020-02-23 8:54 Sergei Trofimovich
2020-02-23 8:54 Sergei Trofimovich
2020-02-12 18:21 Agostino Sarubbo
2020-02-06 8:34 Sergei Trofimovich
2020-01-31 22:17 Sergei Trofimovich
2020-01-30 12:31 Agostino Sarubbo
2020-01-30 12:11 Agostino Sarubbo
2020-01-30 11:05 Agostino Sarubbo
2020-01-30 11:00 Agostino Sarubbo
2020-01-30 10:17 Agostino Sarubbo
2020-01-30 7:28 Sergei Trofimovich
2020-01-29 10:17 Agostino Sarubbo
2020-01-29 6:44 Michał Górny
2020-01-29 6:44 Michał Górny
2020-01-11 1:08 Louis Sautier
2020-01-11 1:08 Louis Sautier
2019-12-30 10:15 Sergei Trofimovich
2019-12-24 14:21 Mikle Kolyada
2019-12-16 7:54 Agostino Sarubbo
2019-12-16 7:54 Agostino Sarubbo
2019-12-16 7:53 Agostino Sarubbo
2019-12-16 7:52 Agostino Sarubbo
2019-12-16 7:51 Agostino Sarubbo
2019-12-16 7:49 Agostino Sarubbo
2019-12-11 9:12 Michał Górny
2019-12-05 7:12 Michał Górny
2019-12-05 7:12 Michał Górny
2019-12-02 8:31 Michał Górny
2019-12-02 8:31 Michał Górny
2019-12-02 2:48 Aaron Bauman
2019-12-01 5:29 Michał Górny
2019-11-25 12:35 Michał Górny
2019-11-25 8:32 Patrick McLean
2019-11-21 2:35 Patrick McLean
2019-09-17 9:59 Louis Sautier
2019-09-17 9:59 Louis Sautier
2019-09-11 21:03 Louis Sautier
2019-09-11 21:03 Louis Sautier
2019-09-10 16:01 Louis Sautier
2019-09-10 16:01 Louis Sautier
2019-09-02 14:47 Louis Sautier
2019-09-02 14:47 Louis Sautier
2019-08-10 9:08 Sergei Trofimovich
2019-08-02 8:36 Mikle Kolyada
2019-08-02 8:36 Mikle Kolyada
2019-08-02 8:36 Mikle Kolyada
2019-08-02 8:36 Mikle Kolyada
2019-08-01 6:34 Sergei Trofimovich
2019-08-01 6:28 Sergei Trofimovich
2019-07-31 17:44 Sergei Trofimovich
2019-07-29 22:50 Aaron Bauman
2019-07-29 13:02 Louis Sautier
2019-07-29 1:07 Georgy Yakovlev
2019-07-13 1:09 Louis Sautier
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=1681886046.fb9d2e4c5fbeaa1bf6ca48411839fbd560c039c4.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