6 changed files with 94 additions and 17 deletions
@ -1,4 +1,4 @@ |
|||
_build/ |
|||
*.install |
|||
_coverage/ |
|||
*.merlin |
|||
*.opam |
|||
*.install |
|||
|
@ -1,3 +1,3 @@ |
|||
## 0.1.0 - 2019-09-14 |
|||
## 0.1.0 - 2019-11-23 |
|||
|
|||
First release |
|||
|
@ -1,19 +1,33 @@ |
|||
(lang dune 1.11) |
|||
(lang dune 2.0) |
|||
|
|||
(name exit) |
|||
|
|||
(license ISC) |
|||
(authors "Léo Andrès <l@ndrs.fr>") |
|||
(maintainers "Léo Andrès <l@ndrs.fr>") |
|||
(source (uri git://git.zapashcanon.fr/zapashcanon/exit.git)) |
|||
|
|||
(authors "Léo Andrès <contact@ndrs.fr>") |
|||
|
|||
(maintainers "Léo Andrès <contact@ndrs.fr>") |
|||
|
|||
(source |
|||
(uri git://git.zapashcanon.fr/zapashcanon/exit.git)) |
|||
|
|||
(bug_reports https://git.zapashcanon.fr/zapashcanon/exit/issues) |
|||
|
|||
(homepage https://git.zapashcanon.fr/zapashcanon/exit) |
|||
|
|||
(documentation https://doc.zapashcanon.fr/exit/) |
|||
|
|||
(generate_opam_files true) |
|||
(explicit_js_mode) |
|||
|
|||
(package |
|||
(name exit) |
|||
(synopsis "An OCaml library to get exit status as declared in `stdlib.h`") |
|||
(description "Exit is an OCaml library to get exit status as declared in `stdlib.h`. |
|||
It gives access to the values of `EXIT_SUCCESS` and `EXIT_FAILURE` macros and provides some functions built around them.") |
|||
(depends |
|||
(dune (> 1.11.0)))) |
|||
(name exit) |
|||
(synopsis "Get exit status as declared in `stdlib.h`") |
|||
(description |
|||
"exit is an OCaml library to get exit status as declared in `stdlib.h`. It gives access to the values of `EXIT_SUCCESS` and `EXIT_FAILURE` macros and provides some functions built around them.") |
|||
(depends |
|||
(ocaml |
|||
(>= 4.05)) |
|||
(dune |
|||
(>= 2.0)) |
|||
(bisect_ppx |
|||
(>= 1.4)))) |
|||
|
@ -0,0 +1,31 @@ |
|||
# This file is generated by dune, edit dune-project instead |
|||
opam-version: "2.0" |
|||
synopsis: "Get exit status as declared in `stdlib.h`" |
|||
description: |
|||
"exit is an OCaml library to get exit status as declared in `stdlib.h`. It gives access to the values of `EXIT_SUCCESS` and `EXIT_FAILURE` macros and provides some functions built around them." |
|||
maintainer: ["Léo Andrès <contact@ndrs.fr>"] |
|||
authors: ["Léo Andrès <contact@ndrs.fr>"] |
|||
license: "ISC" |
|||
homepage: "https://git.zapashcanon.fr/zapashcanon/exit" |
|||
doc: "https://doc.zapashcanon.fr/exit/" |
|||
bug-reports: "https://git.zapashcanon.fr/zapashcanon/exit/issues" |
|||
depends: [ |
|||
"ocaml" {>= "4.05"} |
|||
"dune" {>= "2.0"} |
|||
"bisect_ppx" {>= "1.4"} |
|||
] |
|||
build: [ |
|||
["dune" "subst"] {pinned} |
|||
[ |
|||
"dune" |
|||
"build" |
|||
"-p" |
|||
name |
|||
"-j" |
|||
jobs |
|||
"@install" |
|||
"@runtest" {with-test} |
|||
"@doc" {with-doc} |
|||
] |
|||
] |
|||
dev-repo: "git://git.zapashcanon.fr/zapashcanon/exit.git" |
Loading…
Reference in new issue