From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1710858-garchives=archives.gentoo.org@lists.gentoo.org> 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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9B24015813A for <garchives@archives.gentoo.org>; Mon, 20 Jan 2025 03:36:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8824E076B; Mon, 20 Jan 2025 03:36:35 +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 9B40FE076B for <gentoo-commits@lists.gentoo.org>; Mon, 20 Jan 2025 03:36:35 +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 B6B6333BEA5 for <gentoo-commits@lists.gentoo.org>; Mon, 20 Jan 2025 03:36:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 548DC2532 for <gentoo-commits@lists.gentoo.org>; Mon, 20 Jan 2025 03:36:33 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1737344150.9022682446b0cc173822c8c2a4775d9f77d75948.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/bees/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/bees/bees-9999.ebuild X-VCS-Directories: sys-fs/bees/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9022682446b0cc173822c8c2a4775d9f77d75948 X-VCS-Branch: master Date: Mon, 20 Jan 2025 03:36:33 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ce447a06-a8c4-4da4-a0e9-620f8ff57721 X-Archives-Hash: 814156b0858185280cdf36e05d2b7f54 commit: 9022682446b0cc173822c8c2a4775d9f77d75948 Author: Kai Krakow <kai <AT> kaishome <DOT> de> AuthorDate: Sun Jan 19 12:55:30 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Jan 20 03:35:50 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90226824 sys-fs/bees: Update 9999 to latest master Signed-off-by: Kai Krakow <kai <AT> kaishome.de> Signed-off-by: Sam James <sam <AT> gentoo.org> sys-fs/bees/bees-9999.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sys-fs/bees/bees-9999.ebuild b/sys-fs/bees/bees-9999.ebuild index 88f0faef9827..965748b64f91 100644 --- a/sys-fs/bees/bees-9999.ebuild +++ b/sys-fs/bees/bees-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,7 +12,11 @@ if [[ ${PV} == 9999 ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/Zygo/bees.git" else - SRC_URI="https://github.com/Zygo/bees/archive/v${PV}.tar.gz -> ${P}.tar.gz" + MY_PV=${PV/_/-} + MY_P=${P/_/-} + S=${WORKDIR}/${MY_P} + + SRC_URI="https://github.com/Zygo/bees/archive/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz" KEYWORDS="~amd64 ~arm64" fi @@ -28,10 +32,6 @@ RDEPEND="${DEPEND}" CONFIG_CHECK="~BTRFS_FS" ERROR_BTRFS_FS="CONFIG_BTRFS_FS: bees does currently only work with btrfs" -PATCHES=( - "${FILESDIR}/0001-context-demote-abandoned-toxic-match-to-debug-log-le.patch" -) - pkg_pretend() { if [[ ${MERGE_TYPE} != buildonly ]]; then if kernel_is -lt 4 11; then @@ -116,7 +116,7 @@ src_configure() { DEFAULT_MAKE_TARGET=all EOF if [[ ${PV} != "9999" ]] ; then - echo BEES_VERSION=v${PV} >>localconf || die + echo BEES_VERSION=v${MY_PV} >>localconf || die fi }