forked from ocaml/opam
-
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.
Merge pull request ocaml#6043 from dra27/fix-opam-file
Synchronise opam file changes in opam-core.opam
- Loading branch information
Showing
2 changed files
with
17 additions
and
11 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
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,9 +1,8 @@ | ||
opam-version: "2.0" | ||
version: "2.3.0~alpha~dev" | ||
synopsis: "Core library for opam 2.2" | ||
description: """ | ||
Small standard library extensions, and generic system interaction modules used by opam. | ||
""" | ||
description: | ||
"Small standard library extensions, and generic system interaction modules used by opam." | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"David Allsopp <[email protected]>" | ||
|
@@ -19,16 +18,11 @@ authors: [ | |
"Ralf Treinen <[email protected]>" | ||
"Frederic Tuong <[email protected]>" | ||
] | ||
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
homepage: "https://opam.ocaml.org" | ||
bug-reports: "https://github.com/ocaml/opam/issues" | ||
dev-repo: "git+https://github.com/ocaml/opam.git" | ||
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
build: [ | ||
["./configure" "--disable-checks" "--prefix" prefix] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"ocaml" {>= "4.08.0" & (os != "win32" | < "5.0")} | ||
"base-unix" | ||
"ocamlgraph" | ||
"re" {>= "1.9.0"} | ||
|
@@ -37,5 +31,16 @@ depends: [ | |
"jsonm" | ||
"swhid_core" | ||
"uutf" | ||
(("host-system-mingw" {os = "win32" & os-distribution != "cygwinports"} & | ||
"conf-mingw-w64-gcc-i686" {os = "win32" & os-distribution != "cygwinports"} & | ||
"conf-mingw-w64-gcc-x86_64" {os = "win32" & os-distribution != "cygwinports"}) | | ||
("host-system-msvc" {os = "win32" & os-distribution != "cygwinports"} & | ||
"conf-msvc32" {os = "win32" & os-distribution != "cygwinports"} & | ||
"conf-msvc64" {os = "win32" & os-distribution != "cygwinports"})) | ||
] | ||
conflicts: ["extlib-compat"] | ||
build: [ | ||
["./configure" "--disable-checks" "--prefix" prefix] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
conflicts: "extlib-compat" | ||
dev-repo: "git+https://github.com/ocaml/opam.git" |