Skip to content
Merged
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
4 changes: 2 additions & 2 deletions packages/harfbuzz/build.ncl
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ let freetype = import "../freetype/build.ncl" in
let glib = import "../glib/build.ncl" in
let glibc = import "../glibc/build.ncl" in

let version = "14.2.1" in
let version = "14.3.0" in
{
name = "harfbuzz",
build_deps = [
{ file = "build.sh" } | Local,
{
url = "gs://minimal-staging-archives/harfbuzz-%{version}.tar.xz",
sha256 = "a54a5d8e9380a41fbb762ce367bcbf7704792dfca0d93f1bbca86c5a57902e0e",
sha256 = "16070d77cfc4ba1f1e7327e83bf9b3f55898081cabdb94e56a33e04fc8874eae",
extract = true,
strip_prefix = "harfbuzz-%{version}",
} | Source,
Expand Down
8 changes: 4 additions & 4 deletions packages/libarchive/build.ncl
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ let zlib = import "../zlib/build.ncl" in
let bzip2 = import "../bzip2/build.ncl" in
let zstd = import "../zstd/build.ncl" in

let version = "3.8.1" in
let version = "3.8.9" in
{
name = "libarchive",
build_deps = [
{ file = "build.sh" } | Local,
{
# Upstream: https://github.com/libarchive/libarchive/releases/download/v3.8.1/libarchive-3.8.1.tar.gz
# STAGING: gcloud storage cp libarchive-3.8.1.tar.gz gs://minimal-staging-archives/
# Upstream: https://github.com/libarchive/libarchive/releases/download/v3.8.9/libarchive-3.8.9.tar.gz
# STAGING: gcloud storage cp libarchive-3.8.9.tar.gz gs://minimal-staging-archives/
url = "gs://minimal-staging-archives/libarchive-%{version}.tar.gz",
sha256 = "bde832a5e3344dc723cfe9cc37f8e54bde04565bfe6f136bc1bd31ab352e9fab"
sha256 = "f5a6539059cf5e597dbeda37bfa4874b1e8dea063c8d93bf85a2b44af90a5bd4"
} | Source,
bash-bootstrap,
make,
Expand Down
4 changes: 2 additions & 2 deletions packages/libarchive/build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/sh
set -ex

tar -xof libarchive-3.8.1.tar.gz
cd libarchive-3.8.1
tar -xof libarchive-3.8.9.tar.gz
cd libarchive-3.8.9

case $(uname -m) in
x86_64) MARCH="-march=x86-64-v3" ;;
Expand Down
6 changes: 3 additions & 3 deletions packages/mesa/build.ncl
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ let expat = import "../expat/build.ncl" in
let zlib = import "../zlib/build.ncl" in
let glibc = import "../glibc/build.ncl" in

let version = "26.1.5" in
let version = "26.1.6" in
{
name = "mesa",
build_deps = [
{ file = "build.sh" } | Local,
{
# https://archive.mesa3d.org/mesa-26.1.5.tar.xz
# https://archive.mesa3d.org/mesa-26.1.6.tar.xz
# (mesa is developed at gitlab.freedesktop.org/mesa/mesa; archive.mesa3d.org
# serves the release tarballs. The gs:// URL is a staged mirror of that.)
url = "gs://minimal-staging-archives/mesa-%{version}.tar.xz",
sha256 = "79e421c7ce18cd9e790b8375920325779f10798630bf30e0b22f1a21c8617122",
sha256 = "5296b88a0f1e012e2cb9ada150a2bbadf728ca81e5a4fb2ab43c83a4d2158606",
extract = true,
strip_prefix = "mesa-%{version}",
} | Source,
Expand Down