From 3270e84a38e5f9f1abccf468846d4d29ff54a7fe Mon Sep 17 00:00:00 2001 From: Francois Berenger Date: Tue, 12 Mar 2019 10:29:39 +0900 Subject: [PATCH 1/2] dune-project doesn't need to be under VC --- dune-project | 1 - 1 file changed, 1 deletion(-) delete mode 100644 dune-project diff --git a/dune-project b/dune-project deleted file mode 100644 index 7655de0..0000000 --- a/dune-project +++ /dev/null @@ -1 +0,0 @@ -(lang dune 1.1) From 1a892ae507533fb585ebeb2e35887264874baec9 Mon Sep 17 00:00:00 2001 From: Francois Berenger Date: Tue, 12 Mar 2019 10:29:54 +0900 Subject: [PATCH 2/2] better opam file --- hack_parallel.opam | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/hack_parallel.opam b/hack_parallel.opam index 46f530a..c1e830e 100644 --- a/hack_parallel.opam +++ b/hack_parallel.opam @@ -1,11 +1,17 @@ -opam-version: "1.2" +opam-version: "2.0" maintainer: "rvantonder@gmail.com" -authors: [""] +authors: "Facebook hackers" homepage: "https://github.com/rvantonder/hack-parallel" bug-reports: "https://github.com/rvantonder/hack-parallel/issues" -dev-repo: "https://github.com/rvantonder/hack-parallel.git" +dev-repo: "git+https://github.com/rvantonder/hack-parallel.git" license: "MIT" -build: [["dune" "build" "-p" name "-j" jobs "@install"]] +build: ["dune" "build" "-p" name "-j" jobs "@install"] depends: [ "core" + "ppx_deriving" ] +synopsis: "Parallel and shared memory library" +description: """ +Parallel and shared memory components used in Facebook's Hack, Flow, and Pyre +projects. +"""