Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/importlib_resources/
Date: Wed, 11 Mar 2020 12:52:44
Message-Id: 1583931134.179cdf91a3b8cfc026a17174b2902e83800b8aec.sbraz@gentoo
1 commit: 179cdf91a3b8cfc026a17174b2902e83800b8aec
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 11 12:50:15 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 11 12:52:14 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=179cdf91
7
8 dev-python/importlib_resources: bump to 1.3.1, introduces new deps
9
10 Package-Manager: Portage-2.3.93, Repoman-2.3.20
11 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
12
13 dev-python/importlib_resources/Manifest | 1 +
14 .../importlib_resources-1.3.1.ebuild | 44 ++++++++++++++++++++++
15 2 files changed, 45 insertions(+)
16
17 diff --git a/dev-python/importlib_resources/Manifest b/dev-python/importlib_resources/Manifest
18 index ee0d6e36341..791ac8e8978 100644
19 --- a/dev-python/importlib_resources/Manifest
20 +++ b/dev-python/importlib_resources/Manifest
21 @@ -1 +1,2 @@
22 DIST importlib_resources-1.0.2.tar.gz 23602 BLAKE2B 24c27b45ec56d3838b039baf2ebc1e0c5ec582d5cfdeb5cf26587255bf8b32aa1fcf43802cabca3b82b3ddec8cdf2616d10489c3c1aca77c9fa91af1f25ef9e7 SHA512 50bfc5130a2c9c9354efef1cd7132e805ed0f13467ba67172f83e11d907212bef3957aeef51fd904b73996c8280008d99c918637956a470448dfd67ef4807f82
23 +DIST importlib_resources-1.3.1.tar.gz 23683 BLAKE2B c5c759a0aca53294e4ab945d918ec4e9f5b8ffa19e7185c5ee6c3db1589a7979242cebbaccad37c0125cccbcf96deeb8a7ac77a5419fa1cca2d0fc0baaeb7df8 SHA512 28661fff19475d27caaa420244a4e2a1fe12ce525eaea4f9892fad5f50a1b991be8c9764c34c1ca0bcc840d49535a963f9784caab221848f0ce0e43b9991dd3d
24
25 diff --git a/dev-python/importlib_resources/importlib_resources-1.3.1.ebuild b/dev-python/importlib_resources/importlib_resources-1.3.1.ebuild
26 new file mode 100644
27 index 00000000000..48478cffc1a
28 --- /dev/null
29 +++ b/dev-python/importlib_resources/importlib_resources-1.3.1.ebuild
30 @@ -0,0 +1,44 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +# This is a backport of Python 3.7's importlib.resources
37 +PYTHON_COMPAT=( pypy3 python{2_7,3_6} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Read resources from Python packages"
42 +HOMEPAGE="https://importlib-resources.readthedocs.io/en/latest/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
48 +
49 +RDEPEND="
50 + $(python_gen_cond_dep 'dev-python/contextlib2[${PYTHON_USEDEP}]' -2)
51 + $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' pypy3 python3_{6,7})
52 + $(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' -2)
53 + $(python_gen_cond_dep 'dev-python/zipp[${PYTHON_USEDEP}]' pypy3 python3_{6,7})
54 + virtual/python-singledispatch[${PYTHON_USEDEP}]
55 + virtual/python-typing[${PYTHON_USEDEP}]
56 +"
57 +BDEPEND="
58 + dev-python/toml[${PYTHON_USEDEP}]
59 + >=dev-python/setuptools_scm-3.4.1[${PYTHON_USEDEP}]
60 +"
61 +
62 +distutils_enable_tests unittest
63 +distutils_enable_sphinx importlib_resources/docs dev-python/rst-linker
64 +
65 +python_compile() {
66 + distutils-r1_python_compile
67 + if ! python_is_python3; then
68 + rm "${BUILD_DIR}/lib/importlib_resources/_py3.py" || die
69 + fi
70 +}
71 +
72 +python_install() {
73 + distutils-r1_python_install --skip-build
74 +}