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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BFAC8158020 for ; Sun, 20 Nov 2022 23:56:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C077CE0973; Sun, 20 Nov 2022 23:56:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9AFE6E0973 for ; Sun, 20 Nov 2022 23:56:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5563340A35 for ; Sun, 20 Nov 2022 23:56:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D9E8759 for ; Sun, 20 Nov 2022 23:56:04 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1668988553.350213efabeb36c6a437eb09c23d851eb0ff956f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/gtkspell/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/gtkspell/gtkspell-2.0.16-r1.ebuild app-text/gtkspell/gtkspell-2.0.16-r2.ebuild app-text/gtkspell/gtkspell-3.0.10-r1.ebuild app-text/gtkspell/gtkspell-3.0.10.ebuild X-VCS-Directories: app-text/gtkspell/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 350213efabeb36c6a437eb09c23d851eb0ff956f X-VCS-Branch: master Date: Sun, 20 Nov 2022 23:56:04 +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: 25b3f5f2-c741-4844-a56d-a49bad581b71 X-Archives-Hash: c88adf15ff0740f7ec107ced1c4abbbb commit: 350213efabeb36c6a437eb09c23d851eb0ff956f Author: David Seifert gentoo org> AuthorDate: Sun Nov 20 23:55:53 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Nov 20 23:55:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=350213ef app-text/gtkspell: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> ...-2.0.16-r1.ebuild => gtkspell-2.0.16-r2.ebuild} | 17 +++++++------- ...ell-3.0.10.ebuild => gtkspell-3.0.10-r1.ebuild} | 27 +++++++++------------- 2 files changed, 19 insertions(+), 25 deletions(-) diff --git a/app-text/gtkspell/gtkspell-2.0.16-r1.ebuild b/app-text/gtkspell/gtkspell-2.0.16-r2.ebuild similarity index 74% rename from app-text/gtkspell/gtkspell-2.0.16-r1.ebuild rename to app-text/gtkspell/gtkspell-2.0.16-r2.ebuild index d2a9465c87c3..e7f3727506aa 100644 --- a/app-text/gtkspell/gtkspell-2.0.16-r1.ebuild +++ b/app-text/gtkspell/gtkspell-2.0.16-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DESCRIPTION="Spell checking widget for GTK" HOMEPAGE="http://gtkspell.sourceforge.net/" @@ -11,17 +11,16 @@ SRC_URI="http://${PN}.sourceforge.net/download/${P}.tar.gz" LICENSE="GPL-2+" SLOT="2" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="" -RDEPEND="x11-libs/gtk+:2 +RDEPEND=" + x11-libs/gtk+:2 >=app-text/enchant-1.1.6:0" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/gtk-doc-am >=dev-util/intltool-0.35.0 virtual/pkgconfig" -DOCS=( AUTHORS ChangeLog README ) # NEWS file is empty - src_prepare() { default @@ -30,10 +29,10 @@ src_prepare() { } src_configure() { - econf --disable-static --disable-gtk-doc + econf --disable-gtk-doc } src_install() { default - find "${D}" -name '*.la' -type f -delete || die + find "${ED}" -name '*.la' -type f -delete || die } diff --git a/app-text/gtkspell/gtkspell-3.0.10.ebuild b/app-text/gtkspell/gtkspell-3.0.10-r1.ebuild similarity index 77% rename from app-text/gtkspell/gtkspell-3.0.10.ebuild rename to app-text/gtkspell/gtkspell-3.0.10-r1.ebuild index 9e36430f1a65..bfa4472c0e2e 100644 --- a/app-text/gtkspell/gtkspell-3.0.10.ebuild +++ b/app-text/gtkspell/gtkspell-3.0.10-r1.ebuild @@ -1,14 +1,16 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit gnome2 vala +MY_P="${PN}3-${PV}" + DESCRIPTION="Spell checking widget for GTK" HOMEPAGE="http://gtkspell.sourceforge.net/" -MY_P="${PN}3-${PV}" SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${MY_P}.tar.xz" +S="${WORKDIR}/${MY_P}" LICENSE="GPL-2+" SLOT="3/0" @@ -22,25 +24,18 @@ RDEPEND=" dev-libs/glib:2 x11-libs/gtk+:3[introspection?] >=x11-libs/pango-1.8.0[introspection?] - introspection? ( >=dev-libs/gobject-introspection-1.30:= ) -" -DEPEND="${RDEPEND} + introspection? ( >=dev-libs/gobject-introspection-1.30:= )" +DEPEND="${RDEPEND}" +BDEPEND=" >=dev-util/gtk-doc-am-1.17 >=dev-util/intltool-0.35.0 virtual/pkgconfig - vala? ( $(vala_depend) ) -" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - use vala && vala_src_prepare - gnome2_src_prepare -} + vala? ( $(vala_depend) )" src_configure() { + use vala && vala_setup + gnome2_src_configure \ - --disable-static \ $(use_enable introspection) \ $(use_enable vala) }