Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Oct 2015 07:33:47 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r400218 - in head/net/uriparser: . files
Message-ID:  <201510270733.t9R7XlC4099344@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ed (src committer)
Date: Tue Oct 27 07:33:47 2015
New Revision: 400218
URL: https://svnweb.freebsd.org/changeset/ports/400218

Log:
  Update uriparser to version 0.8.4.
  
  It looks like the latest release doesn't build because of a missing
  #include. The source file depends on AF_INET and AF_INET6, which of
  course requires <sys/socket.h>.
  
  Submitted by: Torsten Zühlsdorff
  PR: 203972
  Differential Revision:	https://reviews.freebsd.org/D4001

Added:
  head/net/uriparser/files/
  head/net/uriparser/files/patch-tool_uriparse.c   (contents, props changed)
Modified:
  head/net/uriparser/Makefile
  head/net/uriparser/distinfo
  head/net/uriparser/pkg-plist

Modified: head/net/uriparser/Makefile
==============================================================================
--- head/net/uriparser/Makefile	Tue Oct 27 06:42:04 2015	(r400217)
+++ head/net/uriparser/Makefile	Tue Oct 27 07:33:47 2015	(r400218)
@@ -2,18 +2,22 @@
 # $FreeBSD$
 
 PORTNAME=	uriparser
-PORTVERSION=	0.7.9
-PORTREVISION=	1
+PORTVERSION=	0.8.4
 CATEGORIES=	net
 MASTER_SITES=	SF/${PORTNAME}/Sources/${PORTVERSION}
 
 MAINTAINER=	ed@FreeBSD.org
 COMMENT=	URI parsing library
 
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/COPYING
+
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-doc --disable-test
 INSTALL_TARGET=	install-strip
 USES=		libtool pathfix tar:bzip2
 USE_LDCONFIG=	yes
 
+MAKE_JOBS_UNSAFE=yes
+
 .include <bsd.port.mk>

Modified: head/net/uriparser/distinfo
==============================================================================
--- head/net/uriparser/distinfo	Tue Oct 27 06:42:04 2015	(r400217)
+++ head/net/uriparser/distinfo	Tue Oct 27 07:33:47 2015	(r400218)
@@ -1,2 +1,2 @@
-SHA256 (uriparser-0.7.9.tar.bz2) = a1d8f1007757ca1cf68b49edbac50876100cdee23a54cf1214f257b9ce51100d
-SIZE (uriparser-0.7.9.tar.bz2) = 430215
+SHA256 (uriparser-0.8.4.tar.bz2) = ce7ccda4136974889231e8426a785e7578e66a6283009cfd13f1b24a5e657b23
+SIZE (uriparser-0.8.4.tar.bz2) = 358408

Added: head/net/uriparser/files/patch-tool_uriparse.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/uriparser/files/patch-tool_uriparse.c	Tue Oct 27 07:33:47 2015	(r400218)
@@ -0,0 +1,10 @@
+--- tool/uriparse.c
++++ tool/uriparse.c
+@@ -36,6 +36,7 @@
+  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+  * OF THE POSSIBILITY OF SUCH DAMAGE.
+  */
++#include <sys/socket.h>
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <uriparser/Uri.h>

Modified: head/net/uriparser/pkg-plist
==============================================================================
--- head/net/uriparser/pkg-plist	Tue Oct 27 06:42:04 2015	(r400217)
+++ head/net/uriparser/pkg-plist	Tue Oct 27 07:33:47 2015	(r400218)
@@ -1,3 +1,4 @@
+bin/uriparse
 include/uriparser/Uri.h
 include/uriparser/UriBase.h
 include/uriparser/UriDefsAnsi.h
@@ -7,5 +8,5 @@ include/uriparser/UriIp4.h
 lib/liburiparser.a
 lib/liburiparser.so
 lib/liburiparser.so.1
-lib/liburiparser.so.1.0.14
+lib/liburiparser.so.1.0.20
 libdata/pkgconfig/liburiparser.pc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510270733.t9R7XlC4099344>