-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
[new release] dream-html (2 packages) (3.9.5) #27194
Open
yawaramin
wants to merge
2
commits into
ocaml:master
Choose a base branch
from
yawaramin:release-dream-html-v3.9.5
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
opam-version: "2.0" | ||
synopsis: "HTML generator eDSL for Dream" | ||
description: | ||
"Write HTML directly in your OCaml source files with editor support." | ||
maintainer: ["Yawar Amin <[email protected]>"] | ||
authors: ["Yawar Amin <[email protected]>"] | ||
license: "GPL-3.0-or-later" | ||
tags: ["org:yawaramin"] | ||
homepage: "https://github.com/yawaramin/dream-html" | ||
doc: "https://yawaramin.github.io/dream-html/" | ||
bug-reports: "https://github.com/yawaramin/dream-html/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"ocaml" {>= "4.14.0"} | ||
"ppxlib" {>= "0.33.0" & < "1.0.0"} | ||
"pure-html" {= version} | ||
"dream" {>= "1.0.0~alpha7"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/yawaramin/dream-html.git" | ||
url { | ||
src: | ||
"https://github.com/yawaramin/dream-html/releases/download/v3.9.5/dream-html-3.9.5.tbz" | ||
checksum: [ | ||
"sha256=61218e64561b5f2f74b866af750018717046fe333bf48c7fa4192d632e1250e7" | ||
"sha512=a0f35373434c3e847b0a3c527e7539aa587ea7b1bf36e627a0a753a44932eabba0865ba179b27259b58a3503070c17080de37fc5d9d73931ac8e6bb3b59a073f" | ||
] | ||
} | ||
x-commit-hash: "7504c0d53d464812b3056071894e93bf04c49b09" |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
opam-version: "2.0" | ||
synopsis: "HTML generator eDSL" | ||
description: | ||
"Write HTML directly in your OCaml source files with editor support." | ||
maintainer: ["Yawar Amin <[email protected]>"] | ||
authors: ["Yawar Amin <[email protected]>"] | ||
license: "GPL-3.0-or-later" | ||
tags: ["org:yawaramin"] | ||
homepage: "https://github.com/yawaramin/dream-html" | ||
doc: "https://yawaramin.github.io/dream-html/" | ||
bug-reports: "https://github.com/yawaramin/dream-html/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"uri" {>= "4.4.0" & < "5.0.0"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/yawaramin/dream-html.git" | ||
url { | ||
src: | ||
"https://github.com/yawaramin/dream-html/releases/download/v3.9.5/dream-html-3.9.5.tbz" | ||
checksum: [ | ||
"sha256=61218e64561b5f2f74b866af750018717046fe333bf48c7fa4192d632e1250e7" | ||
"sha512=a0f35373434c3e847b0a3c527e7539aa587ea7b1bf36e627a0a753a44932eabba0865ba179b27259b58a3503070c17080de37fc5d9d73931ac8e6bb3b59a073f" | ||
] | ||
} | ||
x-commit-hash: "7504c0d53d464812b3056071894e93bf04c49b09" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The only relevant failure in CI is the lowe bounds check failing on
Since you know dream quite well, iiuc, do you know if this is a packaging error on the side of dream? Could it be avoided for your package perhaps just by raising the lower bound to dream alpha8?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, I think this is because of #27062. Sure, we can try bumping the lower bound.