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 33F73158041 for ; Sat, 16 Mar 2024 12:13:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54B25E2A11; Sat, 16 Mar 2024 12:13:49 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33556E2A11 for ; Sat, 16 Mar 2024 12:13:49 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0401933BDE1 for ; Sat, 16 Mar 2024 12:13:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65EFE151A for ; Sat, 16 Mar 2024 12:13:46 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1710591203.058b2062e73d2c262bbfeb31348f6f2bc55b777c.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/stroke/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/stroke/stroke-0.1.3-r1.ebuild sys-apps/stroke/stroke-0.1.3-r2.ebuild X-VCS-Directories: sys-apps/stroke/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 058b2062e73d2c262bbfeb31348f6f2bc55b777c X-VCS-Branch: master Date: Sat, 16 Mar 2024 12:13:46 +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: b6a7985d-b630-4e6c-86ef-63a3017674c9 X-Archives-Hash: 94337e2b78fafb5e372e7db1c0c094a6 commit: 058b2062e73d2c262bbfeb31348f6f2bc55b777c Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Feb 27 19:49:54 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Mar 16 12:13:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=058b2062 sys-apps/stroke: EAPI8, fix LICENSE, fix bug #725814 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://bugs.gentoo.org/725814 Closes: https://github.com/gentoo/gentoo/pull/35555 Signed-off-by: Conrad Kostecki gentoo.org> sys-apps/stroke/stroke-0.1.3-r1.ebuild | 15 --------------- sys-apps/stroke/stroke-0.1.3-r2.ebuild | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 15 deletions(-) diff --git a/sys-apps/stroke/stroke-0.1.3-r1.ebuild b/sys-apps/stroke/stroke-0.1.3-r1.ebuild deleted file mode 100644 index 3df34f91f63e..000000000000 --- a/sys-apps/stroke/stroke-0.1.3-r1.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A powerful tool to change file timestamps (including ctimes)" -HOMEPAGE="http://stroke.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="" - -PATCHES=( "${FILESDIR}/${P}-missing-header.patch" ) diff --git a/sys-apps/stroke/stroke-0.1.3-r2.ebuild b/sys-apps/stroke/stroke-0.1.3-r2.ebuild new file mode 100644 index 000000000000..f2db03b70c44 --- /dev/null +++ b/sys-apps/stroke/stroke-0.1.3-r2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Powerful tool to change file timestamps (including ctimes)" +HOMEPAGE="https://stroke.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+ GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +PATCHES=( "${FILESDIR}/${P}-missing-header.patch" ) + +src_compile() { + emake AR="$(tc-getAR)" +}