From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C1D47158094 for ; Tue, 16 Aug 2022 22:52:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD408E097E; Tue, 16 Aug 2022 22:52:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A97D5E07D3 for ; Tue, 16 Aug 2022 22:52:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AA853341347 for ; Tue, 16 Aug 2022 22:52:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E389C558 for ; Tue, 16 Aug 2022 22:52:43 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1660689683.89c03de5139369fb91f87d034aa8cc4660a8af69.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/incron/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/incron/incron-0.5.12_p20171113.ebuild X-VCS-Directories: sys-process/incron/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 89c03de5139369fb91f87d034aa8cc4660a8af69 X-VCS-Branch: master Date: Tue, 16 Aug 2022 22:52:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3167d557-625d-4aaa-a686-d059ee752b6f X-Archives-Hash: 85b64906f1c043e5cb3b23ec6184694e commit: 89c03de5139369fb91f87d034aa8cc4660a8af69 Author: Marek Szuba gentoo org> AuthorDate: Tue Aug 16 22:41:23 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue Aug 16 22:41:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c03de5 sys-process/incron: drop 0.5.12_p20171113 Signed-off-by: Marek Szuba gentoo.org> sys-process/incron/incron-0.5.12_p20171113.ebuild | 65 ----------------------- 1 file changed, 65 deletions(-) diff --git a/sys-process/incron/incron-0.5.12_p20171113.ebuild b/sys-process/incron/incron-0.5.12_p20171113.ebuild deleted file mode 100644 index 33af9c07c8c4..000000000000 --- a/sys-process/incron/incron-0.5.12_p20171113.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit flag-o-matic linux-info systemd toolchain-funcs - -COMMIT="1eedfbc9b318372efd119fd17f4abdbde561a53d" -S="${WORKDIR}/${PN}-${COMMIT}" - -DESCRIPTION="inotify based cron daemon" -HOMEPAGE="https://incron.aiken.cz/" -SRC_URI="https://github.com/ar-/incron/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~arm64 ppc ~riscv x86" -IUSE="" - -DEPEND="" -RDEPEND="" - -PATCHES=( - "${FILESDIR}"/${PN}-0.5.12-use-execl-instead-system.patch - "${FILESDIR}"/${PN}-0.5.12-issue25.patch -) - -# < 2.6.18 => INOTIFY, >= 2.6.18 => INOTIFY_USER -# It should be ok to expect at least 2.6.18 -CONFIG_CHECK="~INOTIFY_USER" - -src_prepare() { - default - - sed -i \ - -e '/$(INSTALL) -m 0644 incron.conf $(DESTDIR)$(INITDIR)/d' \ - Makefile \ - || die -} - -src_compile() { - # code is not C++17 ready - append-cxxflags -std=c++14 - - emake CXX="$(tc-getCXX)" -} - -src_install() { - emake DESTDIR="${D}" PREFIX=/usr DOCDIR=/usr/share/doc/${PF} install - - newinitd "${FILESDIR}/incrond-r1.init" incrond - newconfd "${FILESDIR}/incrond.conf" incrond - systemd_dounit "${FILESDIR}/incrond.service" - - dodoc CHANGELOG README TODO - - insinto /etc - doins "${FILESDIR}"/incron.conf - touch \ - "${D}/etc/incron.allow" \ - "${D}/etc/incron.deny" \ - || die - - keepdir /var/spool/${PN} -}