From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from todd.t-8ch.de (todd.t-8ch.de [159.69.126.157]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1F7E5388378; Thu, 14 May 2026 11:31:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=159.69.126.157 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778758273; cv=none; b=t+NHXxT6sJcyz0w4dAjeYaPC7BO731sfJAE16skwfan2SDyW3uBitEn+vpa+NO1cxQv186bWQP0Vm6h/Qx5u/lBTdGJJU+0R5pqFwfx3TO59HI2qkyOLe3gzM6A+qslF/ad3CXCklV6FPe3sKsaS8tvJFymYqClP/9Gi7IhXx4E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778758273; c=relaxed/simple; bh=ogt7RJ7TLjf5SRY4nGaMYBaqSNNoRwxFevzQIxH5QFI=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=QudHfxllZWILKEDSaKEcykBl4ZpmAuRj2sE9acgSENno7Z7qXi0XZXdiUFT/ERPB2UFSjSztwDOxEFaOIvGnARyZ9vNS4YxkYR5RnX/347rjQHPYBpOkToq5h3lL5ohY/6soKm4q0lPmhozEpOYYfnI7Sch8PAW7VXP85kkJE4c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=weissschuh.net; spf=pass smtp.mailfrom=weissschuh.net; dkim=pass (1024-bit key) header.d=weissschuh.net header.i=@weissschuh.net header.b=IR3s6tyQ; arc=none smtp.client-ip=159.69.126.157 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=weissschuh.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=weissschuh.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=weissschuh.net header.i=@weissschuh.net header.b="IR3s6tyQ" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=weissschuh.net; s=mail; t=1778758269; bh=ogt7RJ7TLjf5SRY4nGaMYBaqSNNoRwxFevzQIxH5QFI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=IR3s6tyQHgiIPzlJgpz5y5eoTdE5I7/o82+qvZ+IOWkuYbTJRrn6SaH7SWblDH4dW ynIaJboSKPZdMLD617ACuklj3hNbbsSrvktkNr7fY9NK9MfXJp7gLl0ER5k+4QH1k6 ++NTaIE6nRo2zZhqAUzS0EH05YXVxB+XZi757Qyg= Date: Thu, 14 May 2026 13:31:08 +0200 From: Thomas =?utf-8?Q?Wei=C3=9Fschuh?= To: Viktor =?utf-8?B?SsOkZ2Vyc2vDvHBwZXI=?= Cc: Christian Heusel , Nathan Chancellor , Nicolas Schier , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] kbuild: pacman-pkg: make "rc" releases adhere to pacman versioning scheme Message-ID: References: <20260513231745.51780-1-viktor_jaegerskuepper@freenet.de> Precedence: bulk X-Mailing-List: linux-kbuild@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260513231745.51780-1-viktor_jaegerskuepper@freenet.de> On 2026-05-14 01:17:29+0200, Viktor Jägersküpper wrote: > The package versioning scheme does not enable smooth upgrades from "rc" > releases to the corresponding stable releases (e.g. 7.0.0-rc7 -> 7.0.0) > because pacman considers that a downgrade due to the underscore in > pkgver (e.g. 7.0.0_rc7), see e.g. vercmp(8) for an explanation of the > package version comparison used by pacman. Package versions which are > derived from said releases (e.g. built from git revisions) are > similarly affected. Fix this by modifying pkgver in order to remove the > hyphen from kernel versions containing "-rc". > > Signed-off-by: Viktor Jägersküpper Acked-by: Thomas Weißschuh Thanks! > --- > scripts/package/PKGBUILD | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) (...)