Skip to content

Commit

Permalink
Merge pull request #26954 from mtelvers/color-fix
Browse files Browse the repository at this point in the history
Fix color package
  • Loading branch information
mseri authored Nov 26, 2024
2 parents 690cd63 + 3dd9ab2 commit 0b4bb38
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 5 deletions.
43 changes: 43 additions & 0 deletions packages/color/color.0.3.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
opam-version: "2.0"
synopsis: "Convert between different color formats"
description:
"Library that converts between different color formats. Right now it deals with RGB[A], HSL[A], OkLab, and Oklch formats. All those format convert to and from [Gg.Color.t]"
maintainer: [
"Anurag Soni <[email protected]>"
"Ambre Austen Suhamy <[email protected]>"
]
authors: ["Anurag Soni <[email protected]>"]
license: "MIT"
homepage: "https://github.com/anuragsoni/color"
bug-reports: "https://github.com/anuragsoni/color/issues"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.08.0"}
"gg" {>= "1.0.0"}
"alcotest" {with-test}
"ocaml-lsp-server" {with-dev-setup}
"ocamlformat" {= "0.26.2" & with-dev-setup}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/anuragsoni/color.git"

url {
src: "https://github.com/anuragsoni/color/archive/refs/tags/0.3.0.tar.gz"
checksum: [
"md5=8bb06d9bb169c29f17699fb93809db94"
"sha256=1ffa724cc16fe04aa253a8591eae26b22274f1492d64888f6fb8c2f7165cedbc"
]
}
2 changes: 1 addition & 1 deletion packages/spectrum/spectrum.0.2.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bug-reports: "https://github.com/anentropic/ocaml-spectrum/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.10"}
"color" {>= "0.2"}
"color" {>= "0.2" & < "0.3.0"}
"alcotest" {with-test & >= "1.4"}
"junit_alcotest" {with-test & >= "2.0"}
"odoc" {with-doc}
Expand Down
2 changes: 1 addition & 1 deletion packages/spectrum/spectrum.0.3.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bug-reports: "https://github.com/anentropic/ocaml-spectrum/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.10"}
"color" {>= "0.2"}
"color" {>= "0.2" & < "0.3.0"}
"alcotest" {with-test & >= "1.4"}
"junit_alcotest" {with-test & >= "2.0"}
"odoc" {with-doc}
Expand Down
2 changes: 1 addition & 1 deletion packages/spectrum/spectrum.0.4.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bug-reports: "https://github.com/anentropic/ocaml-spectrum/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.10"}
"color" {>= "0.2"}
"color" {>= "0.2" & < "0.3.0"}
"pcre" {>= "7.5"}
"opam-state" {>= "2.1" & < "2.2"}
"ppx_deriving" {>= "5.2"}
Expand Down
2 changes: 1 addition & 1 deletion packages/spectrum/spectrum.0.5.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bug-reports: "https://github.com/anentropic/ocaml-spectrum/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.10"}
"color" {>= "0.2"}
"color" {>= "0.2" & < "0.3.0"}
"pcre" {>= "7.5"}
"opam-state" {>= "2.1" & < "2.2"}
"ppx_deriving" {>= "5.2"}
Expand Down
2 changes: 1 addition & 1 deletion packages/spectrum/spectrum.0.6.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bug-reports: "https://github.com/anentropic/ocaml-spectrum/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.10"}
"color" {>= "0.2"}
"color" {>= "0.2" & < "0.3.0"}
"pcre" {>= "7.5"}
"opam-state" {>= "2.1" & < "2.2"}
"ppx_deriving" {>= "5.2"}
Expand Down

0 comments on commit 0b4bb38

Please sign in to comment.