commit: fe1cccdeb51c626650409bc81270719b259f2546 Author: Henning Schild <henning <AT> hennsch <DOT> de> AuthorDate: Sun Feb 6 20:25:59 2022 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Mon Feb 7 11:10:38 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe1cccde
dev-util/bats: drop old Signed-off-by: Henning Schild <henning <AT> hennsch.de> Closes: https://github.com/gentoo/gentoo/pull/24098 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> dev-util/bats/Manifest | 2 -- dev-util/bats/bats-1.3.0.ebuild | 45 ------------------------------------- dev-util/bats/bats-1.4.1.ebuild | 49 ----------------------------------------- 3 files changed, 96 deletions(-) diff --git a/dev-util/bats/Manifest b/dev-util/bats/Manifest index 8b55c57b4ac8..7a38c0e20a84 100644 --- a/dev-util/bats/Manifest +++ b/dev-util/bats/Manifest @@ -1,3 +1 @@ -DIST bats-1.3.0.tar.gz 78392 BLAKE2B 5dbc87ee87aba0b001d25f1304939604b1682603fb0d2fae19f852171e8bd76f1a6c262b661a373aeeb9b79818eae3387b3e4d6bcf4f0f95b87dc2430caf029f SHA512 47f67681b380a70863805691eca39532af76670b7bba2406293c58f95cbbe3dade4f792177ee00d8ca72684731efb6db2c1ca8eeabe2fa48359e81c257f95b2c -DIST bats-1.4.1.tar.gz 98964 BLAKE2B e7cb70d2d0f448e4336ccf1fe51e93730a7179a782247e28ee906eb576fc02305aeeb2a580b5d34220daf8dfd2ee1d3269fb86a386fdf00483bd3b234df3b75e SHA512 3b00af13ac97d38349f09db79179e170e2b37c5364815e0e1fb957e6593a564d291bb50c54776088dd5784ef8cd597f0c332ec3a574bcef65e3083a5f2fc1f0e DIST bats-1.5.0.tar.gz 108052 BLAKE2B 68bba9d263e4206ead7039da2b09c5211c834445efdf429dca6c53acc5409de1052ce7ffa9143e732d3aeaeb6ea6dcaf9b419adc02776e601545557dea776e36 SHA512 e0386fb32214db67ae001a2040c44277988af7fa909a820843237c7d47eedfa4e370238d5b2d06a4667b874cad4b00f2cd14624b1bc45628192e5d693bd5073a diff --git a/dev-util/bats/bats-1.3.0.ebuild b/dev-util/bats/bats-1.3.0.ebuild deleted file mode 100644 index 2ce4d2225efd..000000000000 --- a/dev-util/bats/bats-1.3.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit optfeature - -MY_PN="bats-core" -DESCRIPTION="Bats-core: Bash Automated Testing System" -HOMEPAGE="https://github.com/bats-core/bats-core/" -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv x86" - -DEPEND="app-shells/bash:*" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_PN}-${PV}" - -src_prepare() { - default - # "parallelity factor is met exactly" fails in portage, disable - sed -i -e 's/@test "parallelity factor is met exactly" {$/@test "parallelity factor is met exactly" { skip "gentoo"/' test/parallel.bats || die -} - -src_test() { - bin/bats --tap test || die "Tests failed" -} - -src_install() { - exeinto /usr/libexec/${MY_PN} - doexe libexec/${MY_PN}/* - exeinto /usr/lib/${MY_PN} - doexe lib/${MY_PN}/* - dobin bin/${PN} - - dodoc README.md - doman man/${PN}.1 man/${PN}.7 -} - -pkg_postinst() { - optfeature "Parallel Execution" sys-process/parallel -} diff --git a/dev-util/bats/bats-1.4.1.ebuild b/dev-util/bats/bats-1.4.1.ebuild deleted file mode 100644 index 86390c1dbd6b..000000000000 --- a/dev-util/bats/bats-1.4.1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit multiprocessing optfeature - -MY_PN="bats-core" -DESCRIPTION="Bats-core: Bash Automated Testing System" -HOMEPAGE="https://github.com/bats-core/bats-core/" -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" - -DEPEND="app-shells/bash:*" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_PN}-${PV}" - -src_prepare() { - default - # "parallelity factor is met exactly" fails in portage, disable - sed -i -e 's/@test "parallelity factor is met exactly" {$/@test "parallelity factor is met exactly" { skip "gentoo"/' test/parallel.bats || die -} - -src_test() { - local my_jobs=$(makeopts_jobs) - if ! command -v parallel >/dev/null; then - my_jobs=1 - fi - bin/bats --tap --jobs "${my_jobs}" test || die "Tests failed" -} - -src_install() { - exeinto /usr/libexec/${MY_PN} - doexe libexec/${MY_PN}/* - exeinto /usr/lib/${MY_PN} - doexe lib/${MY_PN}/* - dobin bin/${PN} - - dodoc README.md - doman man/${PN}.1 man/${PN}.7 -} - -pkg_postinst() { - optfeature "Parallel Execution" sys-process/parallel -}
