From owner-svn-ports-head@freebsd.org Mon May 23 03:49:48 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72CA2B469A3; Mon, 23 May 2016 03:49:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F9D71899; Mon, 23 May 2016 03:49:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4N3nliJ050802; Mon, 23 May 2016 03:49:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4N3nlBd050799; Mon, 23 May 2016 03:49:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201605230349.u4N3nlBd050799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 23 May 2016 03:49:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415655 - head/ftp/curl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2016 03:49:48 -0000 Author: sunpoet Date: Mon May 23 03:49:47 2016 New Revision: 415655 URL: https://svnweb.freebsd.org/changeset/ports/415655 Log: - Update to 7.49.0 - Fix shebang Changes: http://curl.haxx.se/changes.html Modified: head/ftp/curl/Makefile head/ftp/curl/distinfo head/ftp/curl/pkg-plist Modified: head/ftp/curl/Makefile ============================================================================== --- head/ftp/curl/Makefile Mon May 23 03:49:42 2016 (r415654) +++ head/ftp/curl/Makefile Mon May 23 03:49:47 2016 (r415655) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= curl -PORTVERSION= 7.48.0 -PORTREVISION= 2 +PORTVERSION= 7.49.0 CATEGORIES= ftp www MASTER_SITES= http://curl.haxx.se/download/ \ LOCAL/sunpoet @@ -41,6 +40,7 @@ OPTIONS_DEFAULT+= GSSAPI_BASE CONFIGURE_ARGS+=--disable-werror \ --enable-imap --enable-pop3 --enable-rtsp --enable-smtp \ + --with-zsh-functions-dir=${LOCALBASE}/share/zsh/site-functions \ --without-axtls CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} \ ac_cv_func_SSLv2_client_method=no @@ -49,7 +49,7 @@ INSTALL_TARGET= install-strip TEST_ENV= ${MAKE_ENV} LC_ALL=C TEST_TARGET= test USE_PERL5= build -USES= gmake libtool localbase pathfix perl5 tar:lzma +USES= gmake libtool localbase pathfix perl5 shebangfix tar:lzma .if !defined(BUILDING_HIPHOP) USE_LDCONFIG= yes @@ -60,15 +60,18 @@ PORTEXAMPLES= * CPE_VENDOR= haxx -DOCS= BINDINGS BUGS CODE_OF_CONDUCT.md CONTRIBUTE FAQ FEATURES \ - HISTORY HTTP-COOKIES HTTP2.md INSTALL INSTALL.devcpp INTERNALS \ - KNOWN_BUGS LICENSE-MIXING MAIL-ETIQUETTE MANUAL \ - RELEASE-PROCEDURE RESOURCES ROADMAP.md SECURITY SSL-PROBLEMS \ - SSLCERTS THANKS TODO TheArtOfHttpScripting VERSIONS \ - curl-config.html curl-config.pdf curl.html curl.pdf index.html \ +DOCS= BINDINGS BUGS CODE_OF_CONDUCT.md CODE_STYLE.md CONTRIBUTE FAQ \ + FEATURES HISTORY HTTP-COOKIES.md HTTP2.md INSTALL \ + INSTALL.devcpp INTERNALS KNOWN_BUGS LICENSE-MIXING \ + MAIL-ETIQUETTE MANUAL RELEASE-PROCEDURE RESOURCES ROADMAP.md \ + SECURITY SSL-PROBLEMS SSLCERTS THANKS TODO \ + TheArtOfHttpScripting VERSIONS curl-config.html \ + curl-config.pdf curl.html curl.pdf index.html \ mk-ca-bundle.html mk-ca-bundle.pdf .endif +SHEBANG_FILES= */*.pl + SLAVEDIRS= ftp/curl-hiphop CA_BUNDLE_CONFIGURE_OFF=--without-ca-bundle @@ -159,10 +162,9 @@ IGNORE= unsupported TLS-SRP in LibreSSL .endif post-patch: - @${REINPLACE_CMD} -e '/^SUBDIRS = / s|$$| docs|; /^DIST_SUBDIRS = / s| docs||; /cd docs &&/d' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e '/^SUBDIRS = / s|$$| docs scripts|; /^DIST_SUBDIRS = / s| docs scripts||; /cd docs &&/d' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|\(flags_dbg_off=\)".*"|\1""|; s|\(flags_opt_off=\)".*"|\1""|; s|lib/pkgconfig|libdata/pkgconfig|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|include |include |' ${WRKSRC}/lib/curl_gssapi.h ${WRKSRC}/lib/urldata.h - @${REINPLACE_CMD} -e 's|gss_nt_service_name|GSS_C_NT_HOSTBASED_SERVICE|' ${WRKSRC}/lib/curl_sasl_gssapi.c .if !defined(BUILDING_HIPHOP) post-install: Modified: head/ftp/curl/distinfo ============================================================================== --- head/ftp/curl/distinfo Mon May 23 03:49:42 2016 (r415654) +++ head/ftp/curl/distinfo Mon May 23 03:49:47 2016 (r415655) @@ -1,2 +1,3 @@ -SHA256 (curl-7.48.0.tar.lzma) = df764ca663a6589280fd6ac0adb24051ef26cfefef24451f28f99eb7338894d6 -SIZE (curl-7.48.0.tar.lzma) = 5924818 +TIMESTAMP = 1463934896 +SHA256 (curl-7.49.0.tar.lzma) = eb0728df1c9224f8b8994d488bda9ddd0ae679485659ab69a13b91ef35755dcb +SIZE (curl-7.49.0.tar.lzma) = 5985374 Modified: head/ftp/curl/pkg-plist ============================================================================== --- head/ftp/curl/pkg-plist Mon May 23 03:49:42 2016 (r415654) +++ head/ftp/curl/pkg-plist Mon May 23 03:49:47 2016 (r415655) @@ -94,6 +94,7 @@ man/man3/CURLOPT_CLOSESOCKETFUNCTION.3.g man/man3/CURLOPT_CONNECTTIMEOUT.3.gz man/man3/CURLOPT_CONNECTTIMEOUT_MS.3.gz man/man3/CURLOPT_CONNECT_ONLY.3.gz +man/man3/CURLOPT_CONNECT_TO.3.gz man/man3/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3.gz man/man3/CURLOPT_CONV_FROM_UTF8_FUNCTION.3.gz man/man3/CURLOPT_CONV_TO_NETWORK_FUNCTION.3.gz @@ -269,6 +270,7 @@ man/man3/CURLOPT_STDERR.3.gz man/man3/CURLOPT_STREAM_DEPENDS.3.gz man/man3/CURLOPT_STREAM_DEPENDS_E.3.gz man/man3/CURLOPT_STREAM_WEIGHT.3.gz +man/man3/CURLOPT_TCP_FASTOPEN.3.gz man/man3/CURLOPT_TCP_KEEPALIVE.3.gz man/man3/CURLOPT_TCP_KEEPIDLE.3.gz man/man3/CURLOPT_TCP_KEEPINTVL.3.gz