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 4AB8415808B for ; Sat, 5 Oct 2024 08:12:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82156E29B5; Sat, 5 Oct 2024 08:12:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 6C4E9E29B5 for ; Sat, 5 Oct 2024 08:12:30 +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 A62CB343072 for ; Sat, 5 Oct 2024 08:12:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F2731CB0 for ; Sat, 5 Oct 2024 08:12:28 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1728115894.e61124270b92f9e4720e3ca423d9555ad0c82dcb.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/wine-proton/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/wine-proton/wine-proton-9.0.9999.ebuild app-emulation/wine-proton/wine-proton-9999.ebuild X-VCS-Directories: app-emulation/wine-proton/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: e61124270b92f9e4720e3ca423d9555ad0c82dcb X-VCS-Branch: master Date: Sat, 5 Oct 2024 08:12:28 +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: 7ee437da-8ef7-4352-880c-e725d57937b9 X-Archives-Hash: 21071ada8b81489ee1757985920c5165 commit: e61124270b92f9e4720e3ca423d9555ad0c82dcb Author: Ionen Wolkens gentoo org> AuthorDate: Sat Oct 5 06:28:23 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sat Oct 5 08:11:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6112427 app-emulation/wine-proton: add 9999, drop 9.0.9999 Using the "bleeding-edge" branch. Pretty sure this branch did not exist when formerly added the live ebuild and so had settled for the versioned experimental branch. Do not wish to maintain two live ebuilds, and it probably make more sense to use bleeding edge if any (experimental is not updated that often, and may lack fixes for very recent games that some users may need). Signed-off-by: Ionen Wolkens gentoo.org> .../{wine-proton-9.0.9999.ebuild => wine-proton-9999.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emulation/wine-proton/wine-proton-9.0.9999.ebuild b/app-emulation/wine-proton/wine-proton-9999.ebuild similarity index 99% rename from app-emulation/wine-proton/wine-proton-9.0.9999.ebuild rename to app-emulation/wine-proton/wine-proton-9999.ebuild index 9c233aee5903..dc95b99493af 100644 --- a/app-emulation/wine-proton/wine-proton-9.0.9999.ebuild +++ b/app-emulation/wine-proton/wine-proton-9999.ebuild @@ -9,13 +9,13 @@ inherit autotools flag-o-matic multilib multilib-build prefix inherit python-any-r1 readme.gentoo-r1 toolchain-funcs wrapper WINE_GECKO=2.47.4 -WINE_MONO=9.1.0 +WINE_MONO=9.3.0 WINE_PV=$(ver_rs 2 -) if [[ ${PV} == *9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/ValveSoftware/wine.git" - EGIT_BRANCH="experimental_$(ver_cut 1-2)" + EGIT_BRANCH="bleeding-edge" else SRC_URI="https://github.com/ValveSoftware/wine/archive/refs/tags/proton-wine-${WINE_PV}.tar.gz" S="${WORKDIR}/${PN}-wine-${WINE_PV}"