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