Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/liblangtag: liblangtag-0.5.2.ebuild ChangeLog
Date: Fri, 27 Dec 2013 09:01:17
Message-Id: 20131227090113.2D9D92004C@flycatcher.gentoo.org
1 scarabeus 13/12/27 09:01:13
2
3 Modified: ChangeLog
4 Added: liblangtag-0.5.2.ebuild
5 Log:
6 Version bump to 0.5.2. Fixes bug#489222.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
9
10 Revision Changes Path
11 1.21 app-text/liblangtag/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/liblangtag/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/liblangtag/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/liblangtag/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/liblangtag/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 30 Jul 2013 07:09:38 -0000 1.20
24 +++ ChangeLog 27 Dec 2013 09:01:13 -0000 1.21
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/liblangtag
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/liblangtag/ChangeLog,v 1.20 2013/07/30 07:09:38 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/liblangtag/ChangeLog,v 1.21 2013/12/27 09:01:13 scarabeus Exp $
30 +
31 +*liblangtag-0.5.2 (27 Dec 2013)
32 +
33 + 27 Dec 2013; Tomáš Chvátal <scarabeus@g.o> +liblangtag-0.5.2.ebuild:
34 + Version bump to 0.5.2. Fixes bug#489222.
35
36 30 Jul 2013; Tomáš Chvátal <scarabeus@g.o>
37 +files/liblangtag-0.5.1-gcc45.patch, liblangtag-0.5.1.ebuild:
38
39
40
41 1.1 app-text/liblangtag/liblangtag-0.5.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/liblangtag/liblangtag-0.5.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/liblangtag/liblangtag-0.5.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: liblangtag-0.5.2.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-text/liblangtag/liblangtag-0.5.2.ebuild,v 1.1 2013/12/27 09:01:13 scarabeus Exp $
51
52 EAPI=5
53
54 inherit autotools-utils
55
56 DESCRIPTION="An interface library to access tags for identifying languages"
57 HOMEPAGE="http://tagoh.bitbucket.org/liblangtag/"
58 SRC_URI="https://bitbucket.org/tagoh/${PN}/downloads/${P}.tar.bz2"
59
60 LICENSE="|| ( LGPL-3 MPL-1.1 )"
61 SLOT="0"
62 KEYWORDS="~amd64 ~arm ~ppc ~x86"
63 IUSE="introspection static-libs test"
64
65 RDEPEND="
66 dev-libs/glib
67 dev-libs/libxml2
68 introspection? ( >=dev-libs/gobject-introspection-0.10.8 )"
69 DEPEND="${RDEPEND}
70 dev-libs/gobject-introspection-common
71 sys-devel/gettext
72 test? ( dev-libs/check )"
73
74 # Upstream expect liblangtag to be installed when one runs tests...
75 RESTRICT="test"
76
77 src_configure() {
78 local myeconfargs=(
79 $(use_enable introspection)
80 $(use_enable test)
81 )
82 autotools-utils_src_configure
83 }
84
85 src_install() {
86 autotools-utils_src_install
87 prune_libtool_files --all
88 }