Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move OpamSWHID and its dependency towards the swhid_core library from opam-core to opam-format #6415

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all 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
1 change: 0 additions & 1 deletion opam-core.opam
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ depends: [
"dune" {>= "2.8.0"}
"sha" {>= "1.13"}
"jsonm"
"swhid_core"
"uutf"
(("host-system-mingw" {os = "win32" & os-distribution != "cygwinports"} &
"conf-mingw-w64-gcc-i686" {os = "win32" & os-distribution != "cygwinports"} &
Expand Down
1 change: 1 addition & 0 deletions opam-format.opam
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ depends: [
"opam-core" {= version}
"opam-file-format" {>= "2.1.4"}
"re" {>= "1.9.0"}
"swhid_core" {>= "0.1"}
"dune" {>= "2.8.0"}
]
2 changes: 1 addition & 1 deletion src/core/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(public_name opam-core)
(synopsis "OCaml Package Manager core internal stdlib")
; TODO: Remove (re_export ...) when CI uses the OCaml version that includes https://github.com/ocaml/ocaml/pull/11989
(libraries re (re_export ocamlgraph) unix sha jsonm swhid_core uutf)
(libraries re (re_export ocamlgraph) unix sha jsonm uutf)
(flags (:standard
(:include ../ocaml-flags-standard.sexp)
(:include ../ocaml-flags-configure.sexp)
Expand Down
2 changes: 1 addition & 1 deletion src/format/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(public_name opam-format)
(synopsis "OCaml Package Manager file format handling library")
; TODO: Remove (re_export ...) when CI uses the OCaml version that includes https://github.com/ocaml/ocaml/pull/11989
(libraries (re_export opam-core) (re_export opam-file-format) re)
(libraries (re_export opam-core) (re_export opam-file-format) re swhid_core)
(modules_without_implementation OpamTypes)
(flags (:standard
(:include ../ocaml-flags-standard.sexp)
Expand Down
File renamed without changes.
File renamed without changes.
Loading