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 B6064158089 for ; Wed, 13 Sep 2023 03:49:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9A6D2BC13D; Wed, 13 Sep 2023 03:49:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F2F02BC13D for ; Wed, 13 Sep 2023 03:49:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B05A5335CD4 for ; Wed, 13 Sep 2023 03:49:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53D58118E for ; Wed, 13 Sep 2023 03:49:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1694576882.b5a79d22b1f12db72db0be77dbeed56180a415b1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/cronolog/cronolog-1.6.2-r6.ebuild X-VCS-Directories: app-admin/cronolog/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b5a79d22b1f12db72db0be77dbeed56180a415b1 X-VCS-Branch: master Date: Wed, 13 Sep 2023 03:49:19 +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: cea403af-3ea7-4109-98a3-44f299504d3a X-Archives-Hash: 211b31ac8d727103d6eaeb29202176a3 commit: b5a79d22b1f12db72db0be77dbeed56180a415b1 Author: Leonardo Hernández Hernández proton me> AuthorDate: Sun Sep 10 23:25:49 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 13 03:48:02 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5a79d22 app-admin/cronolog: update EAPI 6 -> 8 Signed-off-by: Leonardo Hernández Hernández proton.me> Signed-off-by: Sam James gentoo.org> app-admin/cronolog/cronolog-1.6.2-r6.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild new file mode 100644 index 000000000000..56e9b547b8f6 --- /dev/null +++ b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Log rotation software" +HOMEPAGE="https://github.com/fordmason/cronolog" +SRC_URI="http://cronolog.org/download/${P}.tar.gz" + +LICENSE="GPL-2+ Apache-1.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +PATCHES=( + "${FILESDIR}"/${PV}-patches + # rename and move into ${PV}-patches after -r3 removal + "${FILESDIR}"/${P}-umask.patch +) + +src_prepare() { + default + mv configure.{in,ac} || die + eautoreconf +}