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 8CCB91582EF for ; Sat, 15 Feb 2025 09:29:58 +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 7832234308A for ; Sat, 15 Feb 2025 09:29:58 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A4AF0110481; Sat, 15 Feb 2025 09:29:31 +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 9A646110480 for ; Sat, 15 Feb 2025 09:29:31 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 490A7343058 for ; Sat, 15 Feb 2025 09:29:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6E452727 for ; Sat, 15 Feb 2025 09:29:27 +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: <1739611599.d730ecc4c37d20fccc0a8403b5e54bce1593f275.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_auth_radius/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_auth_radius/mod_auth_radius-1.6.0.ebuild X-VCS-Directories: www-apache/mod_auth_radius/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d730ecc4c37d20fccc0a8403b5e54bce1593f275 X-VCS-Branch: master Date: Sat, 15 Feb 2025 09:29:27 +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: f98c2e72-86f5-4def-a699-35e37db256a3 X-Archives-Hash: 28f09620f587aaaad1c3130924d525ee commit: d730ecc4c37d20fccc0a8403b5e54bce1593f275 Author: Ulrich Müller gentoo org> AuthorDate: Fri Feb 14 14:12:18 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Feb 15 09:26:39 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d730ecc4 www-apache/mod_auth_radius: Port to ver_replacing Signed-off-by: Ulrich Müller gentoo.org> .../mod_auth_radius/mod_auth_radius-1.6.0.ebuild | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/www-apache/mod_auth_radius/mod_auth_radius-1.6.0.ebuild b/www-apache/mod_auth_radius/mod_auth_radius-1.6.0.ebuild index c53926ebd7cd..5b9ee1709fc0 100644 --- a/www-apache/mod_auth_radius/mod_auth_radius-1.6.0.ebuild +++ b/www-apache/mod_auth_radius/mod_auth_radius-1.6.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit apache-module depend.apache +inherit apache-module depend.apache eapi9-ver DESCRIPTION="Radius authentication for Apache" HOMEPAGE="https://freeradius.org/sub_projects/ https://github.com/FreeRADIUS/mod_auth_radius/" @@ -26,14 +26,10 @@ pkg_setup() { } pkg_postinst() { - if [[ -n "${REPLACING_VERSIONS}" ]]; then - for v in ${REPLACING_VERSIONS}; do - if ver_test ${v} -lt 1.6.0; then - ewarn "Please note that upstream has changed the name of this module from" - ewarn " ${PN}-2.0.so" - ewarn "to simply" - ewarn " ${PN}.so" - fi - done + if ver_replacing -lt 1.6.0; then + ewarn "Please note that upstream has changed the name of this module from" + ewarn " ${PN}-2.0.so" + ewarn "to simply" + ewarn " ${PN}.so" fi }