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/hyperlink/
Date: Wed, 05 Aug 2020 07:50:56
Message-Id: 1596613845.ba8d86af580e0c7191e77e479349aecae6ac9150.mgorny@gentoo
1 commit: ba8d86af580e0c7191e77e479349aecae6ac9150
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 5 05:40:02 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 5 07:50:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba8d86af
7
8 dev-python/hyperlink: Bump to 20.0.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/hyperlink/Manifest | 1 +
13 dev-python/hyperlink/hyperlink-20.0.1.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/hyperlink/Manifest b/dev-python/hyperlink/Manifest
17 index ed40bc847e4..dac2d61d04f 100644
18 --- a/dev-python/hyperlink/Manifest
19 +++ b/dev-python/hyperlink/Manifest
20 @@ -1 +1,2 @@
21 DIST hyperlink-19.0.0.tar.gz 99099 BLAKE2B 1213bbc404ebf04f178e3f8b986c343f64cd6a75202942d1cfaeab640d1523388beaafcd2662f414c9fb1eb87f746f3edeb5b5e395b9fc0acb7e82697f45f7a2 SHA512 5d5723bc0bd0c381edd3a9ef7bab3ba9ad4252027d5a4afa61e6cfff3e5b8457994b6dd36ecc356e638d41f797fe3367a3010249e0e77bee6e9e94336c1e7c2e
22 +DIST hyperlink-20.0.1.tar.gz 140291 BLAKE2B ee8c741d4cb87e4a577e1c9a45614f5f47e086f27b60a75897b66684ab5927da73ccaba47b16b770f0277a52351cc732cf74762e29c83644c220ed59c67a18d0 SHA512 f935c09d35baf8a8a3c8d4dc6aaf64135d13dda4636187f5d47f3fe4de675498efa29cd93d802c0912db2fa371d0e58213767b1c3c42e5a14bb837ea96a72193
23
24 diff --git a/dev-python/hyperlink/hyperlink-20.0.1.ebuild b/dev-python/hyperlink/hyperlink-20.0.1.ebuild
25 new file mode 100644
26 index 00000000000..d1adb23821d
27 --- /dev/null
28 +++ b/dev-python/hyperlink/hyperlink-20.0.1.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +PYTHON_COMPAT=( python3_{6,7,8,9} )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="A featureful, correct URL for Python"
39 +HOMEPAGE="https://github.com/python-hyper/hyperlink https://pypi.org/project/hyperlink/"
40 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="BSD MIT"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
45 +
46 +RDEPEND="
47 + dev-python/idna[${PYTHON_USEDEP}]"
48 +
49 +distutils_enable_tests pytest
50 +
51 +src_test() {
52 + # suppresses hypothesis health checks
53 + local -x CI=1
54 + distutils-r1_src_test
55 +}