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 197E8138334 for ; Sat, 17 Nov 2018 17:22:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 513A3E0B1E; Sat, 17 Nov 2018 17:22:16 +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 28B1BE0B1E for ; Sat, 17 Nov 2018 17:22:16 +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 1E75A335C63 for ; Sat, 17 Nov 2018 17:22:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CEB19471 for ; Sat, 17 Nov 2018 17:22:11 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1542475313.dfc99c2058fa2a623d10d11928d6eb531dfa966f.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/gnumeric/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/gnumeric/gnumeric-1.12.43.ebuild X-VCS-Directories: app-office/gnumeric/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: dfc99c2058fa2a623d10d11928d6eb531dfa966f X-VCS-Branch: master Date: Sat, 17 Nov 2018 17:22:11 +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: 1c2dfabe-9d40-4560-bedb-b4259e6ee24f X-Archives-Hash: 9432f874ecc74d716abe00a3e3f39d0c commit: dfc99c2058fa2a623d10d11928d6eb531dfa966f Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sat Nov 17 17:18:21 2018 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sat Nov 17 17:21:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfc99c20 app-office/gnumeric: add missing DTD to DEPEND Delete unneeded SRC_URI. Make sure gobject-introspection can be installed for all supported python versions. Closes: https://bugs.gentoo.org/649390 Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Gilles Dartiguelongue gentoo.org> app-office/gnumeric/gnumeric-1.12.43.ebuild | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/app-office/gnumeric/gnumeric-1.12.43.ebuild b/app-office/gnumeric/gnumeric-1.12.43.ebuild index 84dd56b8e17..4f7ba1dc802 100644 --- a/app-office/gnumeric/gnumeric-1.12.43.ebuild +++ b/app-office/gnumeric/gnumeric-1.12.43.ebuild @@ -3,20 +3,20 @@ EAPI="6" GNOME2_LA_PUNT="yes" -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python2_7 python{3_4,3_5,3_6} ) -inherit gnome2 flag-o-matic python-single-r1 +inherit gnome2 flag-o-matic python-r1 DESCRIPTION="The GNOME Spreadsheet" HOMEPAGE="http://www.gnumeric.org/" LICENSE="GPL-2" -SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/gnumeric/1.12/gnumeric-1.12.43.tar.xz" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="introspection libgda perl python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +IUSE="+introspection libgda perl python" +# python-loader plugin is python2.7 only +REQUIRED_USE="python? ( $(python_gen_useflags -2) )" # Missing gnome-extra/libgnomedb required version in tree # but its upstream is dead and will be dropped soon. @@ -44,17 +44,23 @@ RDEPEND=" libgda? ( gnome-extra/libgda:5[gtk] ) " DEPEND="${RDEPEND} + app-text/docbook-xml-dtd:4.5 + app-text/yelp-tools dev-util/gtk-doc-am >=dev-util/intltool-0.35.0 - app-text/yelp-tools virtual/pkgconfig " -pkg_setup() { - use python && python-single-r1_pkg_setup +src_prepare() { + # Manage gi overrides ourselves + sed '/SUBDIRS/ s/introspection//' -i Makefile.{am,in} || die + gnome2_src_prepare } src_configure() { + if use python ; then + python_setup 'python2*' + fi gnome2_src_configure \ --disable-static \ --with-zlib \ @@ -63,3 +69,9 @@ src_configure() { $(use_with perl) \ $(use_with python) } + +src_install() { + gnome2_src_install + python_moduleinto gi.overrides + python_foreach_impl python_domodule introspection/gi/overrides/Gnm.py +}