summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Gesang <phg@phi-gamma.net>2018-11-06 13:22:51 +0100
committerPhilipp Gesang <phg@phi-gamma.net>2018-11-06 14:00:03 +0100
commitaeb05e247128d00681fcf2b25baa589743e44768 (patch)
tree651bc51b7c64b519e342e448e54c5ad6b8f51980
parent01a83e0f1fb67e85f77b87a159e47a1d3625b66b (diff)
downloadocaml-sid-aeb05e247128d00681fcf2b25baa589743e44768.tar.gz
fix opam build, bump versionv1.1
- Add cmdliner to deps, - set {with-test} filter on unit tests, - version 1 → 1.1.
-rw-r--r--_oasis2
-rw-r--r--sid.opam5
2 files changed, 4 insertions, 3 deletions
diff --git a/_oasis b/_oasis
index b07c0af..9e20097 100644
--- a/_oasis
+++ b/_oasis
@@ -1,7 +1,7 @@
OASISFormat: 0.4
Name: sid
Synopsis: Handle security identifiers (SID).
-Version: 1
+Version: 1.1
Authors: phg
License: LGPL-3 with OCaml linking exception
BuildTools: ocamlbuild
diff --git a/sid.opam b/sid.opam
index feab9b7..b7979fd 100644
--- a/sid.opam
+++ b/sid.opam
@@ -1,5 +1,5 @@
opam-version: "2.0"
-version: "1"
+version: "1.1"
synopsis: "Handle security identfiers"
maintainer: "Philipp Gesang <phg@phi-gamma.net>"
@@ -14,11 +14,12 @@ depends: [
"ocamlbuild" {build}
"oasis" {build}
"stdint"
+ "cmdliner"
"ounit" {with-test}
]
build: [
["oasis" "setup"]
- ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests"]
+ ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests" {with-test}]
["ocaml" "setup.ml" "-build"]
["ocaml" "setup.ml" "-doc"] {with-doc}
]