Skip to content

Commit

Permalink
[quarto] Bump to v1.6.39 to pull in a fix which affects running Julia…
Browse files Browse the repository at this point in the history
… code chunks (#10070)

* Bump to newer version to (at least) pull it a fix which affects
running Julia code chunks.
quarto-dev/quarto-cli#10225

* forgot to update the quarto archive hashes

* apparently got the wrong linux arm one

* apparently the copyright also changed
  • Loading branch information
bdklahn authored Dec 23, 2024
1 parent 5467beb commit e11cd7e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Q/quarto/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ using BinaryBuilder, Pkg

# Collection of pre-build quarto binaries
name = "quarto"
quarto_ver = "1.5.57"
quarto_ver = "1.6.39"
version = VersionNumber(quarto_ver)

url_prefix = "https://github.com/quarto-dev/quarto-cli/releases/download/v$(quarto_ver)/quarto-$(quarto_ver)"
sources = [
ArchiveSource("$(url_prefix)-linux-amd64.tar.gz", "6418effd9f7c8a5f043197bcf1f30a4a2d588de399f23121ecec580ca5133296"; unpack_target = "x86_64-linux-gnu"),
ArchiveSource("$(url_prefix)-linux-arm64.tar.gz", "13225b149fa487457ab633a73e4e8fad892aa4d1dc8e44a20d06e5b51995cdd6"; unpack_target = "aarch64-linux-gnu"),
ArchiveSource("$(url_prefix)-macos.tar.gz", "0c90ca0ad03b4337213d71ec97b3fa5ed1e1fe450c4df64eb6c825808cc70e61"; unpack_target = "x86_64-apple-darwin14"),
ArchiveSource("$(url_prefix)-macos.tar.gz", "0c90ca0ad03b4337213d71ec97b3fa5ed1e1fe450c4df64eb6c825808cc70e61"; unpack_target = "aarch64-apple-darwin20"),
ArchiveSource("$(url_prefix)-win.zip", "7e8c55c2151f4f898230f53451eac199206cd7b018308ab203e9b3353cacdf19"; unpack_target = "x86_64-w64-mingw32"),
FileSource("https://raw.githubusercontent.com/quarto-dev/quarto-cli/v$(quarto_ver)/COPYRIGHT", "490f3bfa035e325018ce9b0c8c2aec1f291c67ff55358a653d079488385af517"),
FileSource("https://raw.githubusercontent.com/quarto-dev/quarto-cli/v$(quarto_ver)/COPYING.md", "54a55511991726b38e3867966ab14fd62919114670f2178654cced9394af78fd"),
ArchiveSource("$(url_prefix)-linux-amd64.tar.gz", "d797c796713a57c14d8115f49a45d626a16478697096a0421f2d2d980e5f9d4a"; unpack_target="x86_64-linux-gnu"),
ArchiveSource("$(url_prefix)-linux-arm64.tar.gz", "cb3cda3272b27841862370a897b883e85005ddae9b5e57ec13c10798d46ee0b6"; unpack_target="aarch64-linux-gnu"),
ArchiveSource("$(url_prefix)-macos.tar.gz", "5b422f396756ee0ee268970ae851775fed7e1005aea98500d59b7f12cd9a4e16"; unpack_target="x86_64-apple-darwin14"),
ArchiveSource("$(url_prefix)-macos.tar.gz", "5b422f396756ee0ee268970ae851775fed7e1005aea98500d59b7f12cd9a4e16"; unpack_target="aarch64-apple-darwin20"),
ArchiveSource("$(url_prefix)-win.zip", "0fc0678222326ca5b2affc97df832dc23b71cb404dd9b17895db7a607e8e5a75"; unpack_target="x86_64-w64-mingw32"),
FileSource("https://raw.githubusercontent.com/quarto-dev/quarto-cli/v$(quarto_ver)/COPYRIGHT", "b99ec68b0ae2766380ecd177de507b799d1e3f6b7334d940a57021d3e4299721"),
FileSource("https://raw.githubusercontent.com/quarto-dev/quarto-cli/v$(quarto_ver)/COPYING.md", "6b985ce085f33a39f96d12321cfbcee03aa2ad4249755f534537f38019dfa123"),
]

# Bash recipe for building across all platforms
Expand Down Expand Up @@ -48,4 +48,4 @@ dependencies = Dependency[
]

# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;julia_compat="1.6")
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")

2 comments on commit e11cd7e

@co1emi11er2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know where to leave a comment, so I will leave it here.

Is there a way to have rsvg-convert as a runtime dependency? I notice that it is needed for pdf format when including plot images.

@giordano
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.