Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/gspell/
Date: Thu, 02 Aug 2018 07:06:48
Message-Id: 1533193569.7a7a8cbba3af7e1d8782a611345a248b5ba65a6e.leio@gentoo
1 commit: 7a7a8cbba3af7e1d8782a611345a248b5ba65a6e
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 2 07:03:11 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 2 07:06:09 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a7a8cbb
7
8 app-text/gspell: bump to 1.6.1
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 app-text/gspell/Manifest | 1 +
13 app-text/gspell/gspell-1.6.1.ebuild | 47 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/app-text/gspell/Manifest b/app-text/gspell/Manifest
17 index 8d5386cfa4c..f43f7d84afd 100644
18 --- a/app-text/gspell/Manifest
19 +++ b/app-text/gspell/Manifest
20 @@ -1 +1,2 @@
21 DIST gspell-1.4.2.tar.xz 407356 BLAKE2B f2ee6ae43be55e8ad7253e10893868a8d7857bbe41e14d71103b27a0faf40b0ed247e9fa38ed7bc75039fe0f1f600fe739f538d50f69fb063d0932df6c0b1c27 SHA512 00f53d3ca47a4ba1af1e8b4983a41dc6df8a9788898b45ffdd161a3fc8de28024cc985f49fbb872912c0a94addbca3b28ce2edda70eeb206a794e2bcf65e4a5e
22 +DIST gspell-1.6.1.tar.xz 416704 BLAKE2B 2a180bc52d3f09813d8de362e5bf900f831663c09530c8a9b993baf55f852a3939447a71c9c9dc0caafba7e8b74a2a5aad4443cf248eb87da4e15e0481e74262 SHA512 f1ffbd0d23d9743bcf924c25b3a3d7bf93c6a5e4ea5e362fb7300f657d8c1d0117e847f3dec29de377947f850e003b24a3231e88e99b313c955dd94ce358c23e
23
24 diff --git a/app-text/gspell/gspell-1.6.1.ebuild b/app-text/gspell/gspell-1.6.1.ebuild
25 new file mode 100644
26 index 00000000000..483713d17e1
27 --- /dev/null
28 +++ b/app-text/gspell/gspell-1.6.1.ebuild
29 @@ -0,0 +1,47 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="6"
34 +VALA_USE_DEPEND="vapigen"
35 +
36 +inherit gnome2 vala virtualx
37 +
38 +DESCRIPTION="Spell check library for GTK+ applications"
39 +HOMEPAGE="https://wiki.gnome.org/Projects/gspell"
40 +
41 +LICENSE="LGPL-2.1+"
42 +SLOT="0/1" # subslot = libgspell-1 soname version
43 +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-fbsd"
44 +
45 +IUSE="+introspection vala"
46 +REQUIRED_USE="vala? ( introspection )"
47 +
48 +RDEPEND="
49 + app-text/iso-codes
50 + >=app-text/enchant-1.6.0
51 + >=dev-libs/glib-2.44:2
52 + >=x11-libs/gtk+-3.20:3[introspection?]
53 + introspection? ( >=dev-libs/gobject-introspection-1.42.0:= )
54 + vala? ( $(vala_depend) )
55 +"
56 +DEPEND="${RDEPEND}
57 + dev-libs/libxml2:2
58 + >=dev-util/gtk-doc-am-1.25
59 + >=sys-devel/gettext-0.19.4
60 + virtual/pkgconfig
61 +"
62 +
63 +src_prepare() {
64 + use vala && vala_src_prepare
65 + gnome2_src_prepare
66 +}
67 +
68 +src_configure() {
69 + gnome2_src_configure \
70 + $(use_enable introspection) \
71 + $(use_enable vala)
72 +}
73 +
74 +src_test() {
75 + virtx emake check
76 +}