Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/inotify-tools/
Date: Wed, 29 Jun 2022 17:22:55
Message-Id: 1656523357.e43933c11a7170a10cae989eb04757af99660be8.ionen@gentoo
1 commit: e43933c11a7170a10cae989eb04757af99660be8
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 16:39:21 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 17:22:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e43933c1
7
8 sys-fs/inotify-tools: drop 3.22.1.0
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 sys-fs/inotify-tools/Manifest | 1 -
13 sys-fs/inotify-tools/inotify-tools-3.22.1.0.ebuild | 42 ----------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/sys-fs/inotify-tools/Manifest b/sys-fs/inotify-tools/Manifest
17 index a4b4dac3c8e1..ddce5122eb32 100644
18 --- a/sys-fs/inotify-tools/Manifest
19 +++ b/sys-fs/inotify-tools/Manifest
20 @@ -1,3 +1,2 @@
21 DIST inotify-tools-3.20.2.2.tar.gz 81006 BLAKE2B 7dd29985f68096fe2146a3ad84d619b3d1238b0db25eeb125f2fe9591fa678078351f00c7e09b526cf2251e4736201d5625ff0e477523cae370a307ccb667730 SHA512 72d6fdcc216d8083cd384c71c02dc8e800d3a9702613568b3c571f704aee3d42bf084c52f2141c9afb8d28e8b87ebb6391ed3d825b3d664ed51c552debeb1881
22 -DIST inotify-tools-3.22.1.0.tar.gz 92922 BLAKE2B 42558ca62f79e2bdf5a6071334a05cee826ec00b0666b1c0971af64d769eb7852cbcd8d6e630f88af68f26f5607ca4ef94ec832fbe2e89d42182120aac4896ce SHA512 53317147af4803b69603839c010a2b0b3fa527f0e32b08126f24805600728c0a9570b2a3d94bf987f0b9a4bfbe7207b5faa9337f0d7add91b062e68de4245548
23 DIST inotify-tools-3.22.6.0.tar.gz 92918 BLAKE2B 601d3ac6896e445d297a04498c63df4f81c59699ba2d5b2eee2e8c499332913ce2783d13c9906d577ff0b6d7ef91ca826d48b01674adeb3d3569dfc1fbc0df63 SHA512 cda445add4b9d80b70eff9189ed50d05f4b5593a755159d0354431166c6fe6fdb33f7bf37fd50bc09aad3ed0a6e3763b9c74f65e554400f2596b8d492f1d0a21
24
25 diff --git a/sys-fs/inotify-tools/inotify-tools-3.22.1.0.ebuild b/sys-fs/inotify-tools/inotify-tools-3.22.1.0.ebuild
26 deleted file mode 100644
27 index 2d25f84ae71b..000000000000
28 --- a/sys-fs/inotify-tools/inotify-tools-3.22.1.0.ebuild
29 +++ /dev/null
30 @@ -1,42 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="a set of command-line programs providing a simple interface to inotify"
39 -HOMEPAGE="https://github.com/inotify-tools/inotify-tools"
40 -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~riscv ~sparc ~x86"
45 -IUSE="doc"
46 -
47 -BDEPEND="doc? ( app-doc/doxygen )"
48 -
49 -src_prepare() {
50 - default
51 -
52 - # Remove -Werror from CFLAGS (#745069)
53 - find -name "Makefile.am" -print0 \
54 - | xargs --null sed 's@ -Werror@@' -i || die
55 -
56 - eautoreconf
57 -}
58 -
59 -src_configure() {
60 - # only docs installed are doxygen ones, so use /html
61 - local myeconfargs=(
62 - --disable-static
63 - --docdir='$(datarootdir)'/doc/${PF}/html
64 - $(use_enable doc doxygen)
65 - )
66 - econf "${myeconfargs[@]}"
67 -}
68 -
69 -src_install() {
70 - default
71 - find "${ED}" -type f -name '*.la' -delete || die
72 -}