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: Fri, 21 Jan 2022 17:44:23
Message-Id: 1642787050.c5f56bf69d16375d190fa967d5f7ab662a899341.polynomial-c@gentoo
1 commit: c5f56bf69d16375d190fa967d5f7ab662a899341
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 21 17:43:57 2022 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 21 17:44:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5f56bf6
7
8 sys-fs/inotify-tools: Removed old
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11
12 sys-fs/inotify-tools/Manifest | 2 --
13 .../inotify-tools/inotify-tools-3.20.11.0.ebuild | 42 ----------------------
14 sys-fs/inotify-tools/inotify-tools-3.21.9.5.ebuild | 42 ----------------------
15 3 files changed, 86 deletions(-)
16
17 diff --git a/sys-fs/inotify-tools/Manifest b/sys-fs/inotify-tools/Manifest
18 index 8c4a6f3d9ee8..55c4240f8e1b 100644
19 --- a/sys-fs/inotify-tools/Manifest
20 +++ b/sys-fs/inotify-tools/Manifest
21 @@ -1,5 +1,3 @@
22 -DIST inotify-tools-3.20.11.0.tar.gz 84827 BLAKE2B 1d3e25c4e213c9c6da74575677a6dc491405077b0544be79ee95e5ac2ee2ef2606ae2fd0264ad83228dc580447f15afd16e486bd5a8d51f6254ed805ed985260 SHA512 77b90e96efe0c90ab6ca4309c2f08303c2047ebddfad93ff62c616f30df8ca01102197867571047475b19b7dcc0fe369d9dd41425c2973cdc06467787098f672
23 DIST inotify-tools-3.20.2.2.tar.gz 81006 BLAKE2B 7dd29985f68096fe2146a3ad84d619b3d1238b0db25eeb125f2fe9591fa678078351f00c7e09b526cf2251e4736201d5625ff0e477523cae370a307ccb667730 SHA512 72d6fdcc216d8083cd384c71c02dc8e800d3a9702613568b3c571f704aee3d42bf084c52f2141c9afb8d28e8b87ebb6391ed3d825b3d664ed51c552debeb1881
24 -DIST inotify-tools-3.21.9.5.tar.gz 91711 BLAKE2B cf6575cdd445a823c8272a9f8394ed241af1cc729784ec363c9dac6cd3c5cf37856076e88d389669d9da768b899e7ecb64c997e25b42cd5fccc2ebbbf145b273 SHA512 d0ae070f4fa3ea261913bba4ed6edf865aa8ddb9235cf5e967d11f54168a78d92739a5110a1afbdedbe3e6f0cbaf395883e2d47a182c9e6847986da184a52a97
25 DIST inotify-tools-3.21.9.6.tar.gz 91668 BLAKE2B cfb279d69e650b275af03052f4f76522670b7a563aa4e81bd5883b3ff825ecb70382cd4a5d48a9eb50b59930685a60b59a17376958d111d129c61fbced47a6bb SHA512 206eeebfd948499d81e6666b153cd7d9b05df618291fd3ada6479251b0773ce629c19f73117442a9093f028e294c5ba2dfa0aa4cf711510284ab7cad657da21c
26 DIST inotify-tools-3.22.1.0.tar.gz 92922 BLAKE2B 42558ca62f79e2bdf5a6071334a05cee826ec00b0666b1c0971af64d769eb7852cbcd8d6e630f88af68f26f5607ca4ef94ec832fbe2e89d42182120aac4896ce SHA512 53317147af4803b69603839c010a2b0b3fa527f0e32b08126f24805600728c0a9570b2a3d94bf987f0b9a4bfbe7207b5faa9337f0d7add91b062e68de4245548
27
28 diff --git a/sys-fs/inotify-tools/inotify-tools-3.20.11.0.ebuild b/sys-fs/inotify-tools/inotify-tools-3.20.11.0.ebuild
29 deleted file mode 100644
30 index 77cf8b46ca1c..000000000000
31 --- a/sys-fs/inotify-tools/inotify-tools-3.20.11.0.ebuild
32 +++ /dev/null
33 @@ -1,42 +0,0 @@
34 -# Copyright 1999-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -inherit autotools
40 -
41 -DESCRIPTION="a set of command-line programs providing a simple interface to inotify"
42 -HOMEPAGE="https://github.com/inotify-tools/inotify-tools"
43 -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~sparc ~x86"
48 -IUSE="doc"
49 -
50 -BDEPEND="doc? ( app-doc/doxygen )"
51 -
52 -src_prepare() {
53 - default
54 -
55 - # Remove -Werror from CFLAGS (#745069)
56 - find -name "Makefile.am" -print0 \
57 - | xargs --null sed 's@ -Werror@@' -i || die
58 -
59 - eautoreconf
60 -}
61 -
62 -src_configure() {
63 - # only docs installed are doxygen ones, so use /html
64 - local myeconfargs=(
65 - --disable-static
66 - --docdir='$(datarootdir)'/doc/${PF}/html
67 - $(use_enable doc doxygen)
68 - )
69 - econf "${myeconfargs[@]}"
70 -}
71 -
72 -src_install() {
73 - default
74 - find "${ED}" -name '*.la' -delete || die
75 -}
76
77 diff --git a/sys-fs/inotify-tools/inotify-tools-3.21.9.5.ebuild b/sys-fs/inotify-tools/inotify-tools-3.21.9.5.ebuild
78 deleted file mode 100644
79 index f9459bef6394..000000000000
80 --- a/sys-fs/inotify-tools/inotify-tools-3.21.9.5.ebuild
81 +++ /dev/null
82 @@ -1,42 +0,0 @@
83 -# Copyright 1999-2021 Gentoo Authors
84 -# Distributed under the terms of the GNU General Public License v2
85 -
86 -EAPI=8
87 -
88 -inherit autotools
89 -
90 -DESCRIPTION="a set of command-line programs providing a simple interface to inotify"
91 -HOMEPAGE="https://github.com/inotify-tools/inotify-tools"
92 -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
93 -
94 -LICENSE="GPL-2"
95 -SLOT="0"
96 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~riscv ~sparc ~x86"
97 -IUSE="doc"
98 -
99 -BDEPEND="doc? ( app-doc/doxygen )"
100 -
101 -src_prepare() {
102 - default
103 -
104 - # Remove -Werror from CFLAGS (#745069)
105 - find -name "Makefile.am" -print0 \
106 - | xargs --null sed 's@ -Werror@@' -i || die
107 -
108 - eautoreconf
109 -}
110 -
111 -src_configure() {
112 - # only docs installed are doxygen ones, so use /html
113 - local myeconfargs=(
114 - --disable-static
115 - --docdir='$(datarootdir)'/doc/${PF}/html
116 - $(use_enable doc doxygen)
117 - )
118 - econf "${myeconfargs[@]}"
119 -}
120 -
121 -src_install() {
122 - default
123 - find "${ED}" -type f -name '*.la' -delete || die
124 -}