forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[new release] ocamlgraph_gtk and ocamlgraph (2.0.0)
CHANGES: - port to dune and opam 2.0 - ❗ opam package now split into two packages: ocamlgraph and ocamlgraph_gtk - [WeakTopological] fixed incorrect use of generic hash tables (backtracking/ocamlgraph#99, Tomáš Dacík) - [Oper] fixed transitive_reduction (backtracking/ocamlgraph#91) - fix incorrect uses of polymorphic equality (Steffen Smolka, Boris Yakobowski) - [Coloring] fixed generation of OCamlDoc documentation (contributed by Earnestly) - ❗ [Coloring] functions now fail if the graph is directed - ❗ [Coloring] now uses a single, global exception [NoColoring] - [Coloring] new function two_color to 2-color a graph (or fail) - ❗ [Fixpoint] Take initial labeling of nodes into account (Johannes Kloos)
- Loading branch information
1 parent
f86b6d2
commit 9e4942d
Showing
2 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
opam-version: "2.0" | ||
synopsis: "A generic graph library for OCaml" | ||
description: "Provides both graph data structures and graph algorithms" | ||
maintainer: ["[email protected]"] | ||
authors: ["Sylvain Conchon" "Jean-Christophe Filliâtre" "Julien Signoles"] | ||
license: "LGPL-2.1-only" | ||
tags: [ | ||
"graph" | ||
"library" | ||
"algorithms" | ||
"directed graph" | ||
"vertice" | ||
"edge" | ||
"persistent" | ||
"imperative" | ||
] | ||
homepage: "https://github.com/backtracking/ocamlgraph/" | ||
bug-reports: "https://github.com/backtracking/ocamlgraph/issues/new" | ||
depends: [ | ||
"ocaml" | ||
"stdlib-shims" | ||
"dune" {>= "2.0"} | ||
] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/backtracking/ocamlgraph.git" | ||
x-commit-hash: "f97d342db06ccdbc11354303b5f225ae433f7ef3" | ||
url { | ||
src: | ||
"https://github.com/backtracking/ocamlgraph/releases/download/2.0.0/ocamlgraph-2.0.0.tbz" | ||
checksum: [ | ||
"sha256=20fe267797de5322088a4dfb52389b2ea051787952a8a4f6ed70fcb697482609" | ||
"sha512=c4973ac03bdff52d1c8a1ed01c81e0fbe2f76486995e57ff4e4a11bcc7b1793556139d52a81ff14ee8c8de52f1b40e4bd359e60a2ae626cc630ebe8bccefb3f1" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
opam-version: "2.0" | ||
synopsis: "Displaying graphs using OCamlGraph and GTK" | ||
description: "Displaying graphs using OCamlGraph and GTK" | ||
maintainer: ["[email protected]"] | ||
authors: ["Sylvain Conchon" "Jean-Christophe Filliâtre" "Julien Signoles"] | ||
license: "LGPL-2.1-only" | ||
tags: [ | ||
"graph" | ||
"library" | ||
"algorithms" | ||
"directed graph" | ||
"vertice" | ||
"edge" | ||
"persistent" | ||
"imperative" | ||
] | ||
homepage: "https://github.com/backtracking/ocamlgraph/" | ||
bug-reports: "https://github.com/backtracking/ocamlgraph/issues/new" | ||
depends: [ | ||
"ocaml" | ||
"stdlib-shims" | ||
"lablgtk" | ||
"conf-gnomecanvas" | ||
"ocamlgraph" | ||
"dune" {>= "2.0"} | ||
] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/backtracking/ocamlgraph.git" | ||
x-commit-hash: "f97d342db06ccdbc11354303b5f225ae433f7ef3" | ||
url { | ||
src: | ||
"https://github.com/backtracking/ocamlgraph/releases/download/2.0.0/ocamlgraph-2.0.0.tbz" | ||
checksum: [ | ||
"sha256=20fe267797de5322088a4dfb52389b2ea051787952a8a4f6ed70fcb697482609" | ||
"sha512=c4973ac03bdff52d1c8a1ed01c81e0fbe2f76486995e57ff4e4a11bcc7b1793556139d52a81ff14ee8c8de52f1b40e4bd359e60a2ae626cc630ebe8bccefb3f1" | ||
] | ||
} |