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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 40B2E158094 for ; Sun, 24 Jul 2022 06:55:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43793E0D7B; Sun, 24 Jul 2022 06:55:39 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1D7C3E0D7B for ; Sun, 24 Jul 2022 06:55:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 088AE335D3F for ; Sun, 24 Jul 2022 06:55:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50110542 for ; Sun, 24 Jul 2022 06:55:36 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1658645491.293635e0ea12a4002027c0f9834f4bd3ab9cce04.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/mupdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/mupdf/mupdf-1.20.0.ebuild X-VCS-Directories: app-text/mupdf/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 293635e0ea12a4002027c0f9834f4bd3ab9cce04 X-VCS-Branch: master Date: Sun, 24 Jul 2022 06:55:36 +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: 2ecdadf5-b0ee-4fcc-8234-3aff0400cae5 X-Archives-Hash: b90d658a857d952f5f6d6e7b89bc3580 commit: 293635e0ea12a4002027c0f9834f4bd3ab9cce04 Author: Philipp Rösner protonmail com> AuthorDate: Tue Jul 19 20:38:22 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Sun Jul 24 06:51:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=293635e0 app-text/mupdf-1.20.0: fix version in .pc file A wrong MuPDF version (0.5.0) was specified in the pkgconfig file mupdf.pc, which is now fixed via a sed substitution. Closes: https://bugs.gentoo.org/859262 Signed-off-by: Philipp Rösner protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/26490 Signed-off-by: Florian Schmaus gentoo.org> app-text/mupdf/mupdf-1.20.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-text/mupdf/mupdf-1.20.0.ebuild b/app-text/mupdf/mupdf-1.20.0.ebuild index 216bbfaa79e7..447778adb9d5 100644 --- a/app-text/mupdf/mupdf-1.20.0.ebuild +++ b/app-text/mupdf/mupdf-1.20.0.ebuild @@ -69,6 +69,11 @@ src_prepare() { -e "1iverbose = yes" \ -e "1ibuild = debug" \ -i Makerules || die "Failed adding build variables to Makerules in src_prepare()" + + # Adjust MuPDF version in .pc file created by the + # mupdf-1.10a-add-desktop-pc-xpm-files.patch file + sed -e "s/Version: \(.*\)/Version: ${PV}/" \ + -i platform/debian/${PN}.pc || die "Failed substituting version in ${PN}.pc" } _emake() {