Update package version to 8.15.0
This commit is contained in:
@@ -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"
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
name: curl
|
name: curl
|
||||||
description: Command line tool and library for transferring data with URLs
|
description: Command line tool and library for transferring data with URLs
|
||||||
version: 8.6.0
|
version: 8.15.0
|
||||||
revision: 2
|
|
||||||
url: https://curl.se/
|
url: https://curl.se/
|
||||||
license: MIT
|
license: MIT
|
||||||
architecture: any
|
architecture: any
|
||||||
depends: ["libpsl"]
|
depends: ["brotli","krb5","libidn2","libnghttp2","libpsl","libssh2","openssl","zlib","zstd"]
|
||||||
|
make_depends: ["valgrind"]
|
||||||
optional_depends: ["make-ca"]
|
optional_depends: ["make-ca"]
|
||||||
type: source
|
type: source
|
||||||
|
|||||||
@@ -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 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
|
# 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##*/}"
|
FILENAME="${DOWNLOAD##*/}"
|
||||||
|
|
||||||
# The prepare function is executed in the root of the temp directory
|
# The prepare function is executed in the root of the temp directory
|
||||||
@@ -10,15 +10,22 @@ FILENAME="${DOWNLOAD##*/}"
|
|||||||
prepare() {
|
prepare() {
|
||||||
wget "$DOWNLOAD"
|
wget "$DOWNLOAD"
|
||||||
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
|
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
|
||||||
|
|
||||||
|
cd "$BPM_SOURCE"
|
||||||
|
autoreconf -fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# The build function is executed in the source directory
|
# The build function is executed in the source directory
|
||||||
# This function is used to compile the source code
|
# This function is used to compile the source code
|
||||||
build() {
|
build() {
|
||||||
./configure --prefix=/usr \
|
./configure --prefix=/usr \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--with-openssl \
|
--with-openssl \
|
||||||
--enable-threaded-resolver \
|
--with-gssapi \
|
||||||
|
--with-libssh2 \
|
||||||
|
--enable-ipv6 \
|
||||||
|
--enable-websockets \
|
||||||
|
--enable-threaded-resolver \
|
||||||
--with-ca-path=/etc/ssl/certs
|
--with-ca-path=/etc/ssl/certs
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
@@ -33,13 +40,18 @@ check() {
|
|||||||
# This function is used to move the compiled files into the output directory
|
# This function is used to move the compiled files into the output directory
|
||||||
package() {
|
package() {
|
||||||
make DESTDIR="$BPM_OUTPUT" install
|
make DESTDIR="$BPM_OUTPUT" install
|
||||||
|
|
||||||
|
# Remove unwanted files from 'docs' directory
|
||||||
rm -rf docs/examples/.deps
|
rm -rf docs/examples/.deps
|
||||||
find docs \( -name Makefile\* -o \
|
find docs \( -name Makefile\* -o \
|
||||||
-name \*.1 -o \
|
-name \*.1 -o \
|
||||||
-name \*.3 -o \
|
-name \*.3 -o \
|
||||||
-name CMakeLists.txt \) -delete
|
-name CMakeLists.txt \) -delete
|
||||||
|
|
||||||
|
# Install documentation
|
||||||
mkdir -p "$BPM_OUTPUT"/usr/share/doc/curl
|
mkdir -p "$BPM_OUTPUT"/usr/share/doc/curl
|
||||||
cp -v -R docs -T "$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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user