-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #691 from psafont/sync
xs-extra: sync with metadata in repositories
- Loading branch information
Showing
2 changed files
with
52 additions
and
28 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 |
---|---|---|
@@ -1,25 +1,20 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: [ "[email protected]" ] | ||
homepage: "https://github.com/xapi-project/xen-api" | ||
synopsis: "Manipulate .vhd files" | ||
maintainer: ["Xapi project maintainers"] | ||
authors: ["[email protected]"] | ||
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
tags: ["org.mirage" "org:xapi-project"] | ||
homepage: "https://xapi-project.github.io/" | ||
bug-reports: "https://github.com/xapi-project/xen-api/issues" | ||
dev-repo: "git+https://github.com/xapi-project/xen-api.git" | ||
tags: [ | ||
"org:mirage" | ||
"org:xapi-project" | ||
] | ||
build: [[ "dune" "build" "-p" name "-j" jobs ] | ||
] | ||
depends: [ | ||
"ocaml" | ||
"dune" | ||
"dune" {>= "3.0"} | ||
"alcotest-lwt" {with-test} | ||
"cohttp-lwt" | ||
"conf-libssl" | ||
"cstruct" {>= "3.0.0"} | ||
"forkexec" | ||
"ezxenstore" {= version} | ||
"forkexec" {= version} | ||
"io-page" | ||
"lwt" | ||
"nbd-unix" | ||
|
@@ -29,14 +24,30 @@ depends: [ | |
"rpclib" | ||
"sha" | ||
"tar" | ||
"vhd-format" | ||
"vhd-format-lwt" | ||
"xapi-idl" | ||
"xapi-log" | ||
"vhd-format" {= version} | ||
"vhd-format-lwt" {= version} | ||
"xapi-idl" {= version} | ||
"xapi-log" {= version} | ||
"xen-api-client-lwt" {= version} | ||
"xenstore" | ||
"xenstore_transport" | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
synopsis: ".vhd file manipulation" | ||
dev-repo: "git+https://github.com/xapi-project/xen-api.git" | ||
url { | ||
src: "https://github.com/xapi-project/xen-api/archive/master.tar.gz" | ||
} |
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 |
---|---|---|
@@ -1,19 +1,32 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
name: "xapi-plugin" | ||
maintainer: "[email protected]" | ||
authors: "[email protected]" | ||
synopsis: "Library to simplify writing xapi plugins in OCaml" | ||
maintainer: ["Xapi project maintainers"] | ||
authors: ["[email protected]"] | ||
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
homepage: "https://github.com/xapi-project/ocaml-xapi-plugin" | ||
dev-repo: "git+https://github.com/xapi-project/ocaml-xapi-plugin.git" | ||
homepage: "https://xapi-project.github.io/" | ||
bug-reports: "https://github.com/xapi-project/ocaml-xapi-plugin/issues" | ||
build: [[ "dune" "build" "-p" name "-j" jobs ]] | ||
depends: [ | ||
"ocaml" | ||
"dune" {build} | ||
"dune" {>= "2.7"} | ||
"base-unix" | ||
"rpclib" | ||
"odoc" {with-doc} | ||
] | ||
synopsis: "Library to simplify writing xapi plugins in OCaml" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/xapi-project/ocaml-xapi-plugin.git" | ||
url { | ||
src: "https://github.com/xapi-project/ocaml-xapi-plugin/archive/master.tar.gz" | ||
} |