pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/gnurl www/gnurl: Update to 7.65.3
details: https://anonhg.NetBSD.org/pkgsrc/rev/d8e600e5e526
branches: trunk
changeset: 399734:d8e600e5e526
user: ng0 <ng0%pkgsrc.org@localhost>
date: Thu Aug 15 17:19:09 2019 +0000
description:
www/gnurl: Update to 7.65.3
Changelog:
* make the warning in buildconf more clear, month
after noting that the hardfailure was not necessary.
* comment nroff parts of configure script, build +
check + release without groff tested succesfully on NetBSD 9.99.4
* Dependencies: python-3 is now supported (should be in curl
as well) for the tests. If python is required at all for
the tests needs to be looked at more closely. groff/nroff dropped.
The usual curl Changelog applies, consult https://curl.haxx.se for the
ChangeLog.
diffstat:
www/gnurl/Makefile | 38 +++++++++++++++++++++++++++++++-------
www/gnurl/PLIST | 6 ++++--
www/gnurl/distinfo | 10 +++++-----
3 files changed, 40 insertions(+), 14 deletions(-)
diffs (122 lines):
diff -r 4d3686ca51a7 -r d8e600e5e526 www/gnurl/Makefile
--- a/www/gnurl/Makefile Thu Aug 15 15:46:15 2019 +0000
+++ b/www/gnurl/Makefile Thu Aug 15 17:19:09 2019 +0000
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.4 2019/08/11 13:24:19 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2019/08/15 17:19:09 ng0 Exp $
-DISTNAME= gnurl-7.64.0
-PKGREVISION= 2
+DISTNAME= gnurl-7.65.3
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_GNU:=gnunet/}
EXTRACT_SUFX= .tar.Z
-MAINTAINER= ng0%n0.is@localhost
+MAINTAINER= ng0%NetBSD.org@localhost
HOMEPAGE= https://gnunet.org/en/gnurl.html
COMMENT= Client that groks URLs (micro fork of curl)
# not completely, the curl license is inspired by mit
@@ -14,7 +13,7 @@
BUILD_DEFS+= IPV6_READY
-USE_TOOLS+= nroff perl pkg-config
+USE_TOOLS+= perl pkg-config
USE_LIBTOOL= yes
GNU_CONFIGURE= yes # make install depends on it
PKGCONFIG_OVERRIDE= libgnurl.pc.in
@@ -24,7 +23,31 @@
TEST_TARGET= check
-CONFIGURE_ARGS+= --disable-ntml-wb
+CONFIGURE_ARGS+= --without-libssh2
+CONFIGURE_ARGS+= --without-libmetalink
+CONFIGURE_ARGS+= --without-winidn
+CONFIGURE_ARGS+= --without-librtmp
+CONFIGURE_ARGS+= --without-nghttp2
+CONFIGURE_ARGS+= --without-nss
+CONFIGURE_ARGS+= --without-cyassl
+CONFIGURE_ARGS+= --without-ssl
+CONFIGURE_ARGS+= --without-winssl
+CONFIGURE_ARGS+= --without-darwinssl
+CONFIGURE_ARGS+= --disable-sspi
+CONFIGURE_ARGS+= --disable-ldap
+CONFIGURE_ARGS+= --without-libpsl
+CONFIGURE_ARGS+= --disable-rtsp
+CONFIGURE_ARGS+= --disable-dict
+CONFIGURE_ARGS+= --disable-telnet
+CONFIGURE_ARGS+= --disable-tftp
+CONFIGURE_ARGS+= --disable-pop3
+CONFIGURE_ARGS+= --disable-imap
+CONFIGURE_ARGS+= --disable-smtp
+CONFIGURE_ARGS+= --disable-gopher
+CONFIGURE_ARGS+= --disable-file
+CONFIGURE_ARGS+= --disable-ftp
+CONFIGURE_ARGS+= --disable-smb
+CONFIGURE_ARGS+= --disable-ntlm-wb
CONFIGURE_ARGS+= --with-gnutls
CONFIGURE_ARGS+= --with-libidn2
CONFIGURE_ARGS+= --with-libz=${BUILDLINK_PREFIX.zlib}
@@ -35,11 +58,12 @@
# Do not pick up GSS, should be fixed in upstream.
# https://bugs.gnunet.org/view.php?id=5610
CONFIGURE_ARGS+= --without-gssapi
+CONFIGURE_ARGS+= --disable-valgrind
.include "options.mk"
post-install:
-.for f in MANUAL TheArtOfHttpScripting FAQ
+.for f in TheArtOfHttpScripting FAQ
${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DESTDIR}${PREFIX}/share/doc/gnurl/
.endfor
diff -r 4d3686ca51a7 -r d8e600e5e526 www/gnurl/PLIST
--- a/www/gnurl/PLIST Thu Aug 15 15:46:15 2019 +0000
+++ b/www/gnurl/PLIST Thu Aug 15 17:19:09 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2019/03/05 00:40:37 gdt Exp $
+@comment $NetBSD: PLIST,v 1.3 2019/08/15 17:19:09 ng0 Exp $
bin/gnurl
bin/gnurl-config
include/gnurl/curl.h
@@ -96,6 +96,8 @@
man/man3/GNURLOPT_ACCEPTTIMEOUT_MS.3
man/man3/GNURLOPT_ACCEPT_ENCODING.3
man/man3/GNURLOPT_ADDRESS_SCOPE.3
+man/man3/GNURLOPT_ALTSVC.3
+man/man3/GNURLOPT_ALTSVC_CTRL.3
man/man3/GNURLOPT_APPEND.3
man/man3/GNURLOPT_AUTOREFERER.3
man/man3/GNURLOPT_BUFFERSIZE.3
@@ -197,6 +199,7 @@
man/man3/GNURLOPT_MAIL_AUTH.3
man/man3/GNURLOPT_MAIL_FROM.3
man/man3/GNURLOPT_MAIL_RCPT.3
+man/man3/GNURLOPT_MAXAGE_CONN.3
man/man3/GNURLOPT_MAXCONNECTS.3
man/man3/GNURLOPT_MAXFILESIZE.3
man/man3/GNURLOPT_MAXFILESIZE_LARGE.3
@@ -440,5 +443,4 @@
man/man3/libgnurl.3
share/aclocal/libgnurl.m4
share/doc/gnurl/FAQ
-share/doc/gnurl/MANUAL
share/doc/gnurl/TheArtOfHttpScripting
diff -r 4d3686ca51a7 -r d8e600e5e526 www/gnurl/distinfo
--- a/www/gnurl/distinfo Thu Aug 15 15:46:15 2019 +0000
+++ b/www/gnurl/distinfo Thu Aug 15 17:19:09 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2019/03/05 00:40:37 gdt Exp $
+$NetBSD: distinfo,v 1.3 2019/08/15 17:19:09 ng0 Exp $
-SHA1 (gnurl-7.64.0.tar.Z) = 8e0f7dbee5df03859a5ee38d80766f6f740c2475
-RMD160 (gnurl-7.64.0.tar.Z) = 25cd4064f5865e702e6eb3585ebf501324ac1e84
-SHA512 (gnurl-7.64.0.tar.Z) = 139abdc92e77c64caee7d834cc1e539ca559938682afe23c6b61c6e7203c0fa76d8c45f70eb2c74e2a32fcac02962be28ae0b0364351bfd2fc4476b091ef70ef
-Size (gnurl-7.64.0.tar.Z) = 6288637 bytes
+SHA1 (gnurl-7.65.3.tar.Z) = 9b4b7eed42c5aeaf7b38f903c6362576a6c90b0b
+RMD160 (gnurl-7.65.3.tar.Z) = 64e6a31fcd8bcf40f446ee930997cc2bbca583ea
+SHA512 (gnurl-7.65.3.tar.Z) = 6887df326177b291bcf97567e247122eb2b8190e0491c5a819d39a738d98882778ad48c0936010f95c07646dd627fa9f2c72f1ad33adf317efdc1eadb5c8b93e
+Size (gnurl-7.65.3.tar.Z) = 6124086 bytes
Home |
Main Index |
Thread Index |
Old Index