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 73400138334 for ; Wed, 25 Sep 2019 21:34:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CEB0E092B; Wed, 25 Sep 2019 21:34:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 37CDEE092B for ; Wed, 25 Sep 2019 21:34:43 +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 7528234B5B0 for ; Wed, 25 Sep 2019 21:34:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E39C5800 for ; Wed, 25 Sep 2019 21:34:38 +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: <1569447236.52ee446e0e1355d30c02a760dac616e4787c419e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/ktoblzcheck/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/ktoblzcheck/ktoblzcheck-1.49.ebuild X-VCS-Directories: app-misc/ktoblzcheck/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 52ee446e0e1355d30c02a760dac616e4787c419e X-VCS-Branch: master Date: Wed, 25 Sep 2019 21:34:38 +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: 7bf37182-7f12-4245-898c-e369972698d3 X-Archives-Hash: c6082b8b4b46edcbb10d896d569fffbc commit: 52ee446e0e1355d30c02a760dac616e4787c419e Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Sep 25 21:02:49 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Sep 25 21:33:56 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52ee446e app-misc/ktoblzcheck: EAPI-7 bump, fix REQUIRED_USE Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> app-misc/ktoblzcheck/ktoblzcheck-1.49.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-misc/ktoblzcheck/ktoblzcheck-1.49.ebuild b/app-misc/ktoblzcheck/ktoblzcheck-1.49.ebuild index 7b070a25b3a..65786c991f5 100644 --- a/app-misc/ktoblzcheck/ktoblzcheck-1.49.ebuild +++ b/app-misc/ktoblzcheck/ktoblzcheck-1.49.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python2_7 ) inherit python-single-r1 @@ -15,7 +15,7 @@ SLOT="0" KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86" IUSE="python" -REQUIRED_USE=${PYTHON_REQUIRED_USE} +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND=" app-text/recode @@ -41,5 +41,5 @@ src_configure() { src_install() { default - find "${ED}" -name '*.la' -exec rm -f {} + + find "${D}" -name '*.la' -type f -delete || die }