Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/importlib_resources/
Date: Mon, 01 Mar 2021 08:25:09
Message-Id: 1614586411.546938eaf0230ce002b748f3a17a5b5712564c25.mgorny@gentoo
1 commit: 546938eaf0230ce002b748f3a17a5b5712564c25
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 1 08:12:00 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 1 08:13:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=546938ea
7
8 dev-python/importlib_resources: Bump to 5.1.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/importlib_resources/Manifest | 1 +
13 .../importlib_resources-5.1.1.ebuild | 30 ++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-python/importlib_resources/Manifest b/dev-python/importlib_resources/Manifest
17 index 281d985f447..207e93a8704 100644
18 --- a/dev-python/importlib_resources/Manifest
19 +++ b/dev-python/importlib_resources/Manifest
20 @@ -2,3 +2,4 @@ DIST importlib_resources-3.3.0.tar.gz 29000 BLAKE2B 5fb87c6e15f01733567fef060607
21 DIST importlib_resources-4.1.1.tar.gz 30821 BLAKE2B 440adde5ce8604c3dddc6c59f730890b4832076f3f7d5c1f9b46ed4d4fe1d80d714a2f393ae1a1b386ef20812090c7370858ca9d3920bc115a6cedb0d2000c8f SHA512 e277d375f800e8d1be317f90344c10b2848a0f7e0b3b6f28014b71d4b92b496137aa84b8ad865a3b93c983d20d827f18c6baf0d6c540882622b0903bebaae303
22 DIST importlib_resources-5.0.0.tar.gz 30603 BLAKE2B 66a22891e28e282919ed3847e69d36655ab8052f4f6c743ceb43456bc5447348302b61e5e3d3553d006fbab45c706882680265613497eedcc97c732a1776183a SHA512 eff23d8d365f105069910efe6e95f63a7e6c2cea7ca707cf4085c6d9f9c4f28065a1ad937d06ab3549a0ac25da5fa950af7b56a52d892125265252e0b79bf7f9
23 DIST importlib_resources-5.1.0.tar.gz 31435 BLAKE2B f3e39117027a07de6c781e8b9bc3809a8fda4d1d5305bd514f4818a89a15e567c7c3c9533b263d8a2874e8fe0a580a55739e784a7ea2c7190a3eba7a422fab2a SHA512 f8ea8719a038a0b14845678c3ad836a6285b69bd3af45a45bb1e8d3ba401c72b8da00907a03297cde466551b169ba3f02133231e6f8d935d39110681ada35c8e
24 +DIST importlib_resources-5.1.1.tar.gz 32125 BLAKE2B 3205ca16163ab3e186c4d2bb255c3cc39fde632ed28bbeb3c8a30e771445de9f02020e1a78f9705332ba279ed3bd9b4e1cff787ceb14cbaa7bc1f72eaa9298ba SHA512 2ee6f8a5f9c501647cd0b79f91041cefaa0b2822dd093efd8cc2917ef45e1917b7a9b493a62b28393de65fdb008f726912fefe61cf1a1aabaed312193b801033
25
26 diff --git a/dev-python/importlib_resources/importlib_resources-5.1.1.ebuild b/dev-python/importlib_resources/importlib_resources-5.1.1.ebuild
27 new file mode 100644
28 index 00000000000..832a9c131a5
29 --- /dev/null
30 +++ b/dev-python/importlib_resources/importlib_resources-5.1.1.ebuild
31 @@ -0,0 +1,30 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +# This is a backport of Python 3.9's importlib.resources
38 +PYTHON_COMPAT=( pypy3 python3_{7,8} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Read resources from Python packages"
43 +HOMEPAGE="https://github.com/python/importlib_resources"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
49 +
50 +RDEPEND="
51 + $(python_gen_cond_dep '
52 + dev-python/zipp[${PYTHON_USEDEP}]
53 + ' pypy3 python3_7)
54 +"
55 +BDEPEND="
56 + dev-python/toml[${PYTHON_USEDEP}]
57 + >=dev-python/setuptools_scm-3.4.1[${PYTHON_USEDEP}]
58 +"
59 +
60 +distutils_enable_tests unittest
61 +distutils_enable_sphinx docs dev-python/rst-linker dev-python/jaraco-packaging