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 D04481382C5 for ; Tue, 20 Apr 2021 15:02:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2132AE0866; Tue, 20 Apr 2021 15:02:21 +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 074A4E0866 for ; Tue, 20 Apr 2021 15:02:21 +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 0D08A340E9C for ; Tue, 20 Apr 2021 15:02:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EF036BD for ; Tue, 20 Apr 2021 15:02:18 +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: <1618928608.be78859f4e155e58328f8980762602cd7aff1e2d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/mujs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/mujs/mujs-1.1.1-r1.ebuild dev-lang/mujs/mujs-1.1.1.ebuild X-VCS-Directories: dev-lang/mujs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: be78859f4e155e58328f8980762602cd7aff1e2d X-VCS-Branch: master Date: Tue, 20 Apr 2021 15:02:18 +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: 5f1abced-7cdd-4773-85d7-9d0293c1b487 X-Archives-Hash: 7ae4c268193735b538fd2603d9b79241 commit: be78859f4e155e58328f8980762602cd7aff1e2d Author: Sam James gentoo org> AuthorDate: Tue Apr 20 14:23:15 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 20 14:23:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be78859f dev-lang/mujs: fix pkgconfig file Closes: https://bugs.gentoo.org/784461 Signed-off-by: Sam James gentoo.org> dev-lang/mujs/{mujs-1.1.1.ebuild => mujs-1.1.1-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-lang/mujs/mujs-1.1.1.ebuild b/dev-lang/mujs/mujs-1.1.1-r1.ebuild similarity index 96% rename from dev-lang/mujs/mujs-1.1.1.ebuild rename to dev-lang/mujs/mujs-1.1.1-r1.ebuild index 7351763bc8e..39c708514d9 100644 --- a/dev-lang/mujs/mujs-1.1.1.ebuild +++ b/dev-lang/mujs/mujs-1.1.1-r1.ebuild @@ -39,8 +39,10 @@ src_prepare() { } src_compile() { + # We need to use ${PV} for the pkgconfig file + # #784461 emake \ - VERSION=${PF} \ + VERSION=${PV} \ XCFLAGS="${CFLAGS}" \ XCPPFLAGS="${CPPFLAGS}" \ prefix=/usr \