Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/prll/
Date: Thu, 26 Jul 2018 15:38:01
Message-Id: 1532619465.16b91fc914799e45f963a99177bd1d7cfa50058a.monsieurp@gentoo
1 commit: 16b91fc914799e45f963a99177bd1d7cfa50058a
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 26 14:51:24 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 26 15:37:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b91fc9
7
8 sys-process/prll: version bump.
9
10 Also introduce the use of the readme.gentoo-r1 eclass to produce a
11 nicely formatted README file.
12
13 Closes: https://bugs.gentoo.org/662046
14 Package-Manager: Portage-2.3.40, Repoman-2.3.9
15
16 sys-process/prll/Manifest | 1 +
17 sys-process/prll/prll-0.6.4.ebuild | 41 ++++++++++++++++++++++++++++++++++++++
18 2 files changed, 42 insertions(+)
19
20 diff --git a/sys-process/prll/Manifest b/sys-process/prll/Manifest
21 index f5cdfca57a7..5d333284256 100644
22 --- a/sys-process/prll/Manifest
23 +++ b/sys-process/prll/Manifest
24 @@ -1 +1,2 @@
25 DIST prll-0.6.2.tar.bz2 37870 BLAKE2B 00adcb56e49dfe6a04235f628fee1aee5a0164ada30e3a2ac624f73f7e613c7bdd411012f01e8278bc95a1e8e96479d9177f48745759feb4681c0f75a6420419 SHA512 6157ab4d69ab21b0995d5e8e788605b9b602fa0268beae2d6b69e6bf32c734869f023d881ecdd0df83c1f45b584c88eef8beb88d2c58f657340697bf48dfd8cd
26 +DIST prll-0.6.4.tar.gz 49885 BLAKE2B 07a63ddc6260c302070f27488142118286a0312ef807a6eaebbac180dbfb479c78f66cfb96cddbb7a62c3d96a79a9c4962daf1fbd308ec475ae8d03a999fd276 SHA512 df830eae9be91e175444ba14c23efde3f10152b968ca6b1365e0ab57c68df1a00712a0e6d77cd02aae4ed7a23fc7c25f207ba08bc1559b8331c42dec1d38dbfa
27
28 diff --git a/sys-process/prll/prll-0.6.4.ebuild b/sys-process/prll/prll-0.6.4.ebuild
29 new file mode 100644
30 index 00000000000..1d9cfb0e744
31 --- /dev/null
32 +++ b/sys-process/prll/prll-0.6.4.ebuild
33 @@ -0,0 +1,41 @@
34 +# Copyright 1999-2018 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +inherit toolchain-funcs readme.gentoo-r1
40 +
41 +DESCRIPTION="A utility for parallelizing execution of shell functions"
42 +HOMEPAGE="https://github.com/exzombie/prll"
43 +SRC_URI="https://github.com/exzombie/prll/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 +RESTRICT="test"
49 +
50 +DOC_CONTENTS="
51 +You must source the prll.sh file located\nin /etc/profile.d to be able to use prll:\n
52 + $ source /etc/profile.d/prll.sh
53 +"
54 +
55 +src_prepare() {
56 + default
57 + sed \
58 + -e '/then sh/d' \
59 + -e '/then zsh/d' \
60 + -e '/then dash/d' \
61 + -i tests/Makefile || die
62 + tc-export CC
63 +}
64 +
65 +src_install() {
66 + emake PREFIX="/usr" DESTDIR="${D}" install
67 + einstalldocs
68 + readme.gentoo_create_doc
69 + rm -rf "${D}/usr/share/doc/prll" || die
70 +}
71 +
72 +pkg_postinst() {
73 + readme.gentoo_print_elog
74 +}