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: app-portage/diffmask/
Date: Wed, 18 May 2022 07:36:19
Message-Id: 1652859364.afe42a78c42ae9603ba728f1e3869f785d407063.mgorny@gentoo
1 commit: afe42a78c42ae9603ba728f1e3869f785d407063
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 18 07:05:10 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 18 07:36:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afe42a78
7
8 app-portage/diffmask: Use PEP517 build
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-portage/diffmask/diffmask-0.3.3-r5.ebuild | 21 +++++++++++++++++++++
13 1 file changed, 21 insertions(+)
14
15 diff --git a/app-portage/diffmask/diffmask-0.3.3-r5.ebuild b/app-portage/diffmask/diffmask-0.3.3-r5.ebuild
16 new file mode 100644
17 index 000000000000..860f48575331
18 --- /dev/null
19 +++ b/app-portage/diffmask/diffmask-0.3.3-r5.ebuild
20 @@ -0,0 +1,21 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..9} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="A utility to maintain package.unmask entries up-to-date with masks"
32 +HOMEPAGE="https://github.com/mgorny/diffmask/"
33 +SRC_URI="https://github.com/mgorny/diffmask/releases/download/${P}/${P}.tar.bz2"
34 +
35 +LICENSE="BSD"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~arm64 ~mips ~x86 ~amd64-linux ~x86-linux"
38 +
39 +RDEPEND="
40 + sys-apps/portage[${PYTHON_USEDEP}]
41 +"