this repo has no description

Deprecate cfgen, since it was renamed to bnfgen (#14403)

* Deprecate cfgen, since it was renamed to bnfgen

* Convert cfgen to a transition package

Changed files
+9 -24
packages
cfgen
cfgen.1.0
+9 -24
packages/cfgen/cfgen.1.0/opam
···
maintainer: "Daniil Baturin <daniil@baturin.org>"
authors: "Daniil Baturin <daniil@baturin.org>"
homepage: "https://github.com/dmbaturin/cfgen"
-
bug-reports: "https://github.com/dmbaturin/cfgen/issues"
+
bug-reports: "https://github.com/dmbaturin/bnfgen/issues"
license: "MIT"
-
dev-repo: "git+https://github.com/dmbaturin/cfgen.git"
-
build: [
-
["./configure" "--prefix=%{prefix}%"]
-
[make]
+
dev-repo: "git+https://github.com/dmbaturin/bnfgen.git"
+
depends: [ "ocaml" "bnfgen"]
+
post-messages: [
+
"cfgen has been renamed to bnfgen and this package is now a transition package.\
+
Use bnfgen instead."
]
-
install: [make "install"]
-
remove: ["ocamlfind" "remove" "cfgen"]
-
depends: [
-
"ocaml"
-
"ocamlfind" {build}
-
"menhir" {build}
-
]
-
synopsis: "Context-free grammar based random text generator"
+
synopsis: "This package was renamed to bnfgen."
description: """
-
cfgen generated random text based on context-free grammars
-
defined in BNF-like syntax. It's primarily meant for parser
-
fuzzing. If a rule has multiple alternative, they are selected
-
randomly. To influence the choice, you can specify weight for
-
each alternative, as in
-
<start> ::= 10 "aaa" <start> | 5 "bbb" <start> | "ccc";"""
-
flags: light-uninstall
-
url {
-
src: "https://github.com/dmbaturin/cfgen/archive/1.0.zip"
-
checksum: "md5=8036d9283ae8c83a710872a9455f4435"
-
}
+
cfgen has been renamed to bnfgen.
+
This is a transition package, use bnfgen package instead."""