Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions packages/diffast-api/diffast-api.0.3.6/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Diff/AST API"
description:
"Diff/AST API. Diff/AST is a fine-grained source code differencing tool based on an algorithm for computing tree edit distance (TED) between two ordered labeled trees."
maintainer: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
authors: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
license: "Apache-2.0"
homepage: "https://github.com/codinuum/diffast"
doc: "https://github.com/codinuum/diffast/README.md"
bug-reports: "https://github.com/codinuum/diffast/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.18"}
"diffast-misc" {= version}
"diffast-core" {= version}
"vlt" {>= "0.2.4"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/codinuum/diffast.git"
x-maintenance-intent: ["(latest)"]
url {
src: "https://github.com/codinuum/diffast/archive/v0.3.6.tar.gz"
checksum: [
"sha256=be973fe1316a3d72672c03680305ca8a4ad947ed07a8c3eeea8380faec9e52c0"
"md5=edb85aaf77cd22aaa8f6ce3889bf241d"
]
}
52 changes: 52 additions & 0 deletions packages/diffast-cli/diffast-cli.0.3.6/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Diff/AST command line interface"
description:
"Diff/AST command line interface. Diff/AST is a fine-grained source code differencing tool based on an algorithm for computing tree edit distance (TED) between two ordered labeled trees."
maintainer: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
authors: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
license: "Apache-2.0"
homepage: "https://github.com/codinuum/diffast"
doc: "https://github.com/codinuum/diffast/README.md"
bug-reports: "https://github.com/codinuum/diffast/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.18"}
"diffast-misc" {= version}
"diffast-core" {= version}
"diffast-api" {= version}
"diffast-etc" {= version}
"vlt" {>= "0.2.4"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/codinuum/diffast.git"
x-maintenance-intent: ["(latest)"]
url {
src: "https://github.com/codinuum/diffast/archive/v0.3.6.tar.gz"
checksum: [
"sha256=be973fe1316a3d72672c03680305ca8a4ad947ed07a8c3eeea8380faec9e52c0"
"md5=edb85aaf77cd22aaa8f6ce3889bf241d"
]
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
}
}
available: os != "win32" # temporarily silence file clash errors on Cygwin/MSys2 MinGW

OK, thanks both!

Now that there's a reproducer and a way forward for both dune and diffast I suggest marking the latter unavailable for this release (... and perhaps the previous?) until the install stanza has been reworked in the next release.

57 changes: 57 additions & 0 deletions packages/diffast-core/diffast-core.0.3.6/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Core functions of Diff/AST"
description:
"Core functions of Diff/AST. Diff/AST is a fine-grained source code differencing tool based on an algorithm for computing tree edit distance (TED) between two ordered labeled trees."
maintainer: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
authors: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
license: "Apache-2.0"
tags: ["abstract syntax tree" "differencing"]
homepage: "https://github.com/codinuum/diffast"
doc: "https://github.com/codinuum/diffast/README.md"
bug-reports: "https://github.com/codinuum/diffast/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.18"}
"dune-site"
"camlp-streams"
"uuidm"
"csv"
"base64"
"sedlex"
"menhir"
"diffast-misc" {= version}
"vlt" {>= "0.2.4"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/codinuum/diffast.git"
x-maintenance-intent: ["(latest)"]
url {
src: "https://github.com/codinuum/diffast/archive/v0.3.6.tar.gz"
checksum: [
"sha256=be973fe1316a3d72672c03680305ca8a4ad947ed07a8c3eeea8380faec9e52c0"
"md5=edb85aaf77cd22aaa8f6ce3889bf241d"
]
}
47 changes: 47 additions & 0 deletions packages/diffast-etc/diffast-etc.0.3.6/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Diff/AST etc files"
description:
"Config files for Diff/AST. Diff/AST is a fine-grained source code differencing tool based on an algorithm for computing tree edit distance (TED) between two ordered labeled trees."
maintainer: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
authors: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
license: "Apache-2.0"
homepage: "https://github.com/codinuum/diffast"
doc: "https://github.com/codinuum/diffast/README.md"
bug-reports: "https://github.com/codinuum/diffast/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.18"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/codinuum/diffast.git"
x-maintenance-intent: ["(latest)"]
url {
src: "https://github.com/codinuum/diffast/archive/v0.3.6.tar.gz"
checksum: [
"sha256=be973fe1316a3d72672c03680305ca8a4ad947ed07a8c3eeea8380faec9e52c0"
"md5=edb85aaf77cd22aaa8f6ce3889bf241d"
]
}
57 changes: 57 additions & 0 deletions packages/diffast-git-cli/diffast-git-cli.0.3.6/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Git-Diff/AST command line interface"
description:
"Git-Diff/AST command line interface. Diff/AST is a fine-grained source code differencing tool based on an algorithm for computing tree edit distance (TED) between two ordered labeled trees."
maintainer: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
authors: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
license: "Apache-2.0"
homepage: "https://github.com/codinuum/diffast"
doc: "https://github.com/codinuum/diffast/README.md"
bug-reports: "https://github.com/codinuum/diffast/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.18"}
"cmdliner" {>= "2.0"}
"mtime" {>= "2.0"}
"fmt"
"logs"
"diffast-misc" {= version}
"diffast-core" {= version}
"diffast-api" {= version}
"diffast-git" {= version}
"diffast-etc" {= version}
"vlt" {>= "0.2.4"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/codinuum/diffast.git"
x-maintenance-intent: ["(latest)"]
url {
src: "https://github.com/codinuum/diffast/archive/v0.3.6.tar.gz"
checksum: [
"sha256=be973fe1316a3d72672c03680305ca8a4ad947ed07a8c3eeea8380faec9e52c0"
"md5=edb85aaf77cd22aaa8f6ce3889bf241d"
]
}
50 changes: 50 additions & 0 deletions packages/diffast-git/diffast-git.0.3.6/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Git functions for Diff/AST API"
description:
"Git functions for Diff/AST API. Diff/AST is a fine-grained source code differencing tool based on an algorithm for computing tree edit distance (TED) between two ordered labeled trees."
maintainer: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
authors: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
license: "Apache-2.0"
homepage: "https://github.com/codinuum/diffast"
doc: "https://github.com/codinuum/diffast/README.md"
bug-reports: "https://github.com/codinuum/diffast/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.18"}
"git-unix" {>= "3.17"}
"diffast-misc" {= version}
"vlt" {>= "0.2.4"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/codinuum/diffast.git"
x-maintenance-intent: ["(latest)"]
url {
src: "https://github.com/codinuum/diffast/archive/v0.3.6.tar.gz"
checksum: [
"sha256=be973fe1316a3d72672c03680305ca8a4ad947ed07a8c3eeea8380faec9e52c0"
"md5=edb85aaf77cd22aaa8f6ce3889bf241d"
]
}
52 changes: 52 additions & 0 deletions packages/diffast-langs-common/diffast-langs-common.0.3.6/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Common functions for parsers of Diff/AST"
description:
"Common functions for parsers of Diff/AST. Diff/AST is a fine-grained source code differencing tool based on an algorithm for computing tree edit distance (TED) between two ordered labeled trees."
maintainer: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
authors: [
"Codinuum <[email protected]>"
"Masatomo Hashimoto <[email protected]>"
]
license: "Apache-2.0"
homepage: "https://github.com/codinuum/diffast"
doc: "https://github.com/codinuum/diffast/README.md"
bug-reports: "https://github.com/codinuum/diffast/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.18"}
"sedlex" {>= "3.3"}
"menhirLib"
"diffast-misc" {= version}
"vlt" {>= "0.2.4"}
"cppo" {build}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/codinuum/diffast.git"
x-maintenance-intent: ["(latest)"]
url {
src: "https://github.com/codinuum/diffast/archive/v0.3.6.tar.gz"
checksum: [
"sha256=be973fe1316a3d72672c03680305ca8a4ad947ed07a8c3eeea8380faec9e52c0"
"md5=edb85aaf77cd22aaa8f6ce3889bf241d"
]
}
Loading
Loading