summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-05-18 17:59:27 +0100
committerSam James <sam@gentoo.org>2024-05-18 18:05:35 +0100
commit78a9cec4c072fda1396afdcab62aae114468e84b (patch)
treed2a28463f2cafd89326a5aef76954660ae5e1181
parentsys-apps/util-linux: drop 2.39.4 (diff)
downloadgentoo-78a9cec4c072fda1396afdcab62aae114468e84b.tar.gz
gentoo-78a9cec4c072fda1396afdcab62aae114468e84b.tar.bz2
gentoo-78a9cec4c072fda1396afdcab62aae114468e84b.zip
sys-process/parallel: drop 20240122
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--sys-process/parallel/Manifest2
-rw-r--r--sys-process/parallel/parallel-20240122.ebuild44
2 files changed, 0 insertions, 46 deletions
diff --git a/sys-process/parallel/Manifest b/sys-process/parallel/Manifest
index 9fa5d71da6c2..ba30f9b1f36a 100644
--- a/sys-process/parallel/Manifest
+++ b/sys-process/parallel/Manifest
@@ -1,4 +1,2 @@
-DIST parallel-20240122.tar.bz2 2586008 BLAKE2B 3563d5f7f29701b71531501ce070c712d06e16d70005bd7a18f890ad13e0c6035ea091239073ccceabcf4406bba6ea96275531e0ef67cf4b304ff56649100d60 SHA512 1fc7f1ceda8ef794f66e60c0f8fdf589aaa77ced243409741892373af9a2d698541d4c365ad61056868a2f11f4934db02374da4c121ebc418785c5a72fd47b3e
-DIST parallel-20240122.tar.bz2.sig 2080 BLAKE2B 35485c023a1d949af25a5be431bb3a4d04be9fd31ae524fa0591516b53bc8753d4083ff7dde534df64771d314d6b3f9da71c21d65ebf03922ef51d33ad8db07e SHA512 441700b02c32cb472fffd0241c8de4d8ca266f4b59d23fde3ccbafe8726d68623aa76ec4b0617af8b9f5275f405b1f455ee82baa3949b70a52e88d0a336cdeb0
DIST parallel-20240222.tar.bz2 2570609 BLAKE2B 79a2b2810601b2613555ef76124b250ed0b614da30cfe250c0c4cfa578948bfaabce93cda0dcfff3d43cdf520b12f13b5569347569d95dbd3574b5e4aac411e2 SHA512 afbee9496e48ba4089b7f5ce5115d02d4e609d8f48ee2f715bbef62bda8b429da65d1457880d707d1f43482e751c75f5ede52489abed29ef8c110c55132fc547
DIST parallel-20240222.tar.bz2.sig 2080 BLAKE2B 982d4ea8c513f972905fdae6adebc3fb5756898f6fcd65563c87b3484bffec4a0ef3660265b2df343b4437c6930918101c886014c3332e30c9bac03031ccd471 SHA512 527bfc24ef29f60894538890d16bbff53c1df44b8d1a51750ec2f19207bbe66bddd19f6c4fb2e4778ed4f0166405c87769ee2681490b3ffa8cc627d8c33da810
diff --git a/sys-process/parallel/parallel-20240122.ebuild b/sys-process/parallel/parallel-20240122.ebuild
deleted file mode 100644
index 1a844c522b5e..000000000000
--- a/sys-process/parallel/parallel-20240122.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/oletange.asc
-inherit verify-sig
-
-DESCRIPTION="A shell tool for executing jobs in parallel locally or on remote machines"
-HOMEPAGE="https://www.gnu.org/software/parallel/ https://git.savannah.gnu.org/cgit/parallel.git/"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
-SRC_URI+=" verify-sig? ( mirror://gnu/${PN}/${P}.tar.bz2.sig )"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-RDEPEND="
- dev-lang/perl
- dev-perl/Devel-Size
- dev-perl/Text-CSV
- virtual/perl-Data-Dumper
- virtual/perl-File-Temp
- virtual/perl-IO
-"
-DEPEND="${RDEPEND}"
-BDEPEND="verify-sig? ( >=sec-keys/openpgp-keys-oletange-20210423 )"
-
-src_configure() {
- # bug #908214
- unset PARALLEL_HOME
-
- econf --docdir="${EPREFIX}"/usr/share/doc/${PF}/html
-}
-
-src_compile() {
- # Silence a warning where it tries to use pod2pdf; force it to fallback
- # to pre-generated PDF.
- mkdir "${T}"/fake || die
- ln -s "${BROOT}"/bin/false "${T}"/fake/pod2pdf || die
- export PATH="${T}/fake:${PATH}"
-
- default
-}