]> git.ipfire.org Git - people/pmueller/ipfire-3.x.git/commitdiff
ragel: New package
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 6 Apr 2019 11:54:28 +0000 (12:54 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 6 Apr 2019 11:54:28 +0000 (12:54 +0100)
Ragel compiles executable finite state machines from regular languages.

Ragel targets C, C++ and ASM. Ragel state machines can not only
recognize byte sequences as regular expression machines do, but can
also execute code at arbitrary points in the recognition of a regular
language. Code embedding is done using inline operators that do not
disrupt the regular language syntax.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
ragel/ragel.nm [new file with mode: 0644]

diff --git a/ragel/ragel.nm b/ragel/ragel.nm
new file mode 100644 (file)
index 0000000..02138d8
--- /dev/null
@@ -0,0 +1,32 @@
+###############################################################################
+# IPFire.org    - An Open Source Firewall Solution                            #
+# Copyright (C) - IPFire Development Team <info@ipfire.org>                   #
+###############################################################################
+
+name       = ragel
+version    = 6.10
+release    = 1
+
+groups     = Development/Tools
+url        = http://www.complang.org/ragel/
+license    = GPL
+summary    = Ragel State Machine Compiler
+
+description
+       Ragel compiles executable finite state machines from regular languages.
+       Ragel targets C, C++ and ASM. Ragel state machines can not only
+       recognize byte sequences as regular expression machines do, but can
+       also execute code at arbitrary points in the recognition of a regular
+       language. Code embedding is done using inline operators that do not
+       disrupt the regular language syntax.
+end
+
+source_dl  = https://www.colm.net/files/%{name}/
+
+packages
+       package %{name}
+
+       package %{name}-debuginfo
+               template DEBUGINFO
+       end
+end