public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/gtkspell/
Date: Sun, 20 Nov 2022 23:56:04 +0000 (UTC)	[thread overview]
Message-ID: <1668988553.350213efabeb36c6a437eb09c23d851eb0ff956f.soap@gentoo> (raw)

commit:     350213efabeb36c6a437eb09c23d851eb0ff956f
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 20 23:55:53 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> 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 <soap <AT> 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)
 }


             reply	other threads:[~2022-11-20 23:56 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-20 23:56 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-12-05  5:30 [gentoo-commits] repo/gentoo:master commit in: app-text/gtkspell/ WANG Xuerui
2021-08-12  3:10 Yixun Lan
2020-06-07 21:28 Mart Raudsepp
2020-05-13 17:35 Sergei Trofimovich
2020-04-17 19:50 Mart Raudsepp
2020-04-13 16:12 Agostino Sarubbo
2020-04-13 14:48 Agostino Sarubbo
2020-04-13 10:19 Agostino Sarubbo
2020-04-13 10:17 Agostino Sarubbo
2020-04-13 10:16 Agostino Sarubbo
2020-04-12 21:52 Mart Raudsepp
2020-04-12 18:28 Sergei Trofimovich
2020-02-08  9:28 Mart Raudsepp
2020-02-07 10:19 Mart Raudsepp
2020-02-06 23:32 Rémi Cardona
2020-02-02 20:13 Mart Raudsepp
2020-02-02 19:35 Mart Raudsepp
2019-07-29 21:13 Aaron Bauman
2019-07-28 18:59 Mart Raudsepp
2019-07-28 18:31 Aaron Bauman
2019-07-28 17:02 Aaron Bauman
2019-03-11 21:03 Andreas Sturmlechner
2018-04-01 21:44 Sergei Trofimovich
2018-02-23 22:10 Sergei Trofimovich
2018-02-20  8:10 Sergei Trofimovich
2017-12-20 20:23 Mart Raudsepp
2017-11-23 20:47 Sergei Trofimovich
2017-09-03 16:15 Gilles Dartiguelongue
2017-06-22 14:24 Alexis Ballier
2016-08-18  9:07 Pacho Ramos
2016-07-30 10:27 Jeroen Roovers
2015-12-26 14:20 Pacho Ramos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1668988553.350213efabeb36c6a437eb09c23d851eb0ff956f.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox