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: Sun, 11 Jul 2021 18:41:11
Message-Id: 1626028863.9abebf25b3b6875e448adc7ea4d2a5dc13bb171b.slashbeast@gentoo
1 commit: 9abebf25b3b6875e448adc7ea4d2a5dc13bb171b
2 Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 11 18:40:42 2021 +0000
4 Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 11 18:41:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9abebf25
7
8 app-portage/pkg-testing-tools: new package.
9
10 Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
11
12 app-portage/pkg-testing-tools/Manifest | 1 +
13 app-portage/pkg-testing-tools/metadata.xml | 11 +++++++++++
14 .../pkg-testing-tools/pkg-testing-tools-0.1.0.ebuild | 19 +++++++++++++++++++
15 3 files changed, 31 insertions(+)
16
17 diff --git a/app-portage/pkg-testing-tools/Manifest b/app-portage/pkg-testing-tools/Manifest
18 new file mode 100644
19 index 00000000000..936e7ff08c1
20 --- /dev/null
21 +++ b/app-portage/pkg-testing-tools/Manifest
22 @@ -0,0 +1 @@
23 +DIST pkg-testing-tools-0.1.0.tar.gz 6131 BLAKE2B 6d8dddb81e57159df9f2e1897718433d29f330286afb868a1111db4e0bb7a53823df57a5d7084a24fd5807787f169fff137f5c6c0bdcddeec2c59090d9b90775 SHA512 05165d3790b4d38c939226d1149c0c44cd62fe222a199bce8f1e108d12475710f8482f82e2e2e45223ba24fd1b50451dea8b3761c8f474a59e660b9a67bf8ab4
24
25 diff --git a/app-portage/pkg-testing-tools/metadata.xml b/app-portage/pkg-testing-tools/metadata.xml
26 new file mode 100644
27 index 00000000000..4a891574f8c
28 --- /dev/null
29 +++ b/app-portage/pkg-testing-tools/metadata.xml
30 @@ -0,0 +1,11 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>slashbeast@g.o</email>
36 + <name>Piotr Karbowski</name>
37 + </maintainer>
38 + <upstream>
39 + <remote-id type="github">slashbeast/pkg-testing-tools</remote-id>
40 + </upstream>
41 +</pkgmetadata>
42
43 diff --git a/app-portage/pkg-testing-tools/pkg-testing-tools-0.1.0.ebuild b/app-portage/pkg-testing-tools/pkg-testing-tools-0.1.0.ebuild
44 new file mode 100644
45 index 00000000000..a6616c03208
46 --- /dev/null
47 +++ b/app-portage/pkg-testing-tools/pkg-testing-tools-0.1.0.ebuild
48 @@ -0,0 +1,19 @@
49 +# Copyright 1999-2021 Gentoo Authors
50 +# Distributed under the terms of the GNU General Public License v2
51 +
52 +EAPI=7
53 +
54 +PYTHON_COMPAT=( python3_{8..10} )
55 +inherit distutils-r1
56 +
57 +DESCRIPTION="Packages testing tools for Gentoo"
58 +HOMEPAGE="https://github.com/slashbeast/pkg-testing-tools"
59 +SRC_URI="https://github.com/slashbeast/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
60 +
61 +LICENSE="BSD"
62 +SLOT="0"
63 +KEYWORDS="~amd64 ~x86"
64 +
65 +RDEPEND="
66 + sys-apps/portage[${PYTHON_USEDEP}]
67 +"