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 0D3291396D0 for ; Wed, 16 Aug 2017 15:14:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F90FE0D4E; Wed, 16 Aug 2017 15:14:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 41D91E0D4E for ; Wed, 16 Aug 2017 15:14:54 +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 B994B341891 for ; Wed, 16 Aug 2017 15:14:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F22FA761D for ; Wed, 16 Aug 2017 15:14:49 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1502896071.fa2170a27949a469409308cb1153f6ef0212d877.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/libchewing/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/libchewing/libchewing-0.4.0-r1.ebuild X-VCS-Directories: app-i18n/libchewing/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: fa2170a27949a469409308cb1153f6ef0212d877 X-VCS-Branch: master Date: Wed, 16 Aug 2017 15:14:49 +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-Archives-Salt: aafb0a28-de22-4aaf-9d0e-0fd9c40003d3 X-Archives-Hash: dbeeca0b46f7b93d913c2129bca650f5 commit: fa2170a27949a469409308cb1153f6ef0212d877 Author: Akinori Hattori gentoo org> AuthorDate: Wed Aug 16 15:07:51 2017 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Wed Aug 16 15:07:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa2170a2 app-i18n/libchewing: update to EAPI 6 Package-Manager: Portage-2.3.6, Repoman-2.3.1 app-i18n/libchewing/libchewing-0.4.0-r1.ebuild | 29 +++++++++----------------- 1 file changed, 10 insertions(+), 19 deletions(-) diff --git a/app-i18n/libchewing/libchewing-0.4.0-r1.ebuild b/app-i18n/libchewing/libchewing-0.4.0-r1.ebuild index a2a73dc6986..526dc209f75 100644 --- a/app-i18n/libchewing/libchewing-0.4.0-r1.ebuild +++ b/app-i18n/libchewing/libchewing-0.4.0-r1.ebuild @@ -1,45 +1,36 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI="6" -inherit autotools eutils multilib toolchain-funcs +inherit autotools ltprune DESCRIPTION="Library for Chinese Phonetic input method" HOMEPAGE="http://chewing.csie.net/" -SRC_URI="https://github.com/chewing/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/${PN/lib}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" SLOT="0" LICENSE="GPL-2" KEYWORDS="amd64 ~ppc ppc64 ~x86" IUSE="static-libs test" -DEPEND=" +RDEPEND="dev-db/sqlite:3" +DEPEND="${RDEPEND} virtual/pkgconfig test? ( + dev-libs/check sys-libs/ncurses[unicode] - >=dev-libs/check-0.9.4 - ) - dev-db/sqlite:3 -" - -DOCS=( AUTHORS NEWS README.md TODO ) + )" src_prepare() { + default eautoreconf } src_configure() { econf \ $(use_enable static-libs static) \ - --with-sqlite3 \ - --disable-gcov -} - -src_test() { - # test subdirectory is not enabled by default; this means that we - # have to make it explicit. - emake -C test check + --with-sqlite3 } src_install() {