diff --git a/dune-project b/dune-project index 9efdaf3e86f..dc537179296 100644 --- a/dune-project +++ b/dune-project @@ -2,3 +2,16 @@ (name opam) (implicit_transitive_deps true) + +(package (name opam-core)) +(package (name opam-format)) +(package (name opam-repository)) +(package (name opam-state)) +(package (name opam-solver)) +(package (name opam-client)) +(package (name opam-devel)) +(package (name opam-installer)) + +; Meta packages +(package (name opam)) +(package (name opam-admin)) diff --git a/master_changes.md b/master_changes.md index 98e8852c143..a5b83d282b3 100644 --- a/master_changes.md +++ b/master_changes.md @@ -118,6 +118,7 @@ users) ## Internal * Stop using polymorphic comparison when comparing `OpamTypes.switch_selections` [#6102 @kit-ty-kate] + * Remove the meta opam packages opam and opam-admin [#6115 @kit-ty-kate] ## Internal: Windows diff --git a/opam-admin.opam b/opam-admin.opam deleted file mode 100644 index 4a4e68b3be6..00000000000 --- a/opam-admin.opam +++ /dev/null @@ -1,25 +0,0 @@ -opam-version: "2.0" -synopsis: "Meta-package for Dune" -maintainer: "opam-devel@lists.ocaml.org" -authors: [ - "David Allsopp " - "Vincent Bernardoff " - "Raja Boujbel " - "Kate Deplaix " - "Roberto Di Cosmo " - "Thomas Gazagnaire " - "Louis Gesbert " - "Fabrice Le Fessant " - "Anil Madhavapeddy " - "Guillem Rieu " - "Ralf Treinen " - "Frederic Tuong " -] -homepage: "https://opam.ocaml.org/" -bug-reports: "https://github.com/ocaml/opam/issues" -license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" -depends: [ - "dune" {>= "2.0.0"} - "re" {>= "1.9.0"} - "opam-file-format" {>= "2.1.4"} -] diff --git a/opam.opam b/opam.opam deleted file mode 100644 index 961863fc7c4..00000000000 --- a/opam.opam +++ /dev/null @@ -1,25 +0,0 @@ -opam-version: "2.0" -version: "2.3.0~alpha~dev" -synopsis: "Meta-package for Dune" -maintainer: "opam-devel@lists.ocaml.org" -authors: [ - "David Allsopp " - "Vincent Bernardoff " - "Raja Boujbel " - "Kate Deplaix " - "Roberto Di Cosmo " - "Thomas Gazagnaire " - "Louis Gesbert " - "Fabrice Le Fessant " - "Anil Madhavapeddy " - "Guillem Rieu " - "Ralf Treinen " - "Frederic Tuong " -] -homepage: "https://opam.ocaml.org/" -bug-reports: "https://github.com/ocaml/opam/issues" -license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" -depends: [ - "dune" {>= "2.0.0"} - "opam-client" {= version} -]