Leonidas Spyropoulos pushed to branch main at Arch Linux / Packaging / Packages
/ curl
Commits:
cb7452f4 by Leonidas Spyropoulos at 2025-02-07T09:19:19+00:00
upgpkg: 8.12.0-2: make reproducible
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = curl
pkgdesc = command line tool and library for transferring data with URLs
pkgver = 8.12.0
- pkgrel = 1
+ pkgrel = 2
url = https://curl.se/
arch = x86_64
license = MIT
=====================================
PKGBUILD
=====================================
@@ -7,7 +7,7 @@
pkgbase=curl
pkgname=(curl libcurl-compat libcurl-gnutls)
pkgver=8.12.0
-pkgrel=1
+pkgrel=2
pkgdesc='command line tool and library for transferring data with URLs'
arch=('x86_64')
url='https://curl.se/'
@@ -61,6 +61,9 @@ prepare() {
}
build() {
+ # make curl --help deterministic
+ # https://github.com/curl/curl/issues/16072
+ export COLUMNS=80
local _configure_options=(
--prefix='/usr'
--mandir='/usr/share/man'
@@ -117,6 +120,9 @@ build() {
}
check() {
+ # make curl --help deterministic
+ # https://github.com/curl/curl/issues/16072
+ export COLUMNS=80
cd build-curl
# -v: verbose
# -a: keep going on failure (so we see everything which breaks, not just the
first failing test)
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/curl/-/commit/cb7452f4c8dfb3a88b9732d45c359a7a118ec907
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/curl/-/commit/cb7452f4c8dfb3a88b9732d45c359a7a118ec907
You're receiving this email because of your account on gitlab.archlinux.org.