From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 94A871582EF for ; Thu, 06 Mar 2025 16:24:12 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 76A58342FA0 for ; Thu, 06 Mar 2025 16:24:12 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 75B7D1102D2; Thu, 06 Mar 2025 16:24:11 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 bobolink.gentoo.org (Postfix) with ESMTPS id 6D5081102D2 for ; Thu, 06 Mar 2025 16:24:11 +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 1CF98342FA0 for ; Thu, 06 Mar 2025 16:24:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 337302731 for ; Thu, 06 Mar 2025 16:24:09 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1741278246.1ec24d8d66e9f814c9899c53602a1fc6174ebcc5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/lzlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/lzlib/lzlib-1.15-r1.ebuild app-arch/lzlib/lzlib-1.15.ebuild X-VCS-Directories: app-arch/lzlib/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1ec24d8d66e9f814c9899c53602a1fc6174ebcc5 X-VCS-Branch: master Date: Thu, 06 Mar 2025 16:24:09 +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: 871b7beb-db01-443c-b733-19b58acf3a9b X-Archives-Hash: caf744e5af5f26094a8f2eb5a2d40cab commit: 1ec24d8d66e9f814c9899c53602a1fc6174ebcc5 Author: NRK disroot org> AuthorDate: Thu Mar 6 13:36:08 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 6 16:24:06 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ec24d8d app-arch/lzlib: install minilzip also the current ebuild does `install-man` which install the manpage for minilzip tool, but the tool itself is never installed. since 1.15 the minilzip tool is not built by default and requires explicitly doing `make bin`. similarly `install-bin` will install the tool along with the manpage. Ref: https://lists.nongnu.org/archive/html/lzip-bug/2024-04/msg00007.html Signed-off-by: NRK disroot.org> Closes: https://github.com/gentoo/gentoo/pull/40928 Signed-off-by: Michał Górny gentoo.org> app-arch/lzlib/{lzlib-1.15.ebuild => lzlib-1.15-r1.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-arch/lzlib/lzlib-1.15.ebuild b/app-arch/lzlib/lzlib-1.15-r1.ebuild similarity index 93% rename from app-arch/lzlib/lzlib-1.15.ebuild rename to app-arch/lzlib/lzlib-1.15-r1.ebuild index 4064d799a727..f80bb61c509c 100644 --- a/app-arch/lzlib/lzlib-1.15.ebuild +++ b/app-arch/lzlib/lzlib-1.15-r1.ebuild @@ -35,7 +35,11 @@ src_configure() { ./configure "${myconf[@]}" || die } +src_compile() { + emake bin lib +} + src_install() { - emake DESTDIR="${D}" install install-man + emake DESTDIR="${D}" install install-bin einstalldocs }