Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/entr/
Date: Fri, 18 Dec 2015 16:33:52
Message-Id: 1450456361.cd624bb9dd8e8431f3a05d58ec0ffb6d3c972d20.monsieurp@gentoo
1 commit: cd624bb9dd8e8431f3a05d58ec0ffb6d3c972d20
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 18 10:20:32 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 18 16:32:41 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd624bb9
7
8 app-admin/entr: Version bump.
9
10 Package-Manager: portage-2.2.20.1
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 app-admin/entr/Manifest | 1 +
14 app-admin/entr/entr-3.4.ebuild | 32 ++++++++++++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/app-admin/entr/Manifest b/app-admin/entr/Manifest
18 index 14d0172..772bc1b 100644
19 --- a/app-admin/entr/Manifest
20 +++ b/app-admin/entr/Manifest
21 @@ -1 +1,2 @@
22 DIST entr-3.3.tar.gz 22159 SHA256 701cb7b0a72b6c9ba794ad7cc15b6ebcc2e0c978bb6906c8ae407567a044461f SHA512 aa45bef57fb12d5ddaaebd8de03df33b69a833e4b729ad9fb0844af1c8b7031fc37ca1c81170b20967aa7dbf8854849a7b1f46da6d1d13a49d4d33502269bbca WHIRLPOOL 97f256bb37f0e517365ef7f3353d08b7c702a8182051c985c13efee3613d43eeda9da8a2911407a733c5f51e66e0fd5204a07b13f11c49ab7449ddb7d69b4334
23 +DIST entr-3.4.tar.gz 22443 SHA256 ce7d000fd6f2b711df905e9a6d8a2a0f50026ebaf34afeb9132d52617b6e010a SHA512 c765b50fa131a3d89ef99856ece5a223a43f6bd8fb3df37b51ae1b27e9f22b05a7ca4dcce1752a255a2dd4634d8fb55fc499bb837c5005dc3bf095b7910d47d0 WHIRLPOOL 0617b5a39d735ddbc3fae9802b741874d78b50f84749ea775cfa11c673e6651bdf6eeb5cb0e4ab6e9c145408c3bb24800591d16335aa4022dcc8c07445d73536
24
25 diff --git a/app-admin/entr/entr-3.4.ebuild b/app-admin/entr/entr-3.4.ebuild
26 new file mode 100644
27 index 0000000..6cafdf9
28 --- /dev/null
29 +++ b/app-admin/entr/entr-3.4.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +DESCRIPTION="Run arbitrary commands when files change"
38 +HOMEPAGE="http://entrproject.org/"
39 +SRC_URI="http://entrproject.org/code/${P}.tar.gz"
40 +
41 +LICENSE="ISC"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
44 +IUSE="test"
45 +
46 +src_unpack() {
47 + unpack "${P}.tar.gz"
48 + mv eradman-* "${P}"
49 +}
50 +
51 +src_configure() {
52 + sh configure || die
53 + sed -i -e 's#\(^PREFIX \).*#\1\?= /usr#' Makefile.bsd || die
54 +}
55 +
56 +src_test() {
57 + emake test
58 +}
59 +
60 +src_install() {
61 + emake DESTDIR="${D}" install
62 +}