public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libspelling/
Date: Sat, 15 Feb 2025 12:24:39 +0000 (UTC)	[thread overview]
Message-ID: <1739622246.f92ce4d4d63e5a2242fb71e8dfeff874140c9508.pacho@gentoo> (raw)

commit:     f92ce4d4d63e5a2242fb71e8dfeff874140c9508
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 15 11:13:46 2025 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Feb 15 12:24:06 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f92ce4d4

app-text/libspelling: add 0.4.6

Also fix dependencies.

Closes: https://bugs.gentoo.org/949668
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 app-text/libspelling/Manifest                 |  1 +
 app-text/libspelling/libspelling-0.4.6.ebuild | 60 +++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/app-text/libspelling/Manifest b/app-text/libspelling/Manifest
index df185d271015..337694b6a5df 100644
--- a/app-text/libspelling/Manifest
+++ b/app-text/libspelling/Manifest
@@ -1 +1,2 @@
 DIST libspelling-0.4.5.tar.bz2 71413 BLAKE2B 5e6c00d9cd521f560082d76da75fd070a59f3b8dec269db95ffa88f9c216557587e180fcbc7399ea0dbcfe605de024344a4b17af60d4d31b1686f64b5df6fca9 SHA512 ab8fd439855d84c4e681fba0b5030bdcf34d0f4940a3b818aab4d297975acf37e437b141d678a482ebda240d23ecd7875e6c8656be6e1bb3c9c129f2169a8ced
+DIST libspelling-0.4.6.tar.bz2 71184 BLAKE2B ff5a30b7ba43faaf9bd42ed7d85624cf7bf1f5e3c4c242c4c4dbcd79ec92fafc2d0ddc49218d98b7d06b5a7b7aacf6527a0e481c78f8a61bea8b5fa976588de3 SHA512 f5aeda95a116cab8cb84a5ec9567fb9c9fb637b73773a7d0614e39e73de087a13e2cc5b6e1e853c3f2f3dacb38a04f7c44f8f89fe179dfe7689baef704331b65

diff --git a/app-text/libspelling/libspelling-0.4.6.ebuild b/app-text/libspelling/libspelling-0.4.6.ebuild
new file mode 100644
index 000000000000..c297188cb6a9
--- /dev/null
+++ b/app-text/libspelling/libspelling-0.4.6.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson vala
+
+DESCRIPTION="A GNOME library for spellchecking"
+HOMEPAGE="https://gitlab.gnome.org/GNOME/libspelling"
+SRC_URI="https://gitlab.gnome.org/GNOME/${PN}/-/archive/${PV}/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1+"
+SLOT="1"
+KEYWORDS="~amd64 ~loong ~riscv ~x86"
+IUSE="gtk-doc sysprof vala"
+
+RDEPEND="
+	dev-libs/glib:2
+	>=gui-libs/gtk-4.15.5:4
+	>=gui-libs/gtksourceview-5.10.0:5
+	app-text/enchant:2
+	dev-libs/icu:=
+"
+DEPEND="${RDEPEND}
+	sysprof? ( dev-util/sysprof-capture:4 )
+	vala? (
+		$(vala_depend)
+		>=gui-libs/gtksourceview-5.6:5[vala]
+	)
+"
+BDEPEND="
+	dev-libs/gobject-introspection
+	virtual/pkgconfig
+	gtk-doc? ( dev-util/gi-docgen )
+"
+
+src_prepare() {
+	use vala && vala_setup
+	default
+}
+
+src_configure() {
+	local emesonargs=(
+		-Denchant=enabled
+		-Dinstall-static=false
+		$(meson_use gtk-doc docs)
+		$(meson_use sysprof)
+		$(meson_use vala vapi)
+	)
+	meson_src_configure
+}
+
+src_install() {
+	meson_src_install
+
+	if use gtk-doc; then
+		mkdir -p "${ED}"/usr/share/gtk-doc/html/ || die
+		mv "${ED}"/usr/share/doc/${PN}-${SLOT} "${ED}"/usr/share/gtk-doc/html/ || die
+	fi
+}


             reply	other threads:[~2025-02-15 12:24 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-15 12:24 Pacho Ramos [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-08  1:08 [gentoo-commits] repo/gentoo:master commit in: app-text/libspelling/ Jakov Smolić
2025-01-24 10:49 WANG Xuerui
2025-01-18 17:25 Jakov Smolić
2025-01-18 17:16 Jakov Smolić
2025-01-16 16:55 Pacho Ramos
2025-01-16 16:55 Pacho Ramos
2025-01-16 16:55 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=1739622246.f92ce4d4d63e5a2242fb71e8dfeff874140c9508.pacho@gentoo \
    --to=pacho@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