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 50E3D138350 for ; Sun, 26 Jan 2020 20:05:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78240E0872; Sun, 26 Jan 2020 20:05:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 51468E0872 for ; Sun, 26 Jan 2020 20:05:51 +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 1B14334E370 for ; Sun, 26 Jan 2020 20:05:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D9758F for ; Sun, 26 Jan 2020 20:05:48 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1580069142.64bf6aff6b29039dbef965972c6610e1388f1c4d.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/calibre/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/calibre/calibre-3.48.0-r1.ebuild app-text/calibre/calibre-4.9.1-r1.ebuild app-text/calibre/calibre-4.9.1.ebuild X-VCS-Directories: app-text/calibre/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 64bf6aff6b29039dbef965972c6610e1388f1c4d X-VCS-Branch: master Date: Sun, 26 Jan 2020 20:05:48 +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: ea58efd7-e013-482e-bd76-2f4be3f9c8bc X-Archives-Hash: be212fc7929bbebd006222ddc0ede7a5 commit: 64bf6aff6b29039dbef965972c6610e1388f1c4d Author: Zac Medico gentoo org> AuthorDate: Sun Jan 26 20:00:03 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Jan 26 20:05:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64bf6aff app-text/calibre: fix ${EPREFIX} missing trailing slash Reported-by: Michał Górny gentoo.org> Package-Manager: Portage-2.3.85, Repoman-2.3.20 Signed-off-by: Zac Medico gentoo.org> app-text/calibre/calibre-3.48.0-r1.ebuild | 4 ++-- app-text/calibre/calibre-4.9.1-r1.ebuild | 2 +- app-text/calibre/calibre-4.9.1.ebuild | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-text/calibre/calibre-3.48.0-r1.ebuild b/app-text/calibre/calibre-3.48.0-r1.ebuild index 438e9707f60..750bc132087 100644 --- a/app-text/calibre/calibre-3.48.0-r1.ebuild +++ b/app-text/calibre/calibre-3.48.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -203,7 +203,7 @@ src_install() { cd "${ED}"/usr/share/calibre/fonts/liberation || die local x for x in * ; do - [[ -f ${EPREFIX}usr/share/fonts/liberation-fonts/${x} ]] || continue + [[ -f ${EPREFIX}/usr/share/fonts/liberation-fonts/${x} ]] || continue ln -sf "../../../fonts/liberation-fonts/${x}" "${x}" || die done diff --git a/app-text/calibre/calibre-4.9.1-r1.ebuild b/app-text/calibre/calibre-4.9.1-r1.ebuild index a158ed8ff2e..96f088d7781 100644 --- a/app-text/calibre/calibre-4.9.1-r1.ebuild +++ b/app-text/calibre/calibre-4.9.1-r1.ebuild @@ -211,7 +211,7 @@ src_install() { cd "${ED}"/usr/share/calibre/fonts/liberation || die local x for x in * ; do - [[ -f ${EPREFIX}usr/share/fonts/liberation-fonts/${x} ]] || continue + [[ -f ${EPREFIX}/usr/share/fonts/liberation-fonts/${x} ]] || continue ln -sf "../../../fonts/liberation-fonts/${x}" "${x}" || die done diff --git a/app-text/calibre/calibre-4.9.1.ebuild b/app-text/calibre/calibre-4.9.1.ebuild index 3049f662198..1b5faed75d3 100644 --- a/app-text/calibre/calibre-4.9.1.ebuild +++ b/app-text/calibre/calibre-4.9.1.ebuild @@ -208,7 +208,7 @@ src_install() { cd "${ED}"/usr/share/calibre/fonts/liberation || die local x for x in * ; do - [[ -f ${EPREFIX}usr/share/fonts/liberation-fonts/${x} ]] || continue + [[ -f ${EPREFIX}/usr/share/fonts/liberation-fonts/${x} ]] || continue ln -sf "../../../fonts/liberation-fonts/${x}" "${x}" || die done