Skip to content

Commit

Permalink
Merge pull request ocaml#11228 from seliopou/angstrom.0.8.1
Browse files Browse the repository at this point in the history
+angstrom.0.8.1
  • Loading branch information
rgrinberg authored Jan 15, 2018
2 parents 542ef2e + 3024c8b commit 4956f34
Show file tree
Hide file tree
Showing 12 changed files with 103 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/angstrom-async/angstrom-async.0.8.1/descr
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Angstrom - Async-specific support
21 changes: 21 additions & 0 deletions packages/angstrom-async/angstrom-async.0.8.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
opam-version: "1.2"
name: "angstrom-async"
maintainer: "Spiros Eliopoulos <[email protected]>"
authors: [ "Spiros Eliopoulos <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/inhabitedtype/angstrom"
bug-reports: "https://github.com/inhabitedtype/angstrom/issues"
dev-repo: "https://github.com/inhabitedtype/angstrom.git"
build: [
["jbuilder" "subst"] {pinned}
["jbuilder" "build" "-p" name "-j" jobs]
]
build-test: [
["jbuilder" "runtest" "-p" name]
]
depends: [
"jbuilder" {build & >= "1.0+beta10"}
"angstrom" {>= "0.7.0"}
"async" {>= "v0.9.0"}
]
available: [ ocaml-version >= "4.03.0" ]
2 changes: 2 additions & 0 deletions packages/angstrom-async/angstrom-async.0.8.1/url
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
archive:"https://github.com/inhabitedtype/angstrom/archive/0.8.1.tar.gz"
checksum:"d4f6d220bd3b6539067b604e6e0fe6ca"
1 change: 1 addition & 0 deletions packages/angstrom-lwt-unix/angstrom-lwt-unix.0.8.1/descr
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Angstrom - Lwt- and Unix-specific support
21 changes: 21 additions & 0 deletions packages/angstrom-lwt-unix/angstrom-lwt-unix.0.8.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
opam-version: "1.2"
maintainer: "Spiros Eliopoulos <[email protected]>"
authors: [ "Spiros Eliopoulos <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/inhabitedtype/angstrom"
bug-reports: "https://github.com/inhabitedtype/angstrom/issues"
dev-repo: "https://github.com/inhabitedtype/angstrom.git"
build: [
["jbuilder" "subst"] {pinned}
["jbuilder" "build" "-p" name "-j" jobs]
]
build-test: [
["jbuilder" "runtest" "-p" name]
]
depends: [
"jbuilder" {build & >= "1.0+beta10"}
"angstrom"
"lwt"
"base-unix"
]
available: [ ocaml-version >= "4.03.0" ]
2 changes: 2 additions & 0 deletions packages/angstrom-lwt-unix/angstrom-lwt-unix.0.8.1/url
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
archive:"https://github.com/inhabitedtype/angstrom/archive/0.8.1.tar.gz"
checksum:"d4f6d220bd3b6539067b604e6e0fe6ca"
1 change: 1 addition & 0 deletions packages/angstrom-unix/angstrom-unix.0.8.1/descr
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Angstrom - Unix-specific support
20 changes: 20 additions & 0 deletions packages/angstrom-unix/angstrom-unix.0.8.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
opam-version: "1.2"
maintainer: "Spiros Eliopoulos <[email protected]>"
authors: [ "Spiros Eliopoulos <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/inhabitedtype/angstrom"
bug-reports: "https://github.com/inhabitedtype/angstrom/issues"
dev-repo: "https://github.com/inhabitedtype/angstrom.git"
build: [
["jbuilder" "subst"] {pinned}
["jbuilder" "build" "-p" name "-j" jobs]
]
build-test: [
["jbuilder" "runtest" "-p" name]
]
depends: [
"jbuilder" {build & >= "1.0+beta10"}
"angstrom"
"base-unix"
]
available: [ ocaml-version >= "4.03.0" ]
2 changes: 2 additions & 0 deletions packages/angstrom-unix/angstrom-unix.0.8.1/url
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
archive:"https://github.com/inhabitedtype/angstrom/archive/0.8.1.tar.gz"
checksum:"d4f6d220bd3b6539067b604e6e0fe6ca"
9 changes: 9 additions & 0 deletions packages/angstrom/angstrom.0.8.1/descr
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Parser combinators built for speed and memory-efficiency

Angstrom is a parser-combinator library that makes it easy to write efficient,
expressive, and reusable parsers suitable for high-performance applications. It
exposes monadic and applicative interfaces for composition, and supports
incremental input through buffered and unbuffered interfaces. Both interfaces
give the user total control over the blocking behavior of their application,
with the unbuffered interface enabling zero-copy IO. Parsers are backtracking by
default and support unbounded lookahead.
21 changes: 21 additions & 0 deletions packages/angstrom/angstrom.0.8.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
opam-version: "1.2"
maintainer: "Spiros Eliopoulos <[email protected]>"
authors: [ "Spiros Eliopoulos <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/inhabitedtype/angstrom"
bug-reports: "https://github.com/inhabitedtype/angstrom/issues"
dev-repo: "https://github.com/inhabitedtype/angstrom.git"
build: [
["jbuilder" "subst"] {pinned}
["jbuilder" "build" "-p" name "-j" jobs]
]
build-test: [
["jbuilder" "runtest" "-p" name]
]
depends: [
"jbuilder" {build & >= "1.0+beta10"}
"alcotest" {test & >= "0.8.1"}
"base-bigarray"
"result"
]
available: [ ocaml-version >= "4.03.0" ]
2 changes: 2 additions & 0 deletions packages/angstrom/angstrom.0.8.1/url
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
archive:"https://github.com/inhabitedtype/angstrom/archive/0.8.1.tar.gz"
checksum:"d4f6d220bd3b6539067b604e6e0fe6ca"

0 comments on commit 4956f34

Please sign in to comment.