185 lines
5.4 KiB
Bash
185 lines
5.4 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgbase=curl
|
|
pkgname=(curl libcurl-compat libcurl-gnutls)
|
|
_tag='8cd1397d3c5c9b1526c8d74530266a7a9a22294b' # git rev-parse v${_tag_name}
|
|
_tag_name='8_6_0'
|
|
pkgver="${_tag_name//_/.}"
|
|
pkgrel=03
|
|
pkgdesc='command line tool and library for transferring data with URLs - w/o ipv6 & zstd'
|
|
url='https://curl.se'
|
|
#options=(debug) # uncomment this to produce debug package
|
|
depends=('ca-certificates' 'brotli' 'libbrotlidec.so' 'krb5' 'libgssapi_krb5.so'
|
|
'libidn2' 'libidn2.so' 'libnghttp2' 'libnghttp3' 'libpsl'
|
|
'libpsl.so' 'libssh2' 'libssh2.so' 'zlib')
|
|
makedepends=('patchelf' 'git')
|
|
#source=("https://curl.haxx.se/download/${pkgname}-${pkgver}.tar.gz"{,.asc}
|
|
# '0001-Revert-http2-minor-buffer-and-error-path-fixes.patch')
|
|
source=("git+https://github.com/curl/curl.git#tag=${_tag}?signed")
|
|
|
|
_backports=(
|
|
)
|
|
|
|
_reverts=(
|
|
'9a90c9dd64d2f03601833a70786d485851bd1b53'
|
|
)
|
|
|
|
prepare() {
|
|
cd "$pkgbase"
|
|
|
|
local _c
|
|
for _c in "${_backports[@]}"; do
|
|
if [[ $_c == *..* ]]; then
|
|
git log --oneline --reverse "${_c}"
|
|
else
|
|
git log --oneline -1 "${_c}"
|
|
fi
|
|
git cherry-pick -n -m1 "${_c}"
|
|
done
|
|
for _c in "${_reverts[@]}"; do
|
|
git log --oneline -1 "${_c}"
|
|
git revert -n "${_c}"
|
|
done
|
|
|
|
# no '-DEV' in version, release date from tagged commit...
|
|
sed -i \
|
|
-e "/\WLIBCURL_VERSION\W/c #define LIBCURL_VERSION \"${pkgver}\"" \
|
|
-e "/\WLIBCURL_TIMESTAMP\W/c #define LIBCURL_TIMESTAMP \"$(git log -1 --format=%cs "${_tag}")\"" \
|
|
include/curl/curlver.h
|
|
|
|
autoreconf -fi
|
|
}
|
|
|
|
build() {
|
|
local _configure_options=(
|
|
--prefix='/usr'
|
|
--mandir='/usr/share/man'
|
|
--disable-ldap
|
|
--disable-ldaps
|
|
--disable-manual
|
|
--disable-ipv6
|
|
--disable-zstd
|
|
--enable-threaded-resolver
|
|
--with-gssapi
|
|
--with-libssh2
|
|
--with-random='/dev/urandom'
|
|
--without-zstd
|
|
--with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
|
|
)
|
|
|
|
mkdir build-curl{,-compat,-gnutls}
|
|
|
|
# build curl
|
|
cd "${srcdir}"/build-curl
|
|
|
|
# "${srcdir}/${pkgbase}-${pkgver}"/configure \
|
|
"${srcdir}/${pkgbase}"/configure \
|
|
"${_configure_options[@]}" \
|
|
--with-openssl \
|
|
--with-openssl-quic \
|
|
--enable-versioned-symbols
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
|
|
# build libcurl-compat
|
|
cd "${srcdir}"/build-curl-compat
|
|
|
|
# "${srcdir}/${pkgbase}-${pkgver}"/configure \
|
|
"${srcdir}/${pkgbase}"/configure \
|
|
"${_configure_options[@]}" \
|
|
--with-openssl \
|
|
--with-openssl-quic \
|
|
--disable-versioned-symbols
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make -C lib
|
|
patchelf --set-soname 'libcurl-compat.so.4' ./lib/.libs/libcurl.so
|
|
|
|
# build libcurl-gnutls
|
|
cd "${srcdir}"/build-curl-gnutls
|
|
|
|
# "${srcdir}/${pkgbase}-${pkgver}"/configure \
|
|
"${srcdir}/${pkgbase}"/configure \
|
|
"${_configure_options[@]}" \
|
|
--disable-versioned-symbols \
|
|
--without-openssl \
|
|
--without-zstd \
|
|
--with-gnutls
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make -C lib
|
|
patchelf --set-soname 'libcurl-gnutls.so.4' ./lib/.libs/libcurl.so
|
|
}
|
|
|
|
package_curl() {
|
|
cd build-curl
|
|
|
|
depends+=('openssl' 'libcrypto.so' 'libssl.so')
|
|
provides=('libcurl.so')
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
make DESTDIR="${pkgdir}" install -C scripts
|
|
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
# license
|
|
install -Dt "${pkgdir}/usr/share/licenses/$pkgname" -m0644 COPYING
|
|
}
|
|
|
|
package_libcurl-compat() {
|
|
pkgdesc='command line tool and library for transferring data with URLs (no versioned symbols)'
|
|
depends=('curl')
|
|
provides=('libcurl-compat.so')
|
|
|
|
cd "${srcdir}"/build-curl-compat
|
|
|
|
make -C lib DESTDIR="${pkgdir}" install
|
|
|
|
mv "${pkgdir}"/usr/lib/libcurl{,-compat}.so.4.8.0
|
|
rm "${pkgdir}"/usr/lib/libcurl.{a,so}*
|
|
for version in 3 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0 4.5.0 4.6.0 4.7.0; do
|
|
ln -s libcurl-compat.so.4.8.0 "${pkgdir}"/usr/lib/libcurl.so.${version}
|
|
ln -s libcurl-compat.so.4.8.0 "${pkgdir}"/usr/lib/libcurl-compat.so.${version}
|
|
done
|
|
|
|
install -dm 0755 "${pkgdir}"/usr/share/licenses
|
|
ln -s curl "${pkgdir}"/usr/share/licenses/libcurl-compat
|
|
}
|
|
|
|
package_libcurl-gnutls() {
|
|
pkgdesc='command line tool and library for transferring data with URLs (no versioned symbols, linked against gnutls)'
|
|
depends=('curl' 'gnutls')
|
|
provides=('libcurl-gnutls.so')
|
|
|
|
cd "${srcdir}"/build-curl-gnutls
|
|
|
|
make -C lib DESTDIR="${pkgdir}" install
|
|
|
|
mv "${pkgdir}"/usr/lib/libcurl{,-gnutls}.so.4.8.0
|
|
rm "${pkgdir}"/usr/lib/libcurl.{a,so}*
|
|
ln -s libcurl-gnutls.so.4 "${pkgdir}"/usr/lib/libcurl-gnutls.so
|
|
for version in 3 4 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0 4.5.0 4.6.0 4.7.0; do
|
|
ln -s libcurl-gnutls.so.4.8.0 "${pkgdir}"/usr/lib/libcurl-gnutls.so.${version}
|
|
done
|
|
|
|
install -dm 0755 "${pkgdir}"/usr/share/licenses
|
|
ln -s curl "${pkgdir}"/usr/share/licenses/libcurl-gnutls
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('MIT')
|
|
|
|
validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
|
|
|
|
sha256sums=(SKIP)
|
|
|
|
## a4ec134c55f71d408e6c4d36e08e17504a37d28a7598980a786c8aa7dcf8b02a curl-8.6.0-03-x86_64.pkg.tar.lz
|
|
## ae5dbd27ba5230a919b5d6899a7d30359d2129eabf6b5dfec8ad17af9af9f886 libcurl-compat-8.6.0-03-x86_64.pkg.tar.lz
|
|
## d70250248b85b6cb541db0ceaba0325806a03d4968cb5351861c310a93489a95 libcurl-gnutls-8.6.0-03-x86_64.pkg.tar.lz
|
|
|