this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #19182 from toots/opam-publish-sedlex.2.4

Package sedlex.2.4

authored by

Marcello Seri and committed by
GitHub
fc9e66b5 efa82e2a

+51 -5
+1 -1
packages/css-parser/css-parser.0.2.2/opam
··· 10 10 "alcotest" {with-test} 11 11 "dune" {>= "2.4"} 12 12 "menhir" {>= "20200211"} 13 - "sedlex" {>= "2.0"} 13 + "sedlex" {>= "2.0" & < "2.4"} 14 14 ] 15 15 build: [ 16 16 ["dune" "subst"] {dev}
+1 -1
packages/css-parser/css-parser.0.2.3/opam
··· 10 10 "alcotest" {with-test} 11 11 "dune" {>= "2.4"} 12 12 "menhir" {>= "20200211"} 13 - "sedlex" {>= "2.0"} 13 + "sedlex" {>= "2.0" & < "2.4"} 14 14 ] 15 15 build: [ 16 16 ["dune" "subst"] {dev}
+1 -1
packages/css-parser/css-parser.0.2.4/opam
··· 10 10 "alcotest" {with-test} 11 11 "dune" {>= "2.4"} 12 12 "menhir" {>= "20200211"} 13 - "sedlex" {>= "2.0"} 13 + "sedlex" {>= "2.0" & < "2.4"} 14 14 ] 15 15 build: [ 16 16 ["dune" "subst"] {dev}
+1 -1
packages/css-parser/css-parser.0.2.5/opam
··· 10 10 "alcotest" {with-test} 11 11 "dune" {>= "2.4"} 12 12 "menhir" {>= "20200211"} 13 - "sedlex" {>= "2.0"} 13 + "sedlex" {>= "2.0" & < "2.4"} 14 14 ] 15 15 build: [ 16 16 ["dune" "subst"] {dev}
+1 -1
packages/fstar/fstar.2021.06.06/opam
··· 20 20 "fileutils" 21 21 "menhir" {build & >= "20161115"} 22 22 "pprint" {build & >= "20130324"} 23 - "sedlex" {build & >= "2.0"} 23 + "sedlex" {build & >= "2.0" & < "2.4"} 24 24 "ppxlib" {>= "0.22.0"} 25 25 "ppx_deriving" 26 26 "ppx_deriving_yojson"
+46
packages/sedlex/sedlex.2.4/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "An OCaml lexer generator for Unicode" 3 + description: """ 4 + sedlex is a lexer generator for OCaml. It is similar to ocamllex, but supports 5 + Unicode. Unlike ocamllex, sedlex allows lexer specifications within regular 6 + OCaml source files. Lexing specific constructs are provided via a ppx syntax 7 + extension.""" 8 + maintainer: ["Alain Frisch <alain.frisch@lexifi.com>"] 9 + authors: [ 10 + "Alain Frisch <alain.frisch@lexifi.com>" 11 + "https://github.com/ocaml-community/sedlex/graphs/contributors" 12 + ] 13 + license: "MIT" 14 + homepage: "https://github.com/ocaml-community/sedlex" 15 + bug-reports: "https://github.com/ocaml-community/sedlex/issues" 16 + depends: [ 17 + "ocaml" {>= "4.04"} 18 + "dune" {>= "2.8"} 19 + "ppxlib" {>= "0.18.0"} 20 + "gen" 21 + "uchar" 22 + "odoc" {with-doc} 23 + ] 24 + build: [ 25 + ["dune" "subst"] {dev} 26 + [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@runtest" {with-test} 35 + "@doc" {with-doc} 36 + ] 37 + ] 38 + dev-repo: "git+https://github.com/ocaml-community/sedlex.git" 39 + doc: "https://ocaml-community.github.io/sedlex/index.html" 40 + url { 41 + src: "https://github.com/ocaml-community/sedlex/archive/v2.4.tar.gz" 42 + checksum: [ 43 + "md5=1caec7e0d17b2ab27ea9f5ccf193ad42" 44 + "sha512=848a06517c89d40a8162c2d06d2ff3197de5aae5f22345f8f172183f8cf4d728406cc0e3f94365170a9d6167dc083973b4e4a4683871693138c8e82df7877b5f" 45 + ] 46 + }