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: Fri, 08 Jan 2021 09:30:02
Message-Id: 1610098194.39391ccf7435674d3066dfaa18662d7886f9c906.mgorny@gentoo
1 commit: 39391ccf7435674d3066dfaa18662d7886f9c906
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 8 09:13:42 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 8 09:29:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39391ccf
7
8 dev-python/hyperlink: Bump to 21.0.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/hyperlink/Manifest | 1 +
13 dev-python/hyperlink/hyperlink-21.0.0.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/hyperlink/Manifest b/dev-python/hyperlink/Manifest
17 index 94926bbd5d4..e528cc8bc8d 100644
18 --- a/dev-python/hyperlink/Manifest
19 +++ b/dev-python/hyperlink/Manifest
20 @@ -1 +1,2 @@
21 DIST hyperlink-20.0.1.tar.gz 140291 BLAKE2B ee8c741d4cb87e4a577e1c9a45614f5f47e086f27b60a75897b66684ab5927da73ccaba47b16b770f0277a52351cc732cf74762e29c83644c220ed59c67a18d0 SHA512 f935c09d35baf8a8a3c8d4dc6aaf64135d13dda4636187f5d47f3fe4de675498efa29cd93d802c0912db2fa371d0e58213767b1c3c42e5a14bb837ea96a72193
22 +DIST hyperlink-21.0.0.tar.gz 140743 BLAKE2B d432692172dc5cbb4f7cc1dbbfaf87871f0d9b2519334d112841abf8d958232516249472611e986b20e6fd298f5013db38f214fa332e1b121bd80a420b4cc614 SHA512 9e0e9273dde1b0a41329a74fbb26c4f327b87f387ee64b9a2ab641ca5cc8b9ea0516884415e9adf1d4880ae9c053a5cba2c550fc508bb56fddb44a543d5da860
23
24 diff --git a/dev-python/hyperlink/hyperlink-21.0.0.ebuild b/dev-python/hyperlink/hyperlink-21.0.0.ebuild
25 new file mode 100644
26 index 00000000000..48f99bd74f0
27 --- /dev/null
28 +++ b/dev-python/hyperlink/hyperlink-21.0.0.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +PYTHON_COMPAT=( python3_{7..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 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
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 +}