Gentoo Archives: gentoo-commits

From: Piotr Karbowski <slashbeast@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/pkg-testing-tools/
Date: Wed, 01 Mar 2023 22:34:08
Message-Id: 1677710038.fe9737e720cf5820a91982c7ec709d80ef676b94.slashbeast@gentoo
1 commit: fe9737e720cf5820a91982c7ec709d80ef676b94
2 Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 1 22:33:23 2023 +0000
4 Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 1 22:33:58 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe9737e7
7
8 app-portage/pkg-testing-tools: 0.1.1 version bump; py3.11; PEP517; gh.tar.
9
10 Closes: https://bugs.gentoo.org/896628
11 Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
12
13 app-portage/pkg-testing-tools/Manifest | 1 +
14 .../pkg-testing-tools-0.1.1.ebuild | 21 +++++++++++++++++++++
15 2 files changed, 22 insertions(+)
16
17 diff --git a/app-portage/pkg-testing-tools/Manifest b/app-portage/pkg-testing-tools/Manifest
18 index 936e7ff08c1e..cff5875a1865 100644
19 --- a/app-portage/pkg-testing-tools/Manifest
20 +++ b/app-portage/pkg-testing-tools/Manifest
21 @@ -1 +1,2 @@
22 DIST pkg-testing-tools-0.1.0.tar.gz 6131 BLAKE2B 6d8dddb81e57159df9f2e1897718433d29f330286afb868a1111db4e0bb7a53823df57a5d7084a24fd5807787f169fff137f5c6c0bdcddeec2c59090d9b90775 SHA512 05165d3790b4d38c939226d1149c0c44cd62fe222a199bce8f1e108d12475710f8482f82e2e2e45223ba24fd1b50451dea8b3761c8f474a59e660b9a67bf8ab4
23 +DIST pkg-testing-tools-0.1.1.gh.tar.gz 6184 BLAKE2B 6aa98fe5916a89bb1e4512e2fa015e1e48145e15c463476370247cc1447637e80ec485fdb2b9bb49a691ffc4a5c3bde3be04fbc91ba48e5e29cfc19ac66848ec SHA512 6fbd8dce11e6ba1427736585cab0496582e89b1a545017c4c59cff8735de29948d2b810bb6e01e3b66f6dfaa75c14e023e66b2dd7e01e81519bd2a4c90964561
24
25 diff --git a/app-portage/pkg-testing-tools/pkg-testing-tools-0.1.1.ebuild b/app-portage/pkg-testing-tools/pkg-testing-tools-0.1.1.ebuild
26 new file mode 100644
27 index 000000000000..7172c7fe5599
28 --- /dev/null
29 +++ b/app-portage/pkg-testing-tools/pkg-testing-tools-0.1.1.ebuild
30 @@ -0,0 +1,21 @@
31 +# Copyright 1999-2023 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{9..11} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Packages testing tools for Gentoo"
42 +HOMEPAGE="https://github.com/slashbeast/pkg-testing-tools"
43 +SRC_URI="https://github.com/slashbeast/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
48 +
49 +RDEPEND="
50 + sys-apps/portage[${PYTHON_USEDEP}]
51 +"