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/elementpath/
Date: Mon, 01 Mar 2021 21:53:53
Message-Id: 1614635610.632fd523a20572165461cf63ad9db720876d1ff2.mgorny@gentoo
1 commit: 632fd523a20572165461cf63ad9db720876d1ff2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 1 21:34:24 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 1 21:53:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=632fd523
7
8 dev-python/elementpath: Bump to 2.2.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/elementpath/Manifest | 1 +
13 dev-python/elementpath/elementpath-2.2.0.ebuild | 28 +++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-python/elementpath/Manifest b/dev-python/elementpath/Manifest
17 index 3b8dce51b2c..a7ec1e55be9 100644
18 --- a/dev-python/elementpath/Manifest
19 +++ b/dev-python/elementpath/Manifest
20 @@ -1,2 +1,3 @@
21 DIST elementpath-2.1.2.tar.gz 204979 BLAKE2B d247e2dc3ed685e2ba9715ed44665f1162bb8c6983e9b4010d7bf32193129b43983fc31dc9db8f76e618dfeef81061c3d5515a6e369f5159636012afac272abe SHA512 3ba7802d4a4f81c73743963b8ee8cc293973430b521f67615f344d78bf259fd371630ce09d0acff223584ac5aa11cccdfe47fe34b0dfd5ff64faacd181e10d28
22 DIST elementpath-2.1.4.tar.gz 208691 BLAKE2B 8317c8fa90d7feaff76357c19ed8373644d60985b1d53a1e0a702e26bf80887523a0f1dcf601800ac1618e8f681b3898b5d56fb4edbbffaacbb4a0efe58f67b1 SHA512 d965bd58254e601000da5be309ab18d3f5964cbc1224092e5e38b4523eb3ac2f7ae6e71fa6c3698b40b13484ed1d07bf93c80d45a9b3ad04f69f63bd18a42975
23 +DIST elementpath-2.2.0.gh.tar.gz 222412 BLAKE2B ac05a3ef816713377ec304962732c60f587972e903541748f0f4958aab0456da9aafbccf66d981b852a98d63b37224499af89125e34dae3fec6094f793f823b3 SHA512 db9950fc1d02d3207db73ad0066d681a8e3b293817e2b4fe0c133eff9e8d822f72d2fca4cd631802765d3ee82c2cae69beeae1332b427adac90bca61978d47a9
24
25 diff --git a/dev-python/elementpath/elementpath-2.2.0.ebuild b/dev-python/elementpath/elementpath-2.2.0.ebuild
26 new file mode 100644
27 index 00000000000..3beb456d1bf
28 --- /dev/null
29 +++ b/dev-python/elementpath/elementpath-2.2.0.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 2019-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7..9} pypy3 )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="XPath 1.0/2.0 parsers and selectors for ElementTree and lxml"
40 +HOMEPAGE="https://github.com/sissaschool/elementpath/
41 + https://pypi.org/project/elementpath/"
42 +SRC_URI="
43 + https://github.com/sissaschool/elementpath/archive/v${PV}.tar.gz
44 + -> ${P}.gh.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
49 +IUSE="test"
50 +RESTRICT="!test? ( test )"
51 +
52 +BDEPEND="
53 + test? (
54 + dev-python/lxml[${PYTHON_USEDEP}]
55 + dev-python/xmlschema[${PYTHON_USEDEP}]
56 + )"
57 +
58 +distutils_enable_tests unittest