commit: 969ac1ee3198bc7e80d281687c544aca5f1d09f1 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri May 14 11:18:34 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri May 14 11:18:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=969ac1ee
sys-process/parallel: add dev-perl/Text-CSV dependency Needed for --csv. Signed-off-by: Sam James <sam <AT> gentoo.org> sys-process/parallel/parallel-20210422-r1.ebuild | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/sys-process/parallel/parallel-20210422-r1.ebuild b/sys-process/parallel/parallel-20210422-r1.ebuild new file mode 100644 index 00000000000..2222f4e7bd8 --- /dev/null +++ b/sys-process/parallel/parallel-20210422-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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="~amd64 ~arm ~ppc64 ~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? ( >=app-crypt/openpgp-keys-oletange-20210423 )" + +src_configure() { + econf --docdir="${EPREFIX}"/usr/share/doc/${PF}/html +}