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 E1E791582EF for ; Sun, 16 Feb 2025 07:22:38 +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 CE2A13430C2 for ; Sun, 16 Feb 2025 07:22:38 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 38A9B110475; Sun, 16 Feb 2025 07:22:30 +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 2F556110475 for ; Sun, 16 Feb 2025 07:22:30 +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 DAF0F340441 for ; Sun, 16 Feb 2025 07:22:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40ACD2723 for ; Sun, 16 Feb 2025 07:22: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: <1739690529.d916fe58f7036426e519d2ea7ff139600447a602.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xinit/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-apps/xinit/xinit-1.4.3.ebuild X-VCS-Directories: x11-apps/xinit/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d916fe58f7036426e519d2ea7ff139600447a602 X-VCS-Branch: master Date: Sun, 16 Feb 2025 07:22: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: c49035e4-ef7c-4ee6-8287-ce1ae81cf2d8 X-Archives-Hash: a7d10bad3b6e80d6ef539a10b7d498b0 commit: d916fe58f7036426e519d2ea7ff139600447a602 Author: Ulrich Müller gentoo org> AuthorDate: Fri Feb 14 14:12:23 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Feb 16 07:22:09 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d916fe58 x11-apps/xinit: Port to ver_replacing Signed-off-by: Ulrich Müller gentoo.org> x11-apps/xinit/xinit-1.4.3.ebuild | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/x11-apps/xinit/xinit-1.4.3.ebuild b/x11-apps/xinit/xinit-1.4.3.ebuild index b42687793859..62822d1d415c 100644 --- a/x11-apps/xinit/xinit-1.4.3.ebuild +++ b/x11-apps/xinit/xinit-1.4.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit xorg-3 +inherit eapi9-ver xorg-3 DESCRIPTION="X Window System initializer" @@ -61,15 +61,11 @@ pkg_postinst() { ewarn "Here's an example of setting it for the whole system:" ewarn " echo XSESSION=\"Gnome\" > /etc/env.d/90xsession" ewarn " env-update && source /etc/profile" + elif ver_replacing "-lt" "1.4.1"; then + ewarn "Starting with ${CATEGORY}/${PN}-1.4.1 serverauth files are no longer kept in the" + ewarn "home directory but rather are created in \$TMPDIR (typically /tmp). The change" + ewarn "is transparent for most of users, however those that use runtime temporary" + ewarn "directories cleaning tools, like app-admin/tmpreaper, may need to adjust them" + ewarn "not to remove the 'serverauth.*' files." fi - - for v in ${REPLACING_VERSIONS}; do - if ver_test "$v" "-lt" "1.4.1"; then - ewarn "Starting with ${CATEGORY}/${PN}-1.4.1 serverauth files are no longer kept in the" - ewarn "home directory but rather are created in \$TMPDIR (typically /tmp). The change" - ewarn "is transparent for most of users, however those that use runtime temporary" - ewarn "directories cleaning tools, like app-admin/tmpreaper, may need to adjust them" - ewarn "not to remove the 'serverauth.*' files." - fi - done }