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/uri_template/
Date: Fri, 24 Jun 2022 18:35:26
Message-Id: 1656095714.6d62b8320af72b8b2d6c7b2a5d6bf229d6062cd1.mgorny@gentoo
1 commit: 6d62b8320af72b8b2d6c7b2a5d6bf229d6062cd1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 24 18:34:45 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 24 18:35:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d62b832
7
8 dev-python/uri_template: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/uri_template/Manifest | 1 -
13 dev-python/uri_template/uri_template-1.1.0.ebuild | 23 -----------------------
14 2 files changed, 24 deletions(-)
15
16 diff --git a/dev-python/uri_template/Manifest b/dev-python/uri_template/Manifest
17 index 687bf0c895a0..24363e96fbc0 100644
18 --- a/dev-python/uri_template/Manifest
19 +++ b/dev-python/uri_template/Manifest
20 @@ -1,2 +1 @@
21 -DIST uri_template-v1.1.0.tar.gz 18014 BLAKE2B 01ac4439b6661d0d1e7adb5b5ebcc594497cdaeef24b33cbfc8a26f607e779a72ae20838dbbcce28278886c87df475adfd53c73287a4768d848f65b95ba2ce58 SHA512 b6d34931e750acc6c160e7157fc000984acc099023e9794163777679cbe706b8a646bab89e82171c0318827b7a7b9cfcfb997768120cabcf36e7982214321665
22 DIST uri_template-v1.2.0.tar.gz 18284 BLAKE2B cf857ccd8496111f61fb95af020514f1c484e5c3ff19829f28bc2dc112887fe276dac68aa21e0d092d42a22319e8d6ac8aff95c734aadd8417c56f57b0076256 SHA512 81b046bbc2dc4d5c0b40a76f13713c10e69d803e3d9da13ab69cc6d40569ef0a39c786a6637a66651a5c3d3e68807f923ad48a7feaf898ae3ca6fd03c0e68c37
23
24 diff --git a/dev-python/uri_template/uri_template-1.1.0.ebuild b/dev-python/uri_template/uri_template-1.1.0.ebuild
25 deleted file mode 100644
26 index 2aa659f49c57..000000000000
27 --- a/dev-python/uri_template/uri_template-1.1.0.ebuild
28 +++ /dev/null
29 @@ -1,23 +0,0 @@
30 -# Copyright 2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -MY_P="${PN}-v${PV}"
41 -DESCRIPTION="URI Template expansion in strict adherence to RFC 6570"
42 -HOMEPAGE="https://gitlab.linss.com/open-source/uri_template/"
43 -SRC_URI="https://gitlab.linss.com/open-source/${PN}/-/archive/v${PV}/${MY_P}.tar.gz"
44 -S="${WORKDIR}/${MY_P}"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
49 -
50 -python_test() {
51 - "${EPYTHON}" "test.py" || die "Tests fail with ${EPYTHON}."
52 -}