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: Tue, 07 Jun 2022 06:55:04
Message-Id: 1654584834.634669af260018f8ddad10655c80aa3bd5b29e71.mgorny@gentoo
1 commit: 634669af260018f8ddad10655c80aa3bd5b29e71
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 26 09:44:41 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 7 06:53:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=634669af
7
8 dev-python/gpep517: Use DISTUTILS_USE_PEP517=no
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/gpep517/gpep517-6-r1.ebuild | 41 ++++++++++++++++++++++++++++++++++
13 1 file changed, 41 insertions(+)
14
15 diff --git a/dev-python/gpep517/gpep517-6-r1.ebuild b/dev-python/gpep517/gpep517-6-r1.ebuild
16 new file mode 100644
17 index 000000000000..ee64cb1d660f
18 --- /dev/null
19 +++ b/dev-python/gpep517/gpep517-6-r1.ebuild
20 @@ -0,0 +1,41 @@
21 +# Copyright 2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
25 +EAPI=7
26 +
27 +DISTUTILS_USE_PEP517=no
28 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
29 +
30 +inherit distutils-r1
31 +
32 +DESCRIPTION="A backend script to aid installing Python packages in Gentoo"
33 +HOMEPAGE="
34 + https://pypi.org/project/gpep517/
35 + https://github.com/mgorny/gpep517/
36 +"
37 +SRC_URI="
38 + https://github.com/mgorny/gpep517/archive/v${PV}.tar.gz
39 + -> ${P}.gh.tar.gz
40 +"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +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"
45 +
46 +RDEPEND="
47 + >=dev-python/installer-0.5.0[${PYTHON_USEDEP}]
48 + >=dev-python/tomli-1.2.3[${PYTHON_USEDEP}]
49 +"
50 +
51 +distutils_enable_tests pytest
52 +
53 +python_install() {
54 + python_domodule gpep517
55 + python_newscript - gpep517 <<-EOF
56 + #!${EPREFIX}/usr/bin/python
57 + import sys
58 + from gpep517.__main__ import main
59 + sys.exit(main())
60 + EOF
61 +}