diff options
author | Alexander Puck Neuwirth <alexander@neuwirth-informatik.de> | 2024-05-11 11:16:58 +0200 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2024-05-15 12:21:06 +0200 |
commit | 720e47898375d80725620d4f02a34a09bb8d090c (patch) | |
tree | 94f67d24d1d3b326958d60daa09d4848f4038274 /app-portage | |
parent | sys-apps/azure-nvme-utils: Depend on pandoc virtual (diff) | |
download | gentoo-720e47898375d80725620d4f02a34a09bb8d090c.tar.gz gentoo-720e47898375d80725620d4f02a34a09bb8d090c.tar.bz2 gentoo-720e47898375d80725620d4f02a34a09bb8d090c.zip |
app-portage/pkg-testing-tools: add 0.2.5
Signed-off-by: Alexander Puck Neuwirth <alexander@neuwirth-informatik.de>
Closes: https://github.com/gentoo/gentoo/pull/36637
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/pkg-testing-tools/Manifest | 1 | ||||
-rw-r--r-- | app-portage/pkg-testing-tools/pkg-testing-tools-0.2.5.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/app-portage/pkg-testing-tools/Manifest b/app-portage/pkg-testing-tools/Manifest index be1e12c99c39..662ee9f011cf 100644 --- a/app-portage/pkg-testing-tools/Manifest +++ b/app-portage/pkg-testing-tools/Manifest @@ -1,3 +1,4 @@ DIST pkg-testing-tools-0.1.2.gh.tar.gz 6180 BLAKE2B 7674573d165e8e04ef4555301bb15e6f3e7b6834096e4b9dcadf74bfc40dabcff5b694a323d6e1c62fa20d965be4f9f8c0b9459c5dacbd01f914669594aa15b4 SHA512 8d5933be8cd596089d4f8f5609d597330a1619b12f08049985b48519ecf10c3fd40971ee76b3bee793c082b8b96832aa2f5a2f6db8e1ca127a374986540e5ffc DIST pkg-testing-tools-0.2.2.gh.tar.gz 10896 BLAKE2B 8b48ef2c2a6d1700869b77e84fe6af74d5a748eb56881ff3c2ce9921f942e51745bd48d6e091a3b86704b610713ba5563198c2e9b31693cae6d25972fbcdbb20 SHA512 a9d0745a828e539ff948205fdbfc34150c380d23692498aa3e0fcec0bf9f46c2a01a57f1d5cac4b44a5c1f7c3ca3c1c346d8058a6ea54c390e51bf44cd5fb612 DIST pkg-testing-tools-0.2.4.gh.tar.gz 12361 BLAKE2B e60b322627f92ebccc33907d395763604e5531805c0ef3625c4b4511d2aa1a71dbaa71d6eb0bb2028738fcd13535fed4ffd4bdef189c528fddfbaac1d4e1044a SHA512 6dc28922940e281bbcd4fc065cb573dfb66cf0223d5aa11c514c24992512f6bf6e33200e8acb2a07ce87d648dd51844e43865b2e4bb64ed9ae9c6500259623c2 +DIST pkg-testing-tools-0.2.5.gh.tar.gz 12870 BLAKE2B 5ed2c55522212c00b7cc4919b38f94e32c5fbd63e9386b6b45ca1245ba738678e17d2e6d460e736a2e10da2b546ad7b054e5a2a339c45000d628f59d05a49a46 SHA512 0f1379222134e87068581fe33cdb875e2d6804b663c8203e437a3bf685a1def44512067c04ddd585902ef63c5585ee8ac7c8466f49df77c09e1f7af3bb6744d3 diff --git a/app-portage/pkg-testing-tools/pkg-testing-tools-0.2.5.ebuild b/app-portage/pkg-testing-tools/pkg-testing-tools-0.2.5.ebuild new file mode 100644 index 000000000000..c8cd079994a1 --- /dev/null +++ b/app-portage/pkg-testing-tools/pkg-testing-tools-0.2.5.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="Packages testing tools for Gentoo" +HOMEPAGE="https://github.com/APN-Pucky/pkg-testing-tools" + +REPO=APN-Pucky +LICENSE="BSD" +SLOT="0" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/${REPO}/${PN}" +else + KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" + SRC_URI="https://github.com/APN-Pucky/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" +fi + +IUSE="test" +RESTRICT="!test? ( test )" +RDEPEND=" + sys-apps/portage[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest |