The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update opam files

+3 -39
+1 -2
ocamlgraph.opam
··· 1 - # This file is generated by dune, edit dune-project instead 2 1 opam-version: "2.0" 3 2 synopsis: "A generic graph library for OCaml" 4 3 maintainer: ["filliatr@lri.fr"] ··· 14 13 "persistent" 15 14 "imperative" 16 15 ] 17 - homepage: "http://ocamlgraph.lri.fr/" 16 + homepage: "https://github.com/backtracking/ocamlgraph/" 18 17 bug-reports: "https://github.com/backtracking/ocamlgraph/issues/new" 19 18 depends: [ 20 19 "ocaml"
+2 -2
ocamlgraph_gtk.opam
··· 1 - # This file is generated by dune, edit dune-project instead 2 1 opam-version: "2.0" 3 2 synopsis: "Displaying graphs using ocamlgraphs and gtk" 4 3 maintainer: ["filliatr@lri.fr"] ··· 14 13 "persistent" 15 14 "imperative" 16 15 ] 17 - homepage: "http://ocamlgraph.lri.fr/" 16 + homepage: "https://github.com/backtracking/ocamlgraph/" 18 17 bug-reports: "https://github.com/backtracking/ocamlgraph/issues/new" 19 18 depends: [ 20 19 "ocaml" 21 20 "stdlib-shims" 22 21 "lablgtk" 22 + "conf-gnomecanvas" 23 23 "ocamlgraph" 24 24 "dune" {>= "2.0"} 25 25 ]
-35
opam
··· 1 - opam-version: "1" 2 - maintainer: "filliatr@lri.fr" 3 - authors: [ 4 - "Sylvain Conchon" 5 - "Jean-Christophe Filliâtre" 6 - "Julien Signoles" 7 - ] 8 - homepage: "http://ocamlgraph.lri.fr/" 9 - license: "GNU Library General Public License version 2.1" 10 - doc: ["http://ocamlgraph.lri.fr/doc"] 11 - tags: [ 12 - "graph" 13 - "library" 14 - "algorithms" 15 - "directed graph" 16 - "vertice" 17 - "edge" 18 - "persistent" 19 - "imperative" 20 - ] 21 - build: [ 22 - ["autoconf"] 23 - ["./configure"] 24 - [make] 25 - [make "install-findlib"] 26 - ] 27 - remove: [["ocamlfind" "remove" "ocamlgraph"]] 28 - depends: [ 29 - "conf-autoconf" 30 - "ocamlfind" {build} 31 - ] 32 - depopts: [ 33 - "lablgtk" 34 - "conf-gnomecanvas" 35 - ]