Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/ragel: ragel-6.9.ebuild ChangeLog
Date: Wed, 29 Jul 2015 19:00:01
Message-Id: 20150729185953.2EC63BF@oystercatcher.gentoo.org
1 grobian 15/07/29 18:59:53
2
3 Modified: ChangeLog
4 Added: ragel-6.9.ebuild
5 Log:
6 Version bump, bug #553166
7
8 (Portage version: 2.2.20-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
9
10 Revision Changes Path
11 1.65 dev-util/ragel/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ragel/ChangeLog?rev=1.65&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ragel/ChangeLog?rev=1.65&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ragel/ChangeLog?r1=1.64&r2=1.65
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/ragel/ChangeLog,v
20 retrieving revision 1.64
21 retrieving revision 1.65
22 diff -u -r1.64 -r1.65
23 --- ChangeLog 10 Aug 2014 21:29:20 -0000 1.64
24 +++ ChangeLog 29 Jul 2015 18:59:53 -0000 1.65
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/ragel
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ragel/ChangeLog,v 1.64 2014/08/10 21:29:20 slyfox Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/ragel/ChangeLog,v 1.65 2015/07/29 18:59:53 grobian Exp $
31 +
32 +*ragel-6.9 (29 Jul 2015)
33 +
34 + 29 Jul 2015; Fabian Groffen <grobian@g.o> +ragel-6.9.ebuild:
35 + Version bump, bug #553166
36
37 10 Aug 2014; Sergei Trofimovich <slyfox@g.o> ragel-6.7-r1.ebuild,
38 ragel-6.8.ebuild:
39
40
41
42 1.1 dev-util/ragel/ragel-6.9.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ragel/ragel-6.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ragel/ragel-6.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ragel-6.9.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/ragel/ragel-6.9.ebuild,v 1.1 2015/07/29 18:59:53 grobian Exp $
52
53 EAPI=5
54
55 inherit eutils autotools autotools-utils
56
57 DESCRIPTION="Compiles finite state machines from regular languages into executable code"
58 HOMEPAGE="http://www.colm.net/open-source/ragel/"
59 SRC_URI="http://www.colm.net/files/ragel/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
64 IUSE="vim-syntax"
65
66 DEPEND=""
67 RDEPEND=""
68
69 # We need to get the txl language in Portage to have the tests :(
70 RESTRICT=test
71
72 DOCS=( ChangeLog CREDITS README TODO )
73
74 src_test() {
75 cd "${S}"/test
76 ./runtests.in || die
77 }
78
79 src_install() {
80 autotools-utils_src_install
81
82 if use vim-syntax; then
83 insinto /usr/share/vim/vimfiles/syntax
84 doins ragel.vim
85 fi
86 }