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/pylev/
Date: Fri, 19 Aug 2022 10:49:02
Message-Id: 1660906133.dfcc941de3a9f04c7f6b9aed88d6e97fdfafc789.mgorny@gentoo
1 commit: dfcc941de3a9f04c7f6b9aed88d6e97fdfafc789
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 19 10:46:27 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 19 10:48:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfcc941d
7
8 dev-python/pylev: Modernize
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pylev/Manifest | 1 +
13 dev-python/pylev/pylev-1.4.0-r1.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/dev-python/pylev/Manifest b/dev-python/pylev/Manifest
17 index 9add27a3a01c..fba4b3fc7099 100644
18 --- a/dev-python/pylev/Manifest
19 +++ b/dev-python/pylev/Manifest
20 @@ -1 +1,2 @@
21 +DIST pylev-1.4.0.gh.tar.gz 4895 BLAKE2B d49e153d308165dcdc06bad94013afa4ccc6d2a6ecff943a2718a8f9ab71bbacb9c0cf8b604dbf0c77322a8d0cbeba5ffaed13531a31210507f144f716f8e740 SHA512 3999adf04b159499a199b1aa66e2540904c689c50a407bf7e0cc0affe834ea289006d2fc73f65e4fcd486c755c580e9657dc5c67290dccb4704bebc6a4348de3
22 DIST pylev-1.4.0.tar.gz 4895 BLAKE2B d49e153d308165dcdc06bad94013afa4ccc6d2a6ecff943a2718a8f9ab71bbacb9c0cf8b604dbf0c77322a8d0cbeba5ffaed13531a31210507f144f716f8e740 SHA512 3999adf04b159499a199b1aa66e2540904c689c50a407bf7e0cc0affe834ea289006d2fc73f65e4fcd486c755c580e9657dc5c67290dccb4704bebc6a4348de3
23
24 diff --git a/dev-python/pylev/pylev-1.4.0-r1.ebuild b/dev-python/pylev/pylev-1.4.0-r1.ebuild
25 new file mode 100644
26 index 000000000000..0baaed9b640d
27 --- /dev/null
28 +++ b/dev-python/pylev/pylev-1.4.0-r1.ebuild
29 @@ -0,0 +1,25 @@
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=( python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python Levenshtein implementation"
41 +HOMEPAGE="
42 + https://github.com/toastdriven/pylev/
43 + https://pypi.org/project/pylev/
44 +"
45 +SRC_URI="
46 + https://github.com/toastdriven/pylev/archive/v${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="BSD"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
53 +
54 +distutils_enable_tests unittest