Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-process/parallel: parallel-20140122.ebuild ChangeLog
Date: Wed, 22 Jan 2014 23:28:58
Message-Id: 20140122232854.E33E52004C@flycatcher.gentoo.org
1 radhermit 14/01/22 23:28:54
2
3 Modified: ChangeLog
4 Added: parallel-20140122.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.58 sys-process/parallel/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/parallel/ChangeLog?rev=1.58&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/parallel/ChangeLog?rev=1.58&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/parallel/ChangeLog?r1=1.57&r2=1.58
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-process/parallel/ChangeLog,v
20 retrieving revision 1.57
21 retrieving revision 1.58
22 diff -u -r1.57 -r1.58
23 --- ChangeLog 23 Dec 2013 00:54:40 -0000 1.57
24 +++ ChangeLog 22 Jan 2014 23:28:54 -0000 1.58
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-process/parallel
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-process/parallel/ChangeLog,v 1.57 2013/12/23 00:54:40 radhermit Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-process/parallel/ChangeLog,v 1.58 2014/01/22 23:28:54 radhermit Exp $
31 +
32 +*parallel-20140122 (22 Jan 2014)
33 +
34 + 22 Jan 2014; Tim Harder <radhermit@g.o> +parallel-20140122.ebuild:
35 + Version bump.
36
37 23 Dec 2013; Tim Harder <radhermit@g.o> -parallel-20130222.ebuild,
38 -parallel-20130422.ebuild, -parallel-20130622.ebuild,
39
40
41
42 1.1 sys-process/parallel/parallel-20140122.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/parallel/parallel-20140122.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/parallel/parallel-20140122.ebuild?rev=1.1&content-type=text/plain
46
47 Index: parallel-20140122.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-process/parallel/parallel-20140122.ebuild,v 1.1 2014/01/22 23:28:54 radhermit Exp $
52
53 EAPI=5
54
55 DESCRIPTION="A shell tool for executing jobs in parallel locally or on remote machines"
56 HOMEPAGE="http://www.gnu.org/software/parallel/"
57 SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
62 IUSE=""
63
64 RDEPEND="dev-lang/perl
65 dev-perl/Devel-Size
66 virtual/perl-Data-Dumper
67 virtual/perl-File-Temp
68 virtual/perl-IO"
69 # moreutils for `parallel` and grass for 'sql.1' manpage
70 DEPEND="${RDEPEND}
71 !<sys-apps/moreutils-0.45-r1
72 !<sci-geosciences/grass-6.4.1-r1"
73
74 DOCS="NEWS README"
75
76 src_configure() {
77 econf --docdir="${EPREFIX}"/usr/share/doc/${PF}/html
78 }
79
80 src_install() {
81 default
82
83 # See src/Makefile.am for this one:
84 rm -f "${ED}"usr/bin/sem
85 dosym ${PN} /usr/bin/sem
86 }
87
88 pkg_postinst() {
89 elog "To distribute jobs to remote machines you'll need these dependencies"
90 elog " net-misc/openssh"
91 elog " net-misc/rsync"
92 }