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 CB2C21382C5 for ; Wed, 27 May 2020 22:28:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEF44E08A2; Wed, 27 May 2020 22:28:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B6C11E08A2 for ; Wed, 27 May 2020 22:28:03 +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 0CB8F34EE84 for ; Wed, 27 May 2020 22:28:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82CE3238 for ; Wed, 27 May 2020 22:27:59 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1590618087.b05aba0f43bf944c862a5f12a2d6cf5a485a65d5.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/karchive/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/karchive/karchive-9999.ebuild X-VCS-Directories: kde-frameworks/karchive/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b05aba0f43bf944c862a5f12a2d6cf5a485a65d5 X-VCS-Branch: master Date: Wed, 27 May 2020 22:27:59 +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: 104cc365-0af5-4b9f-89dd-5f56c62baff1 X-Archives-Hash: c2cc86063eb0fd43c328158b9154c0a0 commit: b05aba0f43bf944c862a5f12a2d6cf5a485a65d5 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed May 27 22:21:22 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed May 27 22:21:27 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=b05aba0f kde-frameworks/karchive: Drop IUSE="bzip2,lzma" Bug: https://bugs.gentoo.org/724346 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/karchive/karchive-9999.ebuild | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/kde-frameworks/karchive/karchive-9999.ebuild b/kde-frameworks/karchive/karchive-9999.ebuild index e352947382..0789dc5f83 100644 --- a/kde-frameworks/karchive/karchive-9999.ebuild +++ b/kde-frameworks/karchive/karchive-9999.ebuild @@ -8,20 +8,11 @@ inherit ecm kde.org DESCRIPTION="Framework for reading, creation, and manipulation of various archive formats" LICENSE="GPL-2 LGPL-2.1" KEYWORDS="" -IUSE="+bzip2 +lzma" +IUSE="" DEPEND=" + app-arch/bzip2 + app-arch/xz-utils sys-libs/zlib - bzip2? ( app-arch/bzip2 ) - lzma? ( app-arch/xz-utils ) " RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=( - $(cmake_use_find_package bzip2 BZip2) - $(cmake_use_find_package lzma LibLZMA) - ) - - ecm_src_configure -}