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: Fri, 04 Sep 2020 03:30:18
Message-Id: 1599190201.ebf89357835c4ab34c18ddd44adb347b99a04655.mgorny@gentoo
1 commit: ebf89357835c4ab34c18ddd44adb347b99a04655
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 4 02:45:14 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 4 03:30:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebf89357
7
8 dev-python/elementpath: Bump to 2.0.2
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.0.2.ebuild | 26 +++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/elementpath/Manifest b/dev-python/elementpath/Manifest
17 index 648c98ab3d6..ee39fd3cfc1 100644
18 --- a/dev-python/elementpath/Manifest
19 +++ b/dev-python/elementpath/Manifest
20 @@ -1,3 +1,4 @@
21 DIST elementpath-1.4.6.tar.gz 121815 BLAKE2B 09014fc503c8a3a6a6865572fa48c515af19fc009512369d8e761ca5b4e516de1add7eb14c0681114331c4a8ef08cccb5fac8f4ce2b436523780cb4e41e2dc00 SHA512 ac1d7fc0ab07f22fa02550ac77f4067b5564f78619bf98d6fda257751d6404684622580002d69beb769fc471500ee0c08f6095b05ddc6b7d81276dc8e158c40b
22 DIST elementpath-2.0.0.tar.gz 149239 BLAKE2B 6963429ee127ef2a293da6706e6d1bc13be4d864d7da3d7169dd81d0a430156684f0977076182ec7aff7622940dbc341b84fab3eb488bbe6470476c4d30b6d4a SHA512 bb29c9cf30e9a414f9ddc7e29d3ae09af74302ed9c0bb98332b4fe01bab2e043cd5adb59b20a0730218d79b9f2ae42e9f2ad3ed7e4d0ae8ffde1800c96ee00a9
23 DIST elementpath-2.0.1.tar.gz 186127 BLAKE2B db2e566e3032881d9db57d3951371dd4321baf3c3246a1a882c8a1ee9dafee2c2e4c2e8bb35cea7452ed51779a91c85976847cb46f18c1c6683c7c501961b2ed SHA512 77bf895c9d509dec57dd9770ebddf8ad58eca4aaee46c3372fead2d0a5109ff27e183d29a5bd5ef1a2ad203c6c64387b11b8bc0b2e96786843d24faadc3274ad
24 +DIST elementpath-2.0.2.tar.gz 189956 BLAKE2B 7d7b612a1271b322eef504952bc6fb5089bdafa3276745668c156229b66c80b8fb8070de56c84988af22ee3586a5b420481bd9141b598d436525ac2a78d25f5e SHA512 eeb4876525ab06857e30cd04e234a66c7396e6aea48a6bfdd158354591fd8b7e8fcb65cbcafd73c274a5590d8fe1844a62e1d86baae4d55dbf7545e8377d49d1
25
26 diff --git a/dev-python/elementpath/elementpath-2.0.2.ebuild b/dev-python/elementpath/elementpath-2.0.2.ebuild
27 new file mode 100644
28 index 00000000000..64b4b299f7f
29 --- /dev/null
30 +++ b/dev-python/elementpath/elementpath-2.0.2.ebuild
31 @@ -0,0 +1,26 @@
32 +# Copyright 2019-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="XPath 1.0/2.0 parsers and selectors for ElementTree and lxml"
41 +HOMEPAGE="https://github.com/sissaschool/elementpath
42 + https://pypi.org/project/elementpath/"
43 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
48 +IUSE="test"
49 +RESTRICT="!test? ( test )"
50 +
51 +BDEPEND="
52 + test? (
53 + dev-python/lxml[${PYTHON_USEDEP}]
54 + dev-python/xmlschema[${PYTHON_USEDEP}]
55 + )"
56 +
57 +distutils_enable_tests unittest