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 C14F3158089 for ; Thu, 7 Sep 2023 19:52:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E447E2BC027; Thu, 7 Sep 2023 19:52:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 CD6C02BC027 for ; Thu, 7 Sep 2023 19:52:01 +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 ED99E335C34 for ; Thu, 7 Sep 2023 19:52:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69D3F1104 for ; Thu, 7 Sep 2023 19:51:59 +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: <1694116232.49415cdf5ba3be16c3e329bef3016ef2e8a8ae46.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pkgcraft/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pkgcraft/pkgcraft-0.0.6.ebuild dev-python/pkgcraft/pkgcraft-9999.ebuild X-VCS-Directories: dev-python/pkgcraft/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 49415cdf5ba3be16c3e329bef3016ef2e8a8ae46 X-VCS-Branch: master Date: Thu, 7 Sep 2023 19:51:59 +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: 766f4a6f-8b15-4a13-86eb-ce687c32f8f3 X-Archives-Hash: 510729f85432a128ffecebb7ddbe56c7 commit: 49415cdf5ba3be16c3e329bef3016ef2e8a8ae46 Author: Sam James gentoo org> AuthorDate: Thu Sep 7 19:49:43 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Sep 7 19:50:32 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49415cdf dev-python/pkgcraft: fix live dep It needs to be something more than 9999 because of how DEPEND is currently written. Fixes: 60d0dad4ebaf447e98a13c9b96889fdc3f43bf4d Signed-off-by: Sam James gentoo.org> dev-python/pkgcraft/pkgcraft-0.0.6.ebuild | 2 +- dev-python/pkgcraft/pkgcraft-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pkgcraft/pkgcraft-0.0.6.ebuild b/dev-python/pkgcraft/pkgcraft-0.0.6.ebuild index 96f8ad5480d3..204a8185dbfb 100644 --- a/dev-python/pkgcraft/pkgcraft-0.0.6.ebuild +++ b/dev-python/pkgcraft/pkgcraft-0.0.6.ebuild @@ -19,7 +19,7 @@ if [[ ${PV} == 9999 ]] ; then EGIT_REPO_URI="https://github.com/pkgcraft/pkgcraft-python.git" inherit git-r3 - PKGCRAFT_VERSION_MAX="9999" + PKGCRAFT_VERSION_MAX="99999" # extra 9 here or 9999 isn't mergable per DEPEND below PKGCRAFT_VERSION_MIN="9999" else SRC_URI="https://github.com/pkgcraft/pkgcraft-python/releases/download/v${PV}/${P/-python}.tar.gz" diff --git a/dev-python/pkgcraft/pkgcraft-9999.ebuild b/dev-python/pkgcraft/pkgcraft-9999.ebuild index 96f8ad5480d3..204a8185dbfb 100644 --- a/dev-python/pkgcraft/pkgcraft-9999.ebuild +++ b/dev-python/pkgcraft/pkgcraft-9999.ebuild @@ -19,7 +19,7 @@ if [[ ${PV} == 9999 ]] ; then EGIT_REPO_URI="https://github.com/pkgcraft/pkgcraft-python.git" inherit git-r3 - PKGCRAFT_VERSION_MAX="9999" + PKGCRAFT_VERSION_MAX="99999" # extra 9 here or 9999 isn't mergable per DEPEND below PKGCRAFT_VERSION_MIN="9999" else SRC_URI="https://github.com/pkgcraft/pkgcraft-python/releases/download/v${PV}/${P/-python}.tar.gz"