Skip to content

Commit

Permalink
update dbus to 1.14.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Suavesito-Olimpiada committed Jun 13, 2024
1 parent 1eefbc7 commit 354875c
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions D/Dbus/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Note that this script can accept some limited command-line arguments, run
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder
using BinaryBuilder, Pkg

name = "Dbus"
version = v"1.12.16"
version = v"1.14.10"

# Collection of sources required to build Dbus
sources = [
ArchiveSource("https://dbus.freedesktop.org/releases/dbus/dbus-$(version).tar.gz",
"54a22d2fa42f2eb2a871f32811c6005b531b9613b1b93a0d269b05e7549fec80"),
ArchiveSource("https://dbus.freedesktop.org/releases/dbus/dbus-$(version).tar.xz",
"ba1f21d2bd9d339da2d4aa8780c09df32fea87998b73da24f49ab9df1e36a50f"),
]

# Bash recipe for building across all platforms
Expand All @@ -33,8 +33,6 @@ make install
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = filter!(p -> Sys.islinux(p) || Sys.isfreebsd(p), supported_platforms())
# TODO: Remove this restriction for the next build
filter!(p -> arch(p) != "armv6l", platforms)

products = [
LibraryProduct("libdbus-1", :libdbus),
Expand All @@ -43,8 +41,9 @@ products = [

# Dependencies that must be installed before this package can be built
dependencies = [
Dependency("Expat_jll"; compat="2.2.7"),
Dependency(PackageSpec(name="Expat_jll", uuid="2e619515-83b5-522b-bb60-26c02a35a201"); compat="2.4.1", platforms=platforms),
BuildDependency(PackageSpec(name="Xorg_xorgproto_jll", uuid="c4d99508-4286-5418-9131-c86396af500b"); platforms=platforms)
]

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

0 comments on commit 354875c

Please sign in to comment.