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/gpep517/
Date: Sat, 27 Aug 2022 23:12:15
Message-Id: 1661579934.d945ef7ba6b3be38e33195484ecc215da7ec451c.mgorny@gentoo
1 commit: d945ef7ba6b3be38e33195484ecc215da7ec451c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 27 05:58:54 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 27 05:58:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d945ef7b
7
8 dev-python/gpep517: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/gpep517/Manifest | 1 -
13 dev-python/gpep517/gpep517-8.ebuild | 41 -------------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/gpep517/Manifest b/dev-python/gpep517/Manifest
17 index 8cfae3e3b83e..1d5c068e1e5b 100644
18 --- a/dev-python/gpep517/Manifest
19 +++ b/dev-python/gpep517/Manifest
20 @@ -1,2 +1 @@
21 -DIST gpep517-8.gh.tar.gz 12858 BLAKE2B d02acc844f79495847b151449e2cbc3378122eaf4ae97957f4a3a447cac0adcb9d7fa065e79c52e3901bead5c2112ad140e16689e56fa1a09b8b68078c41210c SHA512 40a405e0d4700a62c7e1aaa8b2679849e18ad5d76b4b733c18632c549c4038ba8594fb48a86ba612b162ef9f433cad90fa3ee7fc92f45b13b88fed7e4cca16b0
22 DIST gpep517-9.gh.tar.gz 15227 BLAKE2B b3c2b3e4452a7e27725eea0a6a0b1b362e1ea6bbdae44d99a2992c9edac80a4fdbf2ed75a231004534039c6d6f6db54d9fdbdc7c2c7044bb85cbc3f88484be41 SHA512 94cd1ddb1de7844504906b056ec5eb9d0e80da4f6bde6b561075c754a78a97e6db6025a793592c9498fad54ebab48c5497b29268c40d6992f5ef793a698b9da1
23
24 diff --git a/dev-python/gpep517/gpep517-8.ebuild b/dev-python/gpep517/gpep517-8.ebuild
25 deleted file mode 100644
26 index 899810bac85d..000000000000
27 --- a/dev-python/gpep517/gpep517-8.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
34 -EAPI=7
35 -
36 -DISTUTILS_USE_PEP517=no
37 -PYTHON_COMPAT=( pypy3 python3_{8..11} )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="A backend script to aid installing Python packages in Gentoo"
42 -HOMEPAGE="
43 - https://pypi.org/project/gpep517/
44 - https://github.com/mgorny/gpep517/
45 -"
46 -SRC_URI="
47 - https://github.com/mgorny/gpep517/archive/v${PV}.tar.gz
48 - -> ${P}.gh.tar.gz
49 -"
50 -
51 -LICENSE="MIT"
52 -SLOT="0"
53 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
54 -
55 -RDEPEND="
56 - >=dev-python/installer-0.5.0[${PYTHON_USEDEP}]
57 - >=dev-python/tomli-1.2.3[${PYTHON_USEDEP}]
58 -"
59 -
60 -distutils_enable_tests pytest
61 -
62 -python_install() {
63 - python_domodule gpep517
64 - python_newscript - gpep517 <<-EOF
65 - #!${EPREFIX}/usr/bin/python
66 - import sys
67 - from gpep517.__main__ import main
68 - sys.exit(main())
69 - EOF
70 -}