Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] curl: update to 8.8.0
@ 2024-05-22  8:07 tranzystorekk
  2024-05-22 13:07 ` [PR REVIEW] " sgn
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: tranzystorekk @ 2024-05-22  8:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1242 bytes --]

There is a new pull request by tranzystorekk against master on the void-packages repository

https://github.com/tranzystorekk/void-packages curl
https://github.com/void-linux/void-packages/pull/50463

curl: update to 8.8.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/50463.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-curl-50463.patch --]
[-- Type: text/x-diff, Size: 3079 bytes --]

From a4f9f180f0f629473ef670afc23dea728038c593 Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Wed, 22 May 2024 10:02:58 +0200
Subject: [PATCH] curl: update to 8.8.0

---
 .../patches/install-curl-config-manpage.patch | 26 +++++++++++++++++++
 srcpkgs/curl/template                         |  9 ++++---
 2 files changed, 32 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/curl/patches/install-curl-config-manpage.patch

diff --git a/srcpkgs/curl/patches/install-curl-config-manpage.patch b/srcpkgs/curl/patches/install-curl-config-manpage.patch
new file mode 100644
index 00000000000000..74b13f0bea2d0c
--- /dev/null
+++ b/srcpkgs/curl/patches/install-curl-config-manpage.patch
@@ -0,0 +1,26 @@
+From 4cc5657247183a0bc3b0969beeaea9acddb09d22 Mon Sep 17 00:00:00 2001
+From: Daniel Stenberg <daniel@haxx.se>
+Date: Wed, 22 May 2024 08:43:43 +0200
+Subject: [PATCH] docs/Makefile.am: make curl-config.1 install
+
+on "make install" like it should
+
+Follow-up to 60971d665b9b1df87082
+
+Closes #13741
+---
+ docs/Makefile.am | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/docs/Makefile.am b/docs/Makefile.am
+index 83f5b0c461cc0f..e9ef6284860555 100644
+--- a/docs/Makefile.am
++++ b/docs/Makefile.am
+@@ -28,6 +28,7 @@ if BUILD_DOCS
+ # if we disable man page building, ignore these
+ MK_CA_DOCS = mk-ca-bundle.1
+ CURLCONF_DOCS = curl-config.1
++man_MANS = curl-config.1
+ endif
+ 
+ CURLPAGES = curl-config.md mk-ca-bundle.md
diff --git a/srcpkgs/curl/template b/srcpkgs/curl/template
index d2ec8f6b1a5cb2..beb6fd367c7a89 100644
--- a/srcpkgs/curl/template
+++ b/srcpkgs/curl/template
@@ -1,6 +1,6 @@
 # Template file for 'curl'
 pkgname=curl
-version=8.7.1
+version=8.8.0
 revision=1
 build_style=gnu-configure
 configure_args="ac_cv_sizeof_off_t=8 --enable-threaded-resolver --enable-ipv6
@@ -15,7 +15,7 @@ configure_args="ac_cv_sizeof_off_t=8 --enable-threaded-resolver --enable-ipv6
 make_check_args="TFLAGS=!1477"
 # Use mdocml instead of groff to generate builtin manual to avoid cyclic
 # dependencies.
-hostmakedepends="perl pkg-config mdocml"
+hostmakedepends="perl pkg-config mdocml libtool automake"
 makedepends="nghttp2-devel zlib-devel $(vopt_if gnutls 'gnutls-devel')
  $(vopt_if gssapi 'mit-krb5-devel') $(vopt_if ldap 'libldap-devel')
  $(vopt_if rtmp 'librtmp-devel') $(vopt_if ssh 'libssh2-devel')
@@ -30,7 +30,7 @@ license="MIT"
 homepage="https://curl.se"
 changelog="https://curl.se/changes.html"
 distfiles="https://curl.se/download/curl-${version}.tar.gz"
-checksum=f91249c87f68ea00cf27c44fdfa5a78423e41e71b7d408e5901a9896d905c495
+checksum=77c0e1cd35ab5b45b659645a93b46d660224d0024f1185e8a95cdb27ae3d787d
 build_options="gnutls gssapi idn ldap psl rtmp ssh ssl zstd"
 build_options_default="idn psl ssh ssl zstd"
 vopt_conflict ssl gnutls
@@ -43,6 +43,9 @@ pre_configure() {
 	export CFLAGS="${CFLAGS/-D_FORTIFY_SOURCE=2/}"
 	export CFLAGS="${CFLAGS/-I${XBPS_CROSS_BASE}\/usr\/include/}"
 	export CPPFLAGS="-D_FORTIFY_SOURCE=2"
+
+	# reconfigure for patched changes
+	autoreconf -fi
 }
 
 pre_check() {

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR REVIEW] curl: update to 8.8.0
  2024-05-22  8:07 [PR PATCH] curl: update to 8.8.0 tranzystorekk
@ 2024-05-22 13:07 ` sgn
  2024-05-22 14:32 ` Gottox
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: sgn @ 2024-05-22 13:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/50463#discussion_r1609920648

Comment:
Just make man and do install manually!

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR REVIEW] curl: update to 8.8.0
  2024-05-22  8:07 [PR PATCH] curl: update to 8.8.0 tranzystorekk
  2024-05-22 13:07 ` [PR REVIEW] " sgn
@ 2024-05-22 14:32 ` Gottox
  2024-05-22 14:55 ` tranzystorekk
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Gottox @ 2024-05-22 14:32 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 179 bytes --]

New review comment by Gottox on void-packages repository

https://github.com/void-linux/void-packages/pull/50463#discussion_r1610110970

Comment:
or we switch to the cmake build?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR REVIEW] curl: update to 8.8.0
  2024-05-22  8:07 [PR PATCH] curl: update to 8.8.0 tranzystorekk
  2024-05-22 13:07 ` [PR REVIEW] " sgn
  2024-05-22 14:32 ` Gottox
@ 2024-05-22 14:55 ` tranzystorekk
  2024-05-22 15:14 ` Gottox
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: tranzystorekk @ 2024-05-22 14:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 302 bytes --]

New review comment by tranzystorekk on void-packages repository

https://github.com/void-linux/void-packages/pull/50463#discussion_r1610150982

Comment:
doing autoreconf felt less invasive to me, as for cmake - I'm not sure what the benefit is when the autotools config is tried and true at this point

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR REVIEW] curl: update to 8.8.0
  2024-05-22  8:07 [PR PATCH] curl: update to 8.8.0 tranzystorekk
                   ` (2 preceding siblings ...)
  2024-05-22 14:55 ` tranzystorekk
@ 2024-05-22 15:14 ` Gottox
  2024-05-25 17:28 ` Gottox
  2024-05-25 17:28 ` [PR PATCH] [Merged]: " Gottox
  5 siblings, 0 replies; 7+ messages in thread
From: Gottox @ 2024-05-22 15:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 332 bytes --]

New review comment by Gottox on void-packages repository

https://github.com/void-linux/void-packages/pull/50463#discussion_r1610188561

Comment:
Looking into cmake, it's not yet ready for daily use:

> ```
> # TODO:
> # The output .so file lacks the soname number which we currently have within the lib/Makefile.am file
> ```

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR REVIEW] curl: update to 8.8.0
  2024-05-22  8:07 [PR PATCH] curl: update to 8.8.0 tranzystorekk
                   ` (3 preceding siblings ...)
  2024-05-22 15:14 ` Gottox
@ 2024-05-25 17:28 ` Gottox
  2024-05-25 17:28 ` [PR PATCH] [Merged]: " Gottox
  5 siblings, 0 replies; 7+ messages in thread
From: Gottox @ 2024-05-25 17:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 201 bytes --]

New review comment by Gottox on void-packages repository

https://github.com/void-linux/void-packages/pull/50463#discussion_r1614788166

Comment:
I merge as is. The resulting package is the very same.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Merged]: curl: update to 8.8.0
  2024-05-22  8:07 [PR PATCH] curl: update to 8.8.0 tranzystorekk
                   ` (4 preceding siblings ...)
  2024-05-25 17:28 ` Gottox
@ 2024-05-25 17:28 ` Gottox
  5 siblings, 0 replies; 7+ messages in thread
From: Gottox @ 2024-05-25 17:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1086 bytes --]

There's a merged pull request on the void-packages repository

curl: update to 8.8.0
https://github.com/void-linux/void-packages/pull/50463

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-05-25 17:28 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-22  8:07 [PR PATCH] curl: update to 8.8.0 tranzystorekk
2024-05-22 13:07 ` [PR REVIEW] " sgn
2024-05-22 14:32 ` Gottox
2024-05-22 14:55 ` tranzystorekk
2024-05-22 15:14 ` Gottox
2024-05-25 17:28 ` Gottox
2024-05-25 17:28 ` [PR PATCH] [Merged]: " Gottox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).