Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/gspell/
Date: Sat, 30 Jul 2016 10:50:51
Message-Id: 1469875776.b94d300c95e411ee4244605d4ebd9e4f1cf226c4.pacho@gentoo
1 commit: b94d300c95e411ee4244605d4ebd9e4f1cf226c4
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 30 10:06:57 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 30 10:49:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b94d300c
7
8 app-text/gspell: Version bump
9
10 Package-Manager: portage-2.3.0
11
12 app-text/gspell/Manifest | 1 +
13 app-text/gspell/gspell-1.0.3.ebuild | 48 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/app-text/gspell/Manifest b/app-text/gspell/Manifest
17 index 8c1eb8f..5b059b5 100644
18 --- a/app-text/gspell/Manifest
19 +++ b/app-text/gspell/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gspell-0.1.2.tar.xz 355128 SHA256 e8625c57296b6c178bc37659f023342f8edefaaa2c5eccf40de8bd479dbfa8f0 SHA512 8d9bd61f378929217b9461debb58df5070952539f30f6ee211cf13f856dfe5d5216468679a8d7d7b08df47ee6b7b45f25b2b6400212a83de9563e2bf175905bb WHIRLPOOL 44334ac608e9a66c5a6bf011ad21d7d368e29d7923079e947ed5484ae0c7847df1f29dc255979d0da844e1ecba16fa19dfae5b84aefd85287bc63de1465d3ffa
22 DIST gspell-1.0.2.tar.xz 383844 SHA256 80d859a2ee7cf5184bd2b3dc696a0ec1b899ff67b606177e1ef87ef945ff92bb SHA512 67ed34b70ca1d8e626f366b62847c04efe204fa21d9e6b3f55ec4d08dca8613f2a03e42de28d38ebe53923889d848ea9064f01a89ede9a7f22772712f5b11aa7 WHIRLPOOL 5ff3ea3925d0b44c2b6302c679fcd307823454d1f6e76484ddbcde76354bcc1d4a03bc833319a22974c535bdecc75444eb4ea09a0190865bfe4fa5739a6105bd
23 +DIST gspell-1.0.3.tar.xz 385772 SHA256 d95905e6c631e34911e8e3feeb364815bf3fd7ccd1dac118a34bcbae70261bd5 SHA512 c38159a988996c69ffd4ed7a348ab5eeef214632e57cf599541806b4317937f0f9ccb8d677182886fd281eb1a955cae595e6382924b1bd5f5edbe447b3e95e5b WHIRLPOOL c4dad122007264fe4a61039eb7aa38b04e4325fb3bf0916ddbcd1073988fe3acc13a9fe445023c113b87ea2ff59f93719d2efaa905d522aff5b070129098569b
24
25 diff --git a/app-text/gspell/gspell-1.0.3.ebuild b/app-text/gspell/gspell-1.0.3.ebuild
26 new file mode 100644
27 index 0000000..c671014
28 --- /dev/null
29 +++ b/app-text/gspell/gspell-1.0.3.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="6"
36 +VALA_USE_DEPEND="vapigen"
37 +
38 +inherit gnome2 vala virtualx
39 +
40 +DESCRIPTION="Spell check library for GTK+ applications"
41 +HOMEPAGE="https://wiki.gnome.org/Projects/gspell"
42 +
43 +LICENSE="LGPL-2.1+"
44 +SLOT="0/1" # subslot = libgspell-1 soname version
45 +KEYWORDS="~alpha ~amd64 ~x86"
46 +
47 +IUSE="+introspection vala"
48 +REQUIRED_IUSE="vala? ( introspection )"
49 +
50 +RDEPEND="
51 + app-text/iso-codes
52 + >=app-text/enchant-1.6.0
53 + >=dev-libs/glib-2.44:2
54 + >=x11-libs/gtk+-3.20:3[introspection?]
55 + introspection? ( >=dev-libs/gobject-introspection-1.42.0:= )
56 + vala? ( $(vala_depend) )
57 +"
58 +DEPEND="${RDEPEND}
59 + >=dev-util/gtk-doc-am-1.25
60 + >=dev-util/intltool-0.35.0
61 + >=sys-devel/gettext-0.19.4
62 + virtual/pkgconfig
63 +"
64 +
65 +src_prepare() {
66 + use vala && vala_src_prepare
67 + gnome2_src_prepare
68 +}
69 +
70 +src_configure() {
71 + gnome2_src_configure \
72 + $(use_enable introspection) \
73 + $(use_enable vala)
74 +}
75 +
76 +src_test() {
77 + virtx emake check
78 +}