Update package version to 8.15.0

This commit is contained in:
2025-09-09 20:41:47 +03:00
parent 9200162810
commit 85801e5757
3 changed files with 37 additions and 10 deletions
+15
View File
@@ -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"
+3 -3
View File
@@ -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
+19 -7
View File
@@ -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
}