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 5D8E015800F for ; Sat, 21 Jan 2023 18:00:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90AFAE0718; Sat, 21 Jan 2023 18:00:42 +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 6BF95E0718 for ; Sat, 21 Jan 2023 18:00:42 +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 76B0133B864 for ; Sat, 21 Jan 2023 18:00:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9FAE85C for ; Sat, 21 Jan 2023 18:00:38 +0000 (UTC) From: "Arsen Arsenović" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arsen Arsenović" Message-ID: <1674323959.bb9d16aa4ef99e4443ad52aad1bff91c0fe9e7f6.arsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/poke/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/poke/poke-9999.ebuild X-VCS-Directories: dev-util/poke/ X-VCS-Committer: arsen X-VCS-Committer-Name: Arsen Arsenović X-VCS-Revision: bb9d16aa4ef99e4443ad52aad1bff91c0fe9e7f6 X-VCS-Branch: master Date: Sat, 21 Jan 2023 18:00:38 +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: 67ae2bfc-974a-4497-b2da-ff42581b5650 X-Archives-Hash: 27ba5189b2b1a9d861dc08a54041fddd commit: bb9d16aa4ef99e4443ad52aad1bff91c0fe9e7f6 Author: Arsen Arsenović gentoo org> AuthorDate: Sat Jan 21 17:35:13 2023 +0000 Commit: Arsen Arsenović gentoo org> CommitDate: Sat Jan 21 17:59:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9d16aa dev-util/poke: add pre-release logic to live ebuild Signed-off-by: Arsen Arsenović gentoo.org> dev-util/poke/poke-9999.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-util/poke/poke-9999.ebuild b/dev-util/poke/poke-9999.ebuild index e142b4b593b7..77f62ea257d8 100644 --- a/dev-util/poke/poke-9999.ebuild +++ b/dev-util/poke/poke-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -20,9 +20,12 @@ if [[ ${PV} == 9999 ]]; then sys-devel/bison sys-devel/flex " +elif [[ $(ver_cut 2) -ge 90 || $(ver_cut 3) ]]; then + SRC_URI="https://alpha.gnu.org/gnu/poke/${P}.tar.gz" + REGEN_BDEPEND="" else SRC_URI="mirror://gnu/poke/${P}.tar.gz" - KEYWORDS="~amd64" + KEYWORDS="~amd64 ~x86" REGEN_BDEPEND="" fi