From 85801e5757dd81e8bdee65c49010aae02c793dfb Mon Sep 17 00:00:00 2001 From: EnumDev Date: Tue, 9 Sep 2025 20:41:47 +0300 Subject: [PATCH] Update package version to 8.15.0 --- check-version.sh | 15 +++++++++++++++ pkg.info | 6 +++--- source.sh | 26 +++++++++++++++++++------- 3 files changed, 37 insertions(+), 10 deletions(-) create mode 100644 check-version.sh diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..d1384c4 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Github repository +REPO="curl/curl" + +# Get tag name using Github Rest API +TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/releases/latest | jq -r '.tag_name') + +# Trim prefix +VERSION=${TAG_NAME//curl-} + +# Replace '_' with '.' +VERSION=$(echo "$VERSION" | tr '_' '.') + +echo "$VERSION" diff --git a/pkg.info b/pkg.info index 93b77c9..41ee7a7 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,10 @@ name: curl description: Command line tool and library for transferring data with URLs -version: 8.6.0 -revision: 2 +version: 8.15.0 url: https://curl.se/ license: MIT architecture: any -depends: ["libpsl"] +depends: ["brotli","krb5","libidn2","libnghttp2","libpsl","libssh2","openssl","zlib","zstd"] +make_depends: ["valgrind"] optional_depends: ["make-ca"] type: source diff --git a/source.sh b/source.sh index 3e76dd4..d7aee69 100644 --- a/source.sh +++ b/source.sh @@ -2,7 +2,7 @@ # 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://curl.se/download/curl-${BPM_PKG_VERSION}.tar.xz" +DOWNLOAD="https://github.com/curl/curl/archive/refs/tags/curl-${BPM_PKG_VERSION//./_}.tar.gz" FILENAME="${DOWNLOAD##*/}" # The prepare function is executed in the root of the temp directory @@ -10,15 +10,22 @@ FILENAME="${DOWNLOAD##*/}" prepare() { wget "$DOWNLOAD" tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" + + cd "$BPM_SOURCE" + autoreconf -fi } # The build function is executed in the source directory # This function is used to compile the source code build() { - ./configure --prefix=/usr \ - --disable-static \ - --with-openssl \ - --enable-threaded-resolver \ + ./configure --prefix=/usr \ + --disable-static \ + --with-openssl \ + --with-gssapi \ + --with-libssh2 \ + --enable-ipv6 \ + --enable-websockets \ + --enable-threaded-resolver \ --with-ca-path=/etc/ssl/certs make } @@ -33,13 +40,18 @@ check() { # This function is used to move the compiled files into the output directory package() { make DESTDIR="$BPM_OUTPUT" install + + # Remove unwanted files from 'docs' directory rm -rf docs/examples/.deps find docs \( -name Makefile\* -o \ -name \*.1 -o \ -name \*.3 -o \ -name CMakeLists.txt \) -delete + + # Install documentation mkdir -p "$BPM_OUTPUT"/usr/share/doc/curl cp -v -R docs -T "$BPM_OUTPUT"/usr/share/doc/curl - mkdir -p "$BPM_OUTPUT"/usr/share/licenses/curl - cp COPYING "$BPM_OUTPUT"/usr/share/licenses/curl/curl.txt + + # Install package license + install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/curl/COPYING }