Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/incron/
Date: Tue, 16 Aug 2022 22:52:47
Message-Id: 1660689683.89c03de5139369fb91f87d034aa8cc4660a8af69.marecki@gentoo
1 commit: 89c03de5139369fb91f87d034aa8cc4660a8af69
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 16 22:41:23 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 16 22:41:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c03de5
7
8 sys-process/incron: drop 0.5.12_p20171113
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 sys-process/incron/incron-0.5.12_p20171113.ebuild | 65 -----------------------
13 1 file changed, 65 deletions(-)
14
15 diff --git a/sys-process/incron/incron-0.5.12_p20171113.ebuild b/sys-process/incron/incron-0.5.12_p20171113.ebuild
16 deleted file mode 100644
17 index 33af9c07c8c4..000000000000
18 --- a/sys-process/incron/incron-0.5.12_p20171113.ebuild
19 +++ /dev/null
20 @@ -1,65 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="7"
25 -
26 -inherit flag-o-matic linux-info systemd toolchain-funcs
27 -
28 -COMMIT="1eedfbc9b318372efd119fd17f4abdbde561a53d"
29 -S="${WORKDIR}/${PN}-${COMMIT}"
30 -
31 -DESCRIPTION="inotify based cron daemon"
32 -HOMEPAGE="https://incron.aiken.cz/"
33 -SRC_URI="https://github.com/ar-/incron/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
34 -
35 -LICENSE="GPL-2 LGPL-2.1"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~arm64 ppc ~riscv x86"
38 -IUSE=""
39 -
40 -DEPEND=""
41 -RDEPEND=""
42 -
43 -PATCHES=(
44 - "${FILESDIR}"/${PN}-0.5.12-use-execl-instead-system.patch
45 - "${FILESDIR}"/${PN}-0.5.12-issue25.patch
46 -)
47 -
48 -# < 2.6.18 => INOTIFY, >= 2.6.18 => INOTIFY_USER
49 -# It should be ok to expect at least 2.6.18
50 -CONFIG_CHECK="~INOTIFY_USER"
51 -
52 -src_prepare() {
53 - default
54 -
55 - sed -i \
56 - -e '/$(INSTALL) -m 0644 incron.conf $(DESTDIR)$(INITDIR)/d' \
57 - Makefile \
58 - || die
59 -}
60 -
61 -src_compile() {
62 - # code is not C++17 ready
63 - append-cxxflags -std=c++14
64 -
65 - emake CXX="$(tc-getCXX)"
66 -}
67 -
68 -src_install() {
69 - emake DESTDIR="${D}" PREFIX=/usr DOCDIR=/usr/share/doc/${PF} install
70 -
71 - newinitd "${FILESDIR}/incrond-r1.init" incrond
72 - newconfd "${FILESDIR}/incrond.conf" incrond
73 - systemd_dounit "${FILESDIR}/incrond.service"
74 -
75 - dodoc CHANGELOG README TODO
76 -
77 - insinto /etc
78 - doins "${FILESDIR}"/incron.conf
79 - touch \
80 - "${D}/etc/incron.allow" \
81 - "${D}/etc/incron.deny" \
82 - || die
83 -
84 - keepdir /var/spool/${PN}
85 -}