From 40c0fa839f6096c85e25fdb60fb93229493d6c79 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 20 Feb 2026 17:54:19 +0200 Subject: [PATCH] Update package version to 3.6.6 --- .gitignore | 3 +++ pkg.info | 25 ++++++++++++++++++++++--- source.sh | 26 +++++--------------------- 3 files changed, 30 insertions(+), 24 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d96df7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Ignore BPM archives and signatures +*.bpm +*.bpm.sig diff --git a/pkg.info b/pkg.info index 3109c30..5bfdf43 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,28 @@ name: libsoup description: HTTP client/server library for GNOME -version: 3.6.5 +version: 3.6.6 +revision: 1 url: https://wiki.gnome.org/Projects/libsoup license: LGPL2.1-or-later +maintainers: + - enumdev@enumerated.dev architecture: any -depends: ["brotli","glib-networking","glib","krb5","libnghttp2","libpsl","libxml2","sqlite"] -make_depends: ["gobject-introspection","meson","vala"] type: source +depends: + - brotli + - glib-networking + - glib + - krb5 + - libnghttp2 + - libpsl + - libxml2 + - sqlite +make_depends: + - gobject-introspection + - meson + - vala +downloads: + - url: https://download.gnome.org/sources/libsoup/${BPM_PKG_VERSION%.*}/libsoup-${BPM_PKG_VERSION}.tar.xz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 51ed0ae06f9d5a40f401ff459e2e5f652f9a510b7730e1359ee66d14d4872740 diff --git a/source.sh b/source.sh index d0a7826..91330dc 100644 --- a/source.sh +++ b/source.sh @@ -2,40 +2,24 @@ # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT -DOWNLOAD="https://download.gnome.org/sources/libsoup/${BPM_PKG_VERSION%.*}/libsoup-${BPM_PKG_VERSION}.tar.xz" -FILENAME="${DOWNLOAD##*/}" - -# The prepare function is executed in the root of the temp directory -# This function is used for downloading files and putting them into the correct location -prepare() { - wget "$DOWNLOAD" - tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" -} - # The build function is executed in the source directory # This function is used to compile the source code build() { - mkdir build - cd build - - meson setup --prefix=/usr --buildtype=release --wrap-mode=nofallback .. - ninja + meson setup build --prefix=/usr --buildtype=release --wrap-mode=nofallback + meson compile -C build } # The check function is executed in the source directory # This function is used to run tests to verify the package has been compiled correctly check() { - cd build - - ninja test + meson test -C build --print-errorlogs } # The package function is executed in the source directory # This function is used to move the compiled files into the output directory package() { - cd build - - DESTDIR="$BPM_OUTPUT" ninja install + meson install -C build --destdir="$BPM_OUTPUT" + # Install package license install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/libsoup/COPYING }