Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/inotify-tools/
Date: Tue, 09 Jan 2018 11:44:26
Message-Id: 1515498256.06395c58d5fc0d838d9308965f186970527972b6.polynomial-c@gentoo
1 commit: 06395c58d5fc0d838d9308965f186970527972b6
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 9 11:43:58 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 9 11:44:16 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06395c58
7
8 sys-fs/inotify-tools: Bump to version 3.20.1
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 sys-fs/inotify-tools/Manifest | 1 +
13 sys-fs/inotify-tools/inotify-tools-3.20.1.ebuild | 37 ++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/sys-fs/inotify-tools/Manifest b/sys-fs/inotify-tools/Manifest
17 index 46902484396..a1480516c91 100644
18 --- a/sys-fs/inotify-tools/Manifest
19 +++ b/sys-fs/inotify-tools/Manifest
20 @@ -1 +1,2 @@
21 DIST inotify-tools-3.14.tar.gz 358772 BLAKE2B 99a0b82942d227e3c237edd6ca07bea68a7bbc07fd97bc5d44cb3c07e5e3bfee9513255fe675667872b027f93edd1137c30b61da7c0ef3986994aa812ca74d15 SHA512 6074d510e89bba5da0d7c4d86f2562c662868666ba0a7ea5d73e53c010a0050dd1fc01959b22cffdb9b8a35bd1b0b43c04d02d6f19927520f05889e8a9297dfb
22 +DIST inotify-tools-3.20.1.tar.gz 79564 BLAKE2B 4b1235951f55ecb7c6c92b06b68dedebad8677c2265616dddd275bf627034b66b5756cf17a2f68f4201a78b043ec8a0800f115f3952c19875ae7f524b9b21382 SHA512 a97d27e6033036f0db5c0737bee3510206db9f4c843f0d18f1b2e179e838624ea33316c34fd9917c158dbb3580367908e90042fb1bfb146f150c32833b0b2ff2
23
24 diff --git a/sys-fs/inotify-tools/inotify-tools-3.20.1.ebuild b/sys-fs/inotify-tools/inotify-tools-3.20.1.ebuild
25 new file mode 100644
26 index 00000000000..9f5d0f02a1c
27 --- /dev/null
28 +++ b/sys-fs/inotify-tools/inotify-tools-3.20.1.ebuild
29 @@ -0,0 +1,37 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit autotools
36 +
37 +DESCRIPTION="a set of command-line programs providing a simple interface to inotify"
38 +HOMEPAGE="https://github.com/rvoicilas/inotify-tools/wiki"
39 +SRC_URI="https://github.com/rvoicilas/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~hppa ~mips ~sparc ~x86"
44 +IUSE="doc"
45 +
46 +DEPEND="doc? ( app-doc/doxygen )"
47 +RDEPEND=""
48 +
49 +src_prepare() {
50 + default
51 + eautoreconf
52 +}
53 +
54 +src_configure() {
55 + # only docs installed are doxygen ones, so use /html
56 + local myeconfargs=(
57 + --docdir='$(datarootdir)'/doc/${PF}/html
58 + $(use_enable doc doxygen)
59 + )
60 + econf "${myeconfargs[@]}"
61 +}
62 +
63 +src_install() {
64 + default
65 + find "${ED%/}" \( -name '*.a*' -o -name '*.la' \) -delete || die
66 +}