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/rfc3986/
Date: Thu, 25 Jun 2020 18:52:39
Message-Id: 1593111115.ab69ef7237c2a1ca87dd521a4c4bd53e20116d31.mgorny@gentoo
1 commit: ab69ef7237c2a1ca87dd521a4c4bd53e20116d31
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 25 18:42:51 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 25 18:51:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab69ef72
7
8 dev-python/rfc3986: Bump to 1.4.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/rfc3986/Manifest | 1 +
13 dev-python/rfc3986/rfc3986-1.4.0.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/rfc3986/Manifest b/dev-python/rfc3986/Manifest
17 index a7c98c77d75..b5023286e08 100644
18 --- a/dev-python/rfc3986/Manifest
19 +++ b/dev-python/rfc3986/Manifest
20 @@ -1,2 +1,3 @@
21 DIST rfc3986-1.2.0.tar.gz 40162 BLAKE2B d51db37285366fdc7a6d25632afe440bbcdf4fbca46488082286824f046cfd81129b8f0e0695f986120276cf446dde5751dc52ebeb5f2f61f60c5acb92f2da1a SHA512 b88bdc47fa2daa6a9ffc339b1b997a85d0c8b3bf3ab271554e2a1a684c0394370e9cba07a82a542f39533a4c8cae69414234545db6caa2508e0ee7e7f8bdff3d
22 DIST rfc3986-1.3.2.tar.gz 44225 BLAKE2B f4cc72ed3c2dcc7132527cd33fd6b9f0136f789fdb229cc33b02bf2dd596b2f762e3e4cf8af63f239408b55cdf056cf54315a0a9cdf734a4203fad24b00ce594 SHA512 c086c55295d80ccf33dbfeff06059303119e7a407bfc405b7f75ec30413221ec58d3061d75fd3ca696b7acf9b1be1dfcc785e01280bf659a53be43ab1f300b15
23 +DIST rfc3986-1.4.0.tar.gz 44912 BLAKE2B 595a644f8f92823ad31113ce88218cb30d16b37ec7303c0d8e89d2d2b1e18448d99003e95d61dcf09cb64aae517037bae798d1e89c74b652d517a648e80856e8 SHA512 dbcddc09331b794eafed8c2d7b81b7b632ba5cae2741e33ad12e781bc923427a05febd2f2715d037f35769b18c8d790546dfd4bbebe6e71d35777745e446888b
24
25 diff --git a/dev-python/rfc3986/rfc3986-1.4.0.ebuild b/dev-python/rfc3986/rfc3986-1.4.0.ebuild
26 new file mode 100644
27 index 00000000000..a132830441f
28 --- /dev/null
29 +++ b/dev-python/rfc3986/rfc3986-1.4.0.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python2_7 python3_{6..9} pypy3)
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Validating URI References per RFC 3986"
40 +HOMEPAGE="https://tools.ietf.org/html/rfc3986
41 + https://github.com/python-hyper/rfc3986
42 + https://rfc3986.rtfd.org"
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 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
48 +IUSE="idna"
49 +
50 +RDEPEND="
51 + idna? ( dev-python/idna[${PYTHON_USEDEP}] )
52 +"
53 +BDEPEND="
54 + test? ( dev-python/idna[${PYTHON_USEDEP}] )
55 +"
56 +
57 +distutils_enable_tests pytest