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 5C67A139694 for ; Sat, 5 Aug 2017 14:05:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B332E0C5F; Sat, 5 Aug 2017 14:05:03 +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 5E396E0C5F for ; Sat, 5 Aug 2017 14:05: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 69142341803 for ; Sat, 5 Aug 2017 14:05:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCBBB75F1 for ; Sat, 5 Aug 2017 14:05:00 +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: <1501941881.9aca2a1681207b1e96d49a233c4309cf777e9913.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/ibus-qt/ibus-qt-1.3.1.ebuild app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild app-i18n/ibus-qt/metadata.xml X-VCS-Directories: app-i18n/ibus-qt/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 9aca2a1681207b1e96d49a233c4309cf777e9913 X-VCS-Branch: master Date: Sat, 5 Aug 2017 14:05:00 +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: 891e595e-3620-479f-81f2-8eaaf3518116 X-Archives-Hash: 2abb06180b78facf3a47d86e54dfb2be commit: 9aca2a1681207b1e96d49a233c4309cf777e9913 Author: Akinori Hattori gentoo org> AuthorDate: Sat Aug 5 13:59:07 2017 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sat Aug 5 14:04:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aca2a16 app-i18n/ibus-qt: update to EAPI 6 Package-Manager: Portage-2.3.6, Repoman-2.3.1 app-i18n/ibus-qt/ibus-qt-1.3.1.ebuild | 49 +++++++++++++++++------------------ app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild | 36 ++++++++++++------------- app-i18n/ibus-qt/metadata.xml | 7 +++-- 3 files changed, 44 insertions(+), 48 deletions(-) diff --git a/app-i18n/ibus-qt/ibus-qt-1.3.1.ebuild b/app-i18n/ibus-qt/ibus-qt-1.3.1.ebuild index e83c2b1b568..848efda5893 100644 --- a/app-i18n/ibus-qt/ibus-qt-1.3.1.ebuild +++ b/app-i18n/ibus-qt/ibus-qt-1.3.1.ebuild @@ -1,10 +1,12 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" -inherit cmake-utils eutils multilib +EAPI="6" + +inherit cmake-utils MY_P="${P}-Source" + DESCRIPTION="Qt IBus library and Qt input method plugin" HOMEPAGE="https://github.com/ibus/ibus/wiki" SRC_URI="https://ibus.googlecode.com/files/${MY_P}.tar.gz" @@ -14,46 +16,43 @@ SLOT="0" KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux" IUSE="doc" -RDEPEND=">=app-i18n/ibus-1.3.7 - >=sys-apps/dbus-1.2 - x11-libs/libX11 - >=dev-qt/qtcore-4.5:4 - >=dev-qt/qtdbus-4.5:4" +RDEPEND="app-i18n/ibus + dev-libs/icu:= + dev-qt/qtcore:4 + dev-qt/qtdbus:4 + sys-apps/dbus + x11-libs/libX11" DEPEND="${RDEPEND} - >=dev-libs/icu-4:= - dev-util/cmake virtual/pkgconfig doc? ( app-doc/doxygen )" - S="${WORKDIR}/${MY_P}" -DOCS="AUTHORS README TODO" +PATCHES=( + "${FILESDIR}"/${PN}-1.2.0.20091217-doc.patch + "${FILESDIR}"/${P}-display-unset.patch + "${FILESDIR}"/${P}-gold.patch + "${FILESDIR}"/${P}-qvariant.patch +) src_configure() { - local mycmakeargs=( -DLIBDIR=$(get_libdir) -DDOCDIR=${EPREFIX}/usr/share/doc/${PF} all ) - + local mycmakeargs=( + -DLIBDIR=$(get_libdir) + -DDOCDIR="${EPREFIX}"/usr/share/doc/${PF} + ) cmake-utils_src_configure } -src_prepare() { - epatch "${FILESDIR}/${PN}-1.2.0.20091217-doc.patch" \ - "${FILESDIR}"/${P}-display-unset.patch \ - "${FILESDIR}"/${P}-gold.patch \ - "${FILESDIR}"/${P}-qvariant.patch -} - src_compile() { cmake-utils_src_compile - if use doc ; then - cd "${CMAKE_BUILD_DIR}" - emake docs || die + if use doc; then + emake -C "${BUILD_DIR}" docs fi } src_install() { - if use doc ; then - HTML_DOCS="${CMAKE_BUILD_DIR}/docs/html/*" + if use doc; then + HTML_DOCS=( "${BUILD_DIR}"/docs/html/. ) fi cmake-utils_src_install diff --git a/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild b/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild index d8f08b8ea1d..a990fbc5aab 100644 --- a/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild +++ b/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild @@ -1,51 +1,49 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" -inherit cmake-utils eutils multilib +EAPI="6" + +inherit cmake-utils DESCRIPTION="Qt IBus library and Qt input method plugin" HOMEPAGE="https://github.com/ibus/ibus/wiki" -SRC_URI="https://github.com/ibus/ibus-qt/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/ibus/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc" -RDEPEND=">=app-i18n/ibus-1.3.7 - >=sys-apps/dbus-1.2 - x11-libs/libX11 - >=dev-qt/qtcore-4.5:4 - >=dev-qt/qtdbus-4.5:4" +RDEPEND="app-i18n/ibus + dev-libs/icu:= + dev-qt/qtcore:4 + dev-qt/qtdbus:4 + sys-apps/dbus + x11-libs/libX11" DEPEND="${RDEPEND} - >=dev-libs/icu-4:= - dev-util/cmake virtual/pkgconfig doc? ( app-doc/doxygen )" -DOCS="AUTHORS README TODO" - PATCHES=( "${FILESDIR}"/${PN}-doc.patch ) src_configure() { - local mycmakeargs=( -DLIBDIR=$(get_libdir) all ) - + local mycmakeargs=( + -DLIBDIR=$(get_libdir) + ) cmake-utils_src_configure } src_compile() { cmake-utils_src_compile - if use doc ; then - cd "${CMAKE_BUILD_DIR}" - emake docs || die + if use doc; then + emake -C "${BUILD_DIR}" docs fi } src_install() { - if use doc ; then - HTML_DOCS="${CMAKE_BUILD_DIR}/docs/html/*" + if use doc; then + HTML_DOCS=( "${BUILD_DIR}"/docs/html/. ) fi cmake-utils_src_install diff --git a/app-i18n/ibus-qt/metadata.xml b/app-i18n/ibus-qt/metadata.xml index 16d92f4e22c..4346ded0668 100644 --- a/app-i18n/ibus-qt/metadata.xml +++ b/app-i18n/ibus-qt/metadata.xml @@ -5,11 +5,10 @@ cjk@gentoo.org Cjk - IBus means Intelligent Input Bus. It is a new input framework for Linux OS. It provides -full featured and user friendly input method user interface. It also may help -developers to develop input method easily. + + The Qt client for IBus. It provides a Qt immodule. + - ibus ibus/ibus-qt