Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/wait_on_pid/
Date: Thu, 07 Jul 2016 19:48:41
Message-Id: 1467920820.79a83cb45f9b5616974456a0fa2573c6ad116826.wizardedit@gentoo
1 commit: 79a83cb45f9b5616974456a0fa2573c6ad116826
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 7 19:32:29 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 7 19:47:00 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79a83cb4
7
8 sys-process/wait_on_pid: bump to EAPI 6, add maintainer-needed
9
10 Package-Manager: portage-2.2.28
11
12 sys-process/wait_on_pid/metadata.xml | 1 +
13 .../wait_on_pid/wait_on_pid-0.0.2-r1.ebuild | 29 ++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/sys-process/wait_on_pid/metadata.xml b/sys-process/wait_on_pid/metadata.xml
17 index 097975e..6f49eba 100644
18 --- a/sys-process/wait_on_pid/metadata.xml
19 +++ b/sys-process/wait_on_pid/metadata.xml
20 @@ -1,4 +1,5 @@
21 <?xml version="1.0" encoding="UTF-8"?>
22 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
23 <pkgmetadata>
24 +<!-- maintainer-needed -->
25 </pkgmetadata>
26
27 diff --git a/sys-process/wait_on_pid/wait_on_pid-0.0.2-r1.ebuild b/sys-process/wait_on_pid/wait_on_pid-0.0.2-r1.ebuild
28 new file mode 100644
29 index 0000000..1baae42
30 --- /dev/null
31 +++ b/sys-process/wait_on_pid/wait_on_pid-0.0.2-r1.ebuild
32 @@ -0,0 +1,29 @@
33 +# Copyright 1999-2016 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI="6"
38 +
39 +inherit toolchain-funcs
40 +
41 +DESCRIPTION="small utility to wait for an arbitrary process to exit"
42 +HOMEPAGE="https://dev.gentoo.org/~zzam/wait_on_pid/"
43 +SRC_URI="mirror://gentoo/$P.tar.bz2 https://dev.gentoo.org/~zzam/wait_on_pid/$P.tar.bz2"
44 +
45 +LICENSE="GPL-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux"
48 +IUSE=""
49 +
50 +DEPEND=""
51 +RDEPEND=""
52 +
53 +src_prepare() {
54 + default
55 + tc-export CC
56 +}
57 +
58 +src_install() {
59 + default
60 + dobin wait_on_pid
61 +}