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 E7F92138359 for ; Mon, 16 Nov 2020 19:51:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05A29E0802; Mon, 16 Nov 2020 19:51:49 +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 BA819E0809 for ; Mon, 16 Nov 2020 19:51:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2E61534129B for ; Mon, 16 Nov 2020 19:51:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 093AA46F for ; Mon, 16 Nov 2020 19:51:43 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1605556278.b19f27e7ac756b96c59ac4fe04cdc406ba72c2fb.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/libhangul/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/libhangul/libhangul-0.1.0.ebuild X-VCS-Directories: app-i18n/libhangul/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: b19f27e7ac756b96c59ac4fe04cdc406ba72c2fb X-VCS-Branch: master Date: Mon, 16 Nov 2020 19:51:43 +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: ab443007-0121-4b7b-840e-b69a72f49876 X-Archives-Hash: 856341782a73cba5b784a12f139439a8 commit: b19f27e7ac756b96c59ac4fe04cdc406ba72c2fb Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Mon Nov 16 00:00:00 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Nov 16 19:51:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b19f27e7 app-i18n/libhangul: Use EAPI="7". Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> app-i18n/libhangul/libhangul-0.1.0.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app-i18n/libhangul/libhangul-0.1.0.ebuild b/app-i18n/libhangul/libhangul-0.1.0.ebuild index cb63ebcdd7f..2d05ccfaf08 100644 --- a/app-i18n/libhangul/libhangul-0.1.0.ebuild +++ b/app-i18n/libhangul/libhangul-0.1.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 2006-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI="7" DESCRIPTION="Library for hangul input method logic, hanja dictionary" HOMEPAGE="https://github.com/libhangul/libhangul" @@ -13,11 +13,11 @@ KEYWORDS="amd64 ppc ppc64 x86" IUSE="nls static-libs test" RESTRICT="!test? ( test )" +BDEPEND="virtual/pkgconfig + nls? ( sys-devel/gettext )" RDEPEND="virtual/libiconv nls? ( virtual/libintl )" DEPEND="${RDEPEND} - virtual/pkgconfig - nls? ( sys-devel/gettext ) test? ( dev-libs/check )" src_configure() { @@ -32,5 +32,5 @@ src_test() { src_install() { default - find "${ED}" -name '*.la' -delete || die + find "${ED}" -name "*.la" -delete || die }