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 AD8C3138350 for ; Wed, 15 Jan 2020 14:39:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9E47E0866; Wed, 15 Jan 2020 14:39:37 +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 AA075E0866 for ; Wed, 15 Jan 2020 14:39:37 +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 5738934DF29 for ; Wed, 15 Jan 2020 14:39:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06DE892 for ; Wed, 15 Jan 2020 14:39:35 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1579098958.1543573131710d2bbf11287803cf9269cece35be.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-antivirus/clamav/clamav-0.102.1-r1.ebuild app-antivirus/clamav/clamav-0.102.1-r2.ebuild X-VCS-Directories: app-antivirus/clamav/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 1543573131710d2bbf11287803cf9269cece35be X-VCS-Branch: master Date: Wed, 15 Jan 2020 14:39:35 +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: 7fe4e23f-d578-469e-912b-e29816796b7d X-Archives-Hash: 53e4a1dd9b432d9281fc3eb42ac14e88 commit: 1543573131710d2bbf11287803cf9269cece35be Author: Michael Orlitzky gentoo org> AuthorDate: Wed Jan 15 14:35:39 2020 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Wed Jan 15 14:35:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15435731 app-antivirus/clamav: new revision fixing libtool -> libltdl depend. As reported in bug 544910, libclamav is linked against libltdl.so: $ objdump -p /usr/lib64/libclamav.so | grep NEEDED NEEDED libbz2.so.1 NEEDED libltdl.so.7 ... and that library is provided by dev-libs/libltdl: $ equery b /usr/lib64/libltdl.so.7 * Searching for /usr/lib64/libltdl.so.7 ... dev-libs/libltdl-2.4.6 (/usr/lib64/libltdl.so.7.3.1) dev-libs/libltdl-2.4.6 (/usr/lib64/libltdl.so.7 -> libltdl.so.7.3.1) We've been pulling this in "accidentally," through sys-devel/libtool, but that's incorrect. This commit drops sys-devel/libtool and replaces it with dev-libs/libltdl. Closes: https://bugs.gentoo.org/544910 Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Michael Orlitzky gentoo.org> .../clamav/{clamav-0.102.1-r1.ebuild => clamav-0.102.1-r2.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-antivirus/clamav/clamav-0.102.1-r1.ebuild b/app-antivirus/clamav/clamav-0.102.1-r2.ebuild similarity index 99% rename from app-antivirus/clamav/clamav-0.102.1-r1.ebuild rename to app-antivirus/clamav/clamav-0.102.1-r2.ebuild index 2c69d169341..8a85bf5c112 100644 --- a/app-antivirus/clamav/clamav-0.102.1-r1.ebuild +++ b/app-antivirus/clamav/clamav-0.102.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -23,7 +23,7 @@ CDEPEND="bzip2? ( app-arch/bzip2 ) >=sys-libs/zlib-1.2.2:= !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) - sys-devel/libtool + dev-libs/libltdl || ( dev-libs/libpcre2 >dev-libs/libpcre-6 ) dev-libs/libmspack xml? ( dev-libs/libxml2 )