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 2A25F15808B for ; Sun, 20 Feb 2022 05:51:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54E88E07ED; Sun, 20 Feb 2022 05:51:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3DBAEE07ED for ; Sun, 20 Feb 2022 05:51:46 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 32B9E342EE5 for ; Sun, 20 Feb 2022 05:51:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 984642A4 for ; Sun, 20 Feb 2022 05:51:43 +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: <1645335257.b346e26e9620380b3d415f53e468de3018cfcf37.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/duktape/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/duktape/duktape-2.7.0-r1.ebuild dev-lang/duktape/duktape-2.7.0.ebuild X-VCS-Directories: dev-lang/duktape/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b346e26e9620380b3d415f53e468de3018cfcf37 X-VCS-Branch: master Date: Sun, 20 Feb 2022 05:51:43 +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: 7a22d5b5-a54b-4d4d-bc60-22d658313ee0 X-Archives-Hash: 4a88658df8ac9d44b847e7f22357d8ed commit: b346e26e9620380b3d415f53e468de3018cfcf37 Author: Sam James gentoo org> AuthorDate: Sun Feb 20 05:33:50 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 20 05:34:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b346e26e dev-lang/duktape: install upstream pkgconfig (.pc) file for 2.7.0 Signed-off-by: Sam James gentoo.org> dev-lang/duktape/{duktape-2.7.0.ebuild => duktape-2.7.0-r1.ebuild} | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dev-lang/duktape/duktape-2.7.0.ebuild b/dev-lang/duktape/duktape-2.7.0-r1.ebuild similarity index 78% rename from dev-lang/duktape/duktape-2.7.0.ebuild rename to dev-lang/duktape/duktape-2.7.0-r1.ebuild index 31308f713bc1..012f1f5349cf 100644 --- a/dev-lang/duktape/duktape-2.7.0.ebuild +++ b/dev-lang/duktape/duktape-2.7.0-r1.ebuild @@ -22,10 +22,6 @@ PATCHES=( src_prepare() { default - # Edit pkgconfig - sed "s#VERSION#${PV}#" "${FILESDIR}/${PN}.pc" > "${S}/${PN}.pc" || die - sed -i "s#LIBDIR#$(get_libdir)#" "${S}/${PN}.pc" || die - mv Makefile.sharedlibrary Makefile || die "failed to rename makefile" } @@ -37,7 +33,4 @@ src_install() { dodir /usr/$(get_libdir) dodir /usr/include emake INSTALL_PREFIX="${ED}"/usr LIBDIR="/$(get_libdir)" install - - insinto /usr/$(get_libdir)/pkgconfig/ - doins ${S}/${PN}.pc }