From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1E45F1382C5 for ; Sat, 9 Jan 2021 10:36:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E96E1E08E5; Sat, 9 Jan 2021 10:36:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D06A3E08E5 for ; Sat, 9 Jan 2021 10:36:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BBC2E3409F1 for ; Sat, 9 Jan 2021 10:36:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 444E04A4 for ; Sat, 9 Jan 2021 10:36:13 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1610188565.7bbed02f8f3ea01d42320d5a9be4799775e0ac76.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/roundcube/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-client/roundcube/roundcube-1.4.8.ebuild mail-client/roundcube/roundcube-9999.ebuild X-VCS-Directories: mail-client/roundcube/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7bbed02f8f3ea01d42320d5a9be4799775e0ac76 X-VCS-Branch: master Date: Sat, 9 Jan 2021 10:36:13 +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: 7056e425-db11-4147-bd36-bdbfaa3215c5 X-Archives-Hash: a968eb84165287e89b6072f6a285a840 commit: 7bbed02f8f3ea01d42320d5a9be4799775e0ac76 Author: Sam James gentoo org> AuthorDate: Sat Jan 9 10:14:17 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 9 10:36:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bbed02f mail-client/roundcube: fix UnnecessarySlashStrip Not needed in EAPI 7. Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> mail-client/roundcube/roundcube-1.4.8.ebuild | 4 ++-- mail-client/roundcube/roundcube-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mail-client/roundcube/roundcube-1.4.8.ebuild b/mail-client/roundcube/roundcube-1.4.8.ebuild index f39bfa3d979..2086798cf41 100644 --- a/mail-client/roundcube/roundcube-1.4.8.ebuild +++ b/mail-client/roundcube/roundcube-1.4.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -68,6 +68,6 @@ pkg_postinst() { if [[ -n ${REPLACING_VERSIONS} ]]; then elog "You can review the post-upgrade instructions at:" - elog "${EROOT%/}/usr/share/webapps/${PN}/${PV}/postupgrade-en.txt" + elog "${EROOT}/usr/share/webapps/${PN}/${PV}/postupgrade-en.txt" fi } diff --git a/mail-client/roundcube/roundcube-9999.ebuild b/mail-client/roundcube/roundcube-9999.ebuild index 54ae74d1e86..ad0082bc0ec 100644 --- a/mail-client/roundcube/roundcube-9999.ebuild +++ b/mail-client/roundcube/roundcube-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -91,6 +91,6 @@ pkg_postinst() { if [[ -n ${REPLACING_VERSIONS} ]]; then elog "You can review the post-upgrade instructions at:" - elog "${EROOT%/}/usr/share/webapps/${PN}/${PV}/postupgrade-en.txt" + elog "${EROOT}/usr/share/webapps/${PN}/${PV}/postupgrade-en.txt" fi }