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 A8002138334 for ; Sun, 24 Feb 2019 22:32:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC2EBE097B; Sun, 24 Feb 2019 22:32:13 +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 ADD8EE097B for ; Sun, 24 Feb 2019 22:32:12 +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 D7DC5340924 for ; Sun, 24 Feb 2019 22:32:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5220754D for ; Sun, 24 Feb 2019 22:32:09 +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: <1551047513.17175b13edcf4d3dc0aa602127664f629264db21.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/referencer/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/referencer/referencer-1.2.2.ebuild X-VCS-Directories: app-text/referencer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 17175b13edcf4d3dc0aa602127664f629264db21 X-VCS-Branch: master Date: Sun, 24 Feb 2019 22:32:09 +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: 5d095584-0721-4890-a97a-24f10185f42e X-Archives-Hash: 5c7fd26d256aca6605230d1ad2520ef6 commit: 17175b13edcf4d3dc0aa602127664f629264db21 Author: Dominik Kriegner gmail com> AuthorDate: Sun Feb 24 22:12:16 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 24 22:31:53 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17175b13 app-text/referencer: Add USE test, missing ${PYTHON_REQUIRED_USE} Closes: https://bugs.gentoo.org/677514 Closes: https://bugs.gentoo.org/673092 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Dominik Kriegner gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> app-text/referencer/referencer-1.2.2.ebuild | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/app-text/referencer/referencer-1.2.2.ebuild b/app-text/referencer/referencer-1.2.2.ebuild index 06a5922851d..6ab87015655 100644 --- a/app-text/referencer/referencer-1.2.2.ebuild +++ b/app-text/referencer/referencer-1.2.2.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" PYTHON_COMPAT=( python2_7 ) -inherit xdg-utils eutils python-single-r1 flag-o-matic +inherit xdg python-single-r1 flag-o-matic DESCRIPTION="Application to organise documents or references, and to generate BibTeX files" HOMEPAGE="https://launchpad.net/referencer" @@ -13,15 +13,16 @@ SRC_URI="https://launchpad.net/${PN}/1./${PV}/+download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -IUSE="" KEYWORDS="~amd64 ~x86" +IUSE="test" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND=" >=app-text/poppler-0.12.3-r3[cairo] - >=dev-cpp/gtkmm-2.8:* + >=dev-cpp/gtkmm-2.8:2.4 >=dev-cpp/libglademm-2.6.0 >=dev-cpp/gconfmm-2.14.0 - >=dev-libs/boost-1.52.0-r4" + >=dev-libs/boost-1.52.0-r4:=" DEPEND=" ${RDEPEND} @@ -30,7 +31,10 @@ DEPEND=" >=dev-lang/perl-5.8.1 dev-perl/libxml-perl dev-util/intltool - app-text/rarian" + app-text/rarian + test? ( app-text/docbook-xml-dtd:4.1.2 + app-text/docbook-xml-dtd:4.5 + app-text/scrollkeeper-dtd:1.0 )" PATCHES=( ${FILESDIR}/${PN}-${PV}-lib_path.patch ) @@ -45,13 +49,3 @@ src_configure() { --disable-update-mime-database \ --enable-python } - -pkg_postinst() { - xdg_mimeinfo_database_update - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_mimeinfo_database_update - xdg_desktop_database_update -}