From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1525655-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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1212D15806E for <garchives@archives.gentoo.org>; Mon, 5 Jun 2023 08:30:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 499E5E08FC; Mon, 5 Jun 2023 08:30: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 215DAE08FC for <gentoo-commits@lists.gentoo.org>; Mon, 5 Jun 2023 08:30: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 0D27B335CEA for <gentoo-commits@lists.gentoo.org>; Mon, 5 Jun 2023 08:30:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6427DA5C for <gentoo-commits@lists.gentoo.org>; Mon, 5 Jun 2023 08:30:46 +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: <1685953797.7183e10e4801316e3f83f89d95890f26eeea99b1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pkgdev/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/pkgdev/pkgdev-0.2.5.ebuild dev-util/pkgdev/pkgdev-0.2.7.ebuild dev-util/pkgdev/pkgdev-9999.ebuild X-VCS-Directories: dev-util/pkgdev/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7183e10e4801316e3f83f89d95890f26eeea99b1 X-VCS-Branch: master Date: Mon, 5 Jun 2023 08:30:46 +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: b497004c-f19b-4af0-a25f-04dced6e9f6f X-Archives-Hash: 3f14e5dba8299c6d8a75a42733e3ff14 commit: 7183e10e4801316e3f83f89d95890f26eeea99b1 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Jun 5 08:29:57 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Jun 5 08:29:57 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7183e10e dev-util/pkgdev: set EGIT_BRANCH HEAD is supposed to be main already but smart-live-rebuild is confused for some reason and tries to always rebuild, so try this. ("!!! Error updating dev-util/pkgdev:0: [Exception] update command failed to return a rev", thanks to xgqt for poking about it) Signed-off-by: Sam James <sam <AT> gentoo.org> dev-util/pkgdev/pkgdev-0.2.5.ebuild | 1 + dev-util/pkgdev/pkgdev-0.2.7.ebuild | 1 + dev-util/pkgdev/pkgdev-9999.ebuild | 1 + 3 files changed, 3 insertions(+) diff --git a/dev-util/pkgdev/pkgdev-0.2.5.ebuild b/dev-util/pkgdev/pkgdev-0.2.5.ebuild index 6b23773e717e..71f38afb7435 100644 --- a/dev-util/pkgdev/pkgdev-0.2.5.ebuild +++ b/dev-util/pkgdev/pkgdev-0.2.5.ebuild @@ -8,6 +8,7 @@ PYTHON_COMPAT=( python3_{9..11} ) inherit distutils-r1 optfeature if [[ ${PV} == *9999 ]] ; then + EGIT_BRANCH="main" EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/pkgcore/pkgdev.git https://github.com/pkgcore/pkgdev.git" inherit git-r3 diff --git a/dev-util/pkgdev/pkgdev-0.2.7.ebuild b/dev-util/pkgdev/pkgdev-0.2.7.ebuild index 14129a01f8f2..f4073bb87c38 100644 --- a/dev-util/pkgdev/pkgdev-0.2.7.ebuild +++ b/dev-util/pkgdev/pkgdev-0.2.7.ebuild @@ -8,6 +8,7 @@ PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 optfeature if [[ ${PV} == *9999 ]] ; then + EGIT_BRANCH="main" EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/pkgcore/pkgdev.git https://github.com/pkgcore/pkgdev.git" inherit git-r3 diff --git a/dev-util/pkgdev/pkgdev-9999.ebuild b/dev-util/pkgdev/pkgdev-9999.ebuild index 443eaca01b69..fddbae4e45a4 100644 --- a/dev-util/pkgdev/pkgdev-9999.ebuild +++ b/dev-util/pkgdev/pkgdev-9999.ebuild @@ -8,6 +8,7 @@ PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 optfeature if [[ ${PV} == *9999 ]] ; then + EGIT_BRANCH="main" EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/pkgcore/pkgdev.git https://github.com/pkgcore/pkgdev.git" inherit git-r3