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 176AC1582EF for ; Sat, 22 Feb 2025 09:39:05 +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 023453431F5 for ; Sat, 22 Feb 2025 09:39:05 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 57D36110478; Sat, 22 Feb 2025 09:38:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 46AF6110474 for ; Sat, 22 Feb 2025 09:38:50 +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 EA0D03431F5 for ; Sat, 22 Feb 2025 09:38:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FDD2273E for ; Sat, 22 Feb 2025 09:38:47 +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: <1740217092.d04d84517b25dfb77f5384ccea3544da22c4c1f8.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mate-extra/caja-dropbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: mate-extra/caja-dropbox/caja-dropbox-1.28.0.ebuild X-VCS-Directories: mate-extra/caja-dropbox/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d04d84517b25dfb77f5384ccea3544da22c4c1f8 X-VCS-Branch: master Date: Sat, 22 Feb 2025 09:38:47 +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: 85a10c75-954f-4f22-974c-e47fa27a9377 X-Archives-Hash: 85e160db398dec4e0bddaa7b15623a75 commit: d04d84517b25dfb77f5384ccea3544da22c4c1f8 Author: Ulrich Müller gentoo org> AuthorDate: Fri Feb 14 14:11:21 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Feb 22 09:38:12 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d04d8451 mate-extra/caja-dropbox: Port to ver_replacing Signed-off-by: Ulrich Müller gentoo.org> mate-extra/caja-dropbox/caja-dropbox-1.28.0.ebuild | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/mate-extra/caja-dropbox/caja-dropbox-1.28.0.ebuild b/mate-extra/caja-dropbox/caja-dropbox-1.28.0.ebuild index ece9b1374a61..04d5eaba1438 100644 --- a/mate-extra/caja-dropbox/caja-dropbox-1.28.0.ebuild +++ b/mate-extra/caja-dropbox/caja-dropbox-1.28.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,7 +6,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10,11,12} ) MATE_LA_PUNT="yes" -inherit mate python-single-r1 linux-info +inherit mate python-single-r1 linux-info eapi9-ver MINOR=$(($(ver_cut 2) % 2)) if [[ ${MINOR} -eq 0 ]]; then @@ -79,11 +79,9 @@ src_install() { pkg_postinst() { mate_pkg_postinst - for v in ${REPLACING_VERSIONS}; do - if ver_test "${v}" "-lt" "1.24.0-r1" || ver_test "${v}" "-eq" "9999"; then - ewarn "Starting with ${CATEGORY}/${PN}-1.24.0-r1, ${PN} now no longer" - ewarn "configures caja-dropbox to use its own group. This brings caja-dropbox in line" - ewarn "with nautilus-dropbox and dolphin-plugins-dropbox. You may remove the 'dropbox' group." - fi - done + if ver_replacing "-lt" "1.24.0-r1" || ver_replacing "-eq" "9999"; then + ewarn "Starting with ${CATEGORY}/${PN}-1.24.0-r1, ${PN} now no longer" + ewarn "configures caja-dropbox to use its own group. This brings caja-dropbox in line" + ewarn "with nautilus-dropbox and dolphin-plugins-dropbox. You may remove the 'dropbox' group." + fi }