From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 022371582EF for ; Mon, 17 Feb 2025 09:26:18 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id DE1B63432CD for ; Mon, 17 Feb 2025 09:26:17 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 338CB110471; Mon, 17 Feb 2025 09:26:13 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 2E02A110471 for ; Mon, 17 Feb 2025 09:26:13 +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 CE8D434328C for ; Mon, 17 Feb 2025 09:26:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25E972733 for ; Mon, 17 Feb 2025 09:26:11 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1739784324.40ce878ddf25cd1a374b3004442b83a49b22f641.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/busybox/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/busybox/busybox-1.36.1-r3.ebuild sys-apps/busybox/busybox-9999.ebuild X-VCS-Directories: sys-apps/busybox/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 40ce878ddf25cd1a374b3004442b83a49b22f641 X-VCS-Branch: master Date: Mon, 17 Feb 2025 09:26:11 +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: f7176e83-c4ed-4196-859f-680d972e213c X-Archives-Hash: 77279161c9edd0f8ac5e3b0b2e00c552 commit: 40ce878ddf25cd1a374b3004442b83a49b22f641 Author: Ulrich Müller gentoo org> AuthorDate: Fri Feb 14 14:11:55 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Feb 17 09:25:24 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ce878d sys-apps/busybox: Port to ver_replacing Signed-off-by: Ulrich Müller gentoo.org> sys-apps/busybox/busybox-1.36.1-r3.ebuild | 12 +++++------- sys-apps/busybox/busybox-9999.ebuild | 12 +++++------- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/sys-apps/busybox/busybox-1.36.1-r3.ebuild b/sys-apps/busybox/busybox-1.36.1-r3.ebuild index 0787af842957..fb80d0d9abb6 100644 --- a/sys-apps/busybox/busybox-1.36.1-r3.ebuild +++ b/sys-apps/busybox/busybox-1.36.1-r3.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # See `man savedconfig.eclass` for info on how to use USE=savedconfig. EAPI=8 -inherit flag-o-matic readme.gentoo-r1 savedconfig toolchain-funcs +inherit eapi9-ver flag-o-matic readme.gentoo-r1 savedconfig toolchain-funcs DESCRIPTION="Utilities for rescue and embedded systems" HOMEPAGE="https://www.busybox.net/" @@ -379,11 +379,9 @@ pkg_postinst() { fi if [[ ${MERGE_TYPE} != binary ]] && ! is-flagq -Oz; then - for v in ${REPLACING_VERSIONS}; do - if ver_test ${v} -le 1.36.1; then - FORCE_PRINT_ELOG=yes - fi - done + if ver_replacing -le 1.36.1; then + FORCE_PRINT_ELOG=yes + fi readme.gentoo_print_elog fi diff --git a/sys-apps/busybox/busybox-9999.ebuild b/sys-apps/busybox/busybox-9999.ebuild index f03c46d222e8..a66117143343 100644 --- a/sys-apps/busybox/busybox-9999.ebuild +++ b/sys-apps/busybox/busybox-9999.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # See `man savedconfig.eclass` for info on how to use USE=savedconfig. EAPI=8 -inherit flag-o-matic readme.gentoo-r1 savedconfig toolchain-funcs +inherit eapi9-ver flag-o-matic readme.gentoo-r1 savedconfig toolchain-funcs DESCRIPTION="Utilities for rescue and embedded systems" HOMEPAGE="https://www.busybox.net/" @@ -377,11 +377,9 @@ pkg_postinst() { fi if [[ ${MERGE_TYPE} != binary ]] && ! is-flagq -Oz; then - for v in ${REPLACING_VERSIONS}; do - if ver_test ${v} -le 1.36.1; then - FORCE_PRINT_ELOG=yes - fi - done + if ver_replacing -le 1.36.1; then + FORCE_PRINT_ELOG=yes + fi readme.gentoo_print_elog fi