From b2e27d46f2d1c287fc170e5bad846f5d69da997c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reynir=20Bj=C3=B6rnsson?= Date: Wed, 2 Feb 2022 13:03:50 +0000 Subject: [PATCH] Add opam-graph, modulectomy packages Remove pin-depends in builder-web and add new package opam-graph and update modulectomy branch. --- packages/builder-web.0.2.0~dev/opam | 4 ---- packages/modulectomy.0.0.1~dev/opam | 2 +- packages/opam-graph.0.1.0~dev/opam | 34 +++++++++++++++++++++++++++++ 3 files changed, 35 insertions(+), 5 deletions(-) create mode 100644 packages/opam-graph.0.1.0~dev/opam diff --git a/packages/builder-web.0.2.0~dev/opam b/packages/builder-web.0.2.0~dev/opam index 9cb3cbb..56c661c 100644 --- a/packages/builder-web.0.2.0~dev/opam +++ b/packages/builder-web.0.2.0~dev/opam @@ -59,10 +59,6 @@ Produced binaries can be downloaded and executed. [builds.robur.coop](https://builds.robur.coop/) itself runs builder-web. """ -pin-depends: [ - ["modulectomy.dev" "git+https://github.com/roburio/modulectomy.git#20211213_implementing_UI_scale_in_modulectomy.treemap"] - ["opam-graph.dev" "git+https://git.robur.io/robur/opam-graph.git"] -] url { src: "git+https://git.robur.io/robur/builder-web.git" } diff --git a/packages/modulectomy.0.0.1~dev/opam b/packages/modulectomy.0.0.1~dev/opam index 4550d35..d32484f 100644 --- a/packages/modulectomy.0.0.1~dev/opam +++ b/packages/modulectomy.0.0.1~dev/opam @@ -27,5 +27,5 @@ build: [ ] dev-repo: "git+https://github.com/Drup/modulectomy.git" url { - src: "git+https://github.com/roburio/modulectomy.git" + src: "git+https://github.com/roburio/modulectomy.git#20211213_implementing_UI_scale_in_modulectomy.treemap" } diff --git a/packages/opam-graph.0.1.0~dev/opam b/packages/opam-graph.0.1.0~dev/opam new file mode 100644 index 0000000..7be95e6 --- /dev/null +++ b/packages/opam-graph.0.1.0~dev/opam @@ -0,0 +1,34 @@ +opam-version: "2.0" +maintainer: "Robur " +authors: ["Robur "] +homepage: "https://git.robur.io/robur/opam-graph" +dev-repo: "git+https://git.robur.io/robur/opam-graph.git" +bug-reports: "https://github.com/roburio/opam-graph/issues" +license: "ISC" + +depends: [ + "ocaml" {>= "4.08.0"} + "dune" {>= "2.0.0"} + "cmdliner" + "fmt" {>= "0.8.7"} + "logs" + "opam-core" + "opam-format" + "ocamldot" + "rresult" + "tyxml" + "gg" +] +build: [ + ["dune" "subst"] {dev} + ["dune" "build" "-p" name "-j" jobs] +] + +synopsis: "Graphing dependencies of opam packages" +description: """ +This package outputs graphs (in svg and dot) of opam packages. +""" + +url { + src: "git+https://git.robur.io/robur/opam-graph.git" +}