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 7558715817D for ; Wed, 12 Jun 2024 16:10:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DFB7E2B3C; Wed, 12 Jun 2024 16:10:37 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2B3F8E2B3C for ; Wed, 12 Jun 2024 16:10:37 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 88A4D335D7B for ; Wed, 12 Jun 2024 16:10:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 031A51CB5 for ; Wed, 12 Jun 2024 16:10:33 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1718204870.84fd797920a915d9c698244618feb5a59546f5e7.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/dmd_core/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/dmd_core/dmd_core-0.6.2.ebuild X-VCS-Directories: dev-libs/dmd_core/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 84fd797920a915d9c698244618feb5a59546f5e7 X-VCS-Branch: master Date: Wed, 12 Jun 2024 16:10:33 +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: be3bd77c-89f9-41d0-af99-c5b72c867c07 X-Archives-Hash: b4e3cfa1e7cfea075fe4eff1da127f45 commit: 84fd797920a915d9c698244618feb5a59546f5e7 Author: Lucio Sauer posteo net> AuthorDate: Wed Jun 12 15:03:27 2024 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Wed Jun 12 15:07:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=84fd7979 dev-libs/dmd_core: don't install LICENSE to ${D} Signed-off-by: Lucio Sauer posteo.net> dev-libs/dmd_core/dmd_core-0.6.2.ebuild | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/dev-libs/dmd_core/dmd_core-0.6.2.ebuild b/dev-libs/dmd_core/dmd_core-0.6.2.ebuild index f170b68df..f068fed25 100644 --- a/dev-libs/dmd_core/dmd_core-0.6.2.ebuild +++ b/dev-libs/dmd_core/dmd_core-0.6.2.ebuild @@ -27,12 +27,9 @@ BDEPEND=">=virtual/rust-1.47.0" src_install() { dolib.a target/$(usex debug debug release)/lib${PN}.a insinto /usr/$(get_libdir)/pkgconfig - cp "${FILESDIR}/dmd_core.pc" "${S}" || die "failed to copy pkgconfig file" - sed -i "s/%VERSION%/${PV}/g" "${S}/dmd_core.pc" || die "failed to set version in pkgconfig file" - doins "${S}/dmd_core.pc" - - sed -e "s:^libdir.*:libdir=${EPREFIX}/usr/$(get_libdir):" \ - -i "${ED}"/usr/$(get_libdir)/pkgconfig/dmd_core.pc || die "failed to set libdir in pkgconfig file" - dodoc "${S}/LICENSE.txt" - dodoc "${S}/README.md" + doins "${FILESDIR}"/dmd_core.pc + sed -e "s/%VERSION%/${PV}/g" \ + -e "s:^libdir.*:libdir=${EPREFIX}/usr/$(get_libdir):" \ + -i "${ED}"/usr/$(get_libdir)/pkgconfig/dmd_core.pc || die + einstalldocs }