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 8960E138359 for ; Sat, 14 Nov 2020 15:06:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7176E07A7; Sat, 14 Nov 2020 15:06:19 +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 BD02AE07A7 for ; Sat, 14 Nov 2020 15:06:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 57156340DCC for ; Sat, 14 Nov 2020 15:06:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 433F5456 for ; Sat, 14 Nov 2020 15:06:15 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1605366257.bd7b64ff420e97b3c4e6aa4a4cd643ef19dc6757.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/diffball/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/diffball/diffball-1.0.1-r2.ebuild X-VCS-Directories: dev-util/diffball/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: bd7b64ff420e97b3c4e6aa4a4cd643ef19dc6757 X-VCS-Branch: master Date: Sat, 14 Nov 2020 15:06:15 +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: 38f5a51c-864b-4c24-8437-2cbdbdb011b4 X-Archives-Hash: 420272b772f5073d332b26c68b822877 commit: bd7b64ff420e97b3c4e6aa4a4cd643ef19dc6757 Author: David Seifert gentoo org> AuthorDate: Sat Nov 14 15:04:17 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Nov 14 15:04:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd7b64ff dev-util/diffball: Remove libtool archives Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: David Seifert gentoo.org> dev-util/diffball/diffball-1.0.1-r2.ebuild | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/dev-util/diffball/diffball-1.0.1-r2.ebuild b/dev-util/diffball/diffball-1.0.1-r2.ebuild index 315c3c7a469..789ab5f8449 100644 --- a/dev-util/diffball/diffball-1.0.1-r2.ebuild +++ b/dev-util/diffball/diffball-1.0.1-r2.ebuild @@ -16,18 +16,19 @@ SLOT="0" KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="debug" -RDEPEND=">=sys-libs/zlib-1.1.4 +RDEPEND=" + >=sys-libs/zlib-1.1.4 >=app-arch/bzip2-1.0.2 app-arch/xz-utils" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" # Invalid RESTRICT for source package. Investigate. RESTRICT="strip" PATCHES=( - "${DISTDIR}/${P}-bug_543310_stack_buffer_overflows.patch" - "${DISTDIR}/${P}-bug_708736_cseek_xz_reset_avail_in_out.patch" + "${DISTDIR}"/${P}-bug_543310_stack_buffer_overflows.patch + "${DISTDIR}"/${P}-bug_708736_cseek_xz_reset_avail_in_out.patch ) src_prepare() { @@ -38,5 +39,14 @@ src_prepare() { } src_configure() { - econf --disable-static $(use_enable debug asserts) + econf \ + --disable-static \ + $(use_enable debug asserts) +} + +src_install() { + default + + # no static archives + find "${ED}" -name '*.la' -delete || die }