pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/uriparser



Module Name:    pkgsrc
Committed By:   wiz
Date:           Fri Feb 23 16:41:34 UTC 2018

Modified Files:
        pkgsrc/textproc/uriparser: Makefile PLIST distinfo

Log Message:
uriparser: update to 0.8.5.

2018-02-07 -- 0.8.5

  * Changed: The uriparser project has moved from SourceForge to GitHub:
      Code + issue tracker: https://github.com/uriparser/uriparser
      New website: https://uriparser.github.io/
      Please update any links of yours, accordingly. Thank you!
  * Fixed: Memleak in out-of-memory clean-up code
      of URI normalization, related to SF.net bug #28.
      Thanks to Chris Hills for the report!
  * Fixed: Fix compilation of uriparse(1) on FreeBSD
      Thanks to Ed Schouten for the patch!
  * Fixed: Fix C90 compilation errors
      Thanks to Joel Cunningham for the patches!
  * Fixed: Space requirements documented for uriWindowsFilenameToUriStringA
      given URI "file://server1/file1.txt" (SF.net bug #31)
      Thanks to threedyd for the report!
  * Fixed: Compiler warnings
      Thanks to Joel Cunningham for the patches!
  * Fixed: Stop exporting internal function RemoveBaseUriImpl
      Thanks to Joel Cunningham for the report!
  * Fixed: API documentation front page no longer empty with Doxygen 1.8.13
  * Fixed: "make -C doc install" fixed for lack of .map files
  * Improved: Communicate that absolutePath is always URI_FALSE for URIs
      with a host in uriparse CLI tool output and Uri.h header
      (GitHub #2, SF.net #30)
  * Soname: 1:21:0

2015-10-12 -- 0.8.4

  * Fixed: Stack overflow on parsing malformed IPv6 addresses with
      more than eigtht quads.  Thanks to Alexander Klink for the report!
  * Soname: 1:20:0

2015-10-04 -- 0.8.3

  * Fixed: uriCompareRange reported NULL pointer and range of
      length zero as equal, by mistake.
      Thanks to Robert Kausch and his Coverity report.
  * Fixed: Use-after-free in out-of-memory code of uriMakeOwner.
      Thanks to Chris Hills and his Klocwork-based report (SF.net bug #28)
  * Soname: 1:19:0

2015-04-27 -- 0.8.2

  * Fixed: Broken conversion from/to Windows network shares (SF.net bug #21)
      Thanks to Adam Gross and Dmitry Repkin!
  * Fixed: Limit uriCompareRange return values to -1/0/1 (SF.net bug #24)
      As a side effect, this fixes the test suite for AArch64.
      Thanks to Marcin Juszkiewicz for the patch!
  * Fixed: MinGW Makefile:
      LIB_DIR fixed from ../../lib leftover to ../../src (SF.net bug #27)
      Thanks to Dmytro Zagashev for the report!
  * Fixed: Add missing NULL checks to UriStringToFilename (SF.net bug #25)
      Thanks to Jerome Custodio for the report!
  * Changed: Leave inlining decisions to GCC
  * Soname: 1:18:0

2014-10-20 -- 0.8.1

  * Fixed: Sync URI_VER_* preprocessor defines (were at 0.7.6, SF.net bug #23)
  * Fixed: Bug in internal function that may flip uriEqualsUri results around
  * Added: Function uriAddBaseUriEx allowing to resolve URIs with
      a scheme identical to that of the base URI to resolve against
      as if the URI to resolve had no scheme specified, when flag
      URI_RESOLVE_IDENTICAL_SCHEME_COMPAT is specified
      (SF.net feature request #4)
  * Soname: 1:17:0

2014-07-12 -- 0.8.0.1

  * Fixed: ISO C90 warnings (SF.net bug #20)
  * Changed: No longer ship RFC documents (to make things easier for Debian)
  * Soname: 1:16:0

2013-12-20 -- 0.8.0

  * Fixed: Resolution of relative URI "/" broken
      Thanks to Mo McRoberts for the patch!
  * Fixed: uriAddBaseUri produced uriUri objects with both host
      and the absolutePath flag set (while the absolutePath flag
      should only be true for URI objects without a host) when
      resolving absolute URIs like "/" or "/foo/bar".
      Now the absolutePath flag is set to URI_FALSE and an empty
      segment is added as necessary
  * Fixed: .errorCode could end up unset, previously
      Thanks to Radu Hociung for the patch!  (SF.net bug #16)
  * Fixed: Resolve use of non-POSIX "sed -r" used when building
     documentation  (SF.net bug #18)
     Thanks to Ryan Schmidt for reporting!
  * Fixed: Build DLL with -no-undefined on Windows
      Thanks to Michel Zou for the patch!  (SF.net bug #19)
  * Added: Command line tool "uriparse"
      Thanks to Radu Hociung for coding!  (SF.net feature request #3)
  * Soname: 1:15:0

2013-08-24 -- 0.7.9

  * Fixed: Error position ended up as NULL for some syntax errors.
      Thanks to Daniel Solano Gómez for the patch!  (SF.net bug #14)
  * Soname: 1:14:0

2013-05-13 -- 0.7.8

  * Fixed: Fix dissection of query string "q=hello&x=&y=" (SF.net bug #12)
      Thanks to Marc Novakowski for reporting!
  * Soname: 1:13:0


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/textproc/uriparser/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/uriparser/PLIST
cvs rdiff -u -r1.6 -r1.7 pkgsrc/textproc/uriparser/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/uriparser/Makefile
diff -u pkgsrc/textproc/uriparser/Makefile:1.7 pkgsrc/textproc/uriparser/Makefile:1.8
--- pkgsrc/textproc/uriparser/Makefile:1.7      Thu Oct 25 06:57:05 2012
+++ pkgsrc/textproc/uriparser/Makefile  Fri Feb 23 16:41:34 2018
@@ -1,22 +1,23 @@
-# $NetBSD: Makefile,v 1.7 2012/10/25 06:57:05 asau Exp $
-#
+# $NetBSD: Makefile,v 1.8 2018/02/23 16:41:34 wiz Exp $
 
-DISTNAME=      uriparser-0.7.7
+DISTNAME=      uriparser-0.8.5
 CATEGORIES=    textproc
-MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=uriparser/}
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=uriparser/}
+GITHUB_RELEASE=        ${DISTNAME}
 EXTRACT_SUFX=  .tar.bz2
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      http://uriparser.sourceforge.net/
+HOMEPAGE=      https://uriparser.github.io/
 COMMENT=       URI parsing library
 LICENSE=       modified-bsd
 
 GNU_CONFIGURE= yes
 CONFIGURE_ARGS+= --disable-doc
 USE_LIBTOOL=   yes
+USE_TOOLS+=    gmake
 USE_FEATURES=  snprintf
 PKGCONFIG_OVERRIDE+= liburiparser.pc.in
-#TEST_TARGET=  check
+TEST_TARGET=   check
 
 .include "../../mk/bsd.fast.prefs.mk"
 

Index: pkgsrc/textproc/uriparser/PLIST
diff -u pkgsrc/textproc/uriparser/PLIST:1.3 pkgsrc/textproc/uriparser/PLIST:1.4
--- pkgsrc/textproc/uriparser/PLIST:1.3 Thu Aug 23 15:09:18 2012
+++ pkgsrc/textproc/uriparser/PLIST     Fri Feb 23 16:41:34 2018
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.3 2012/08/23 15:09:18 drochner Exp $
+@comment $NetBSD: PLIST,v 1.4 2018/02/23 16:41:34 wiz Exp $
+bin/uriparse
 include/uriparser/Uri.h
 include/uriparser/UriBase.h
 include/uriparser/UriDefsAnsi.h

Index: pkgsrc/textproc/uriparser/distinfo
diff -u pkgsrc/textproc/uriparser/distinfo:1.6 pkgsrc/textproc/uriparser/distinfo:1.7
--- pkgsrc/textproc/uriparser/distinfo:1.6      Wed Nov  4 02:00:14 2015
+++ pkgsrc/textproc/uriparser/distinfo  Fri Feb 23 16:41:34 2018
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.6 2015/11/04 02:00:14 agc Exp $
+$NetBSD: distinfo,v 1.7 2018/02/23 16:41:34 wiz Exp $
 
-SHA1 (uriparser-0.7.7.tar.bz2) = 160c1e6102a56efea47f257cbb261d935ae136ad
-RMD160 (uriparser-0.7.7.tar.bz2) = 0032a3ee9d98bbba53b40e4f84e2d377f645684a
-SHA512 (uriparser-0.7.7.tar.bz2) = ef4c38fb3e20247c26be44992b6e7200877485fc7bc5058327941bfc65c1aa30df785946088e734628caac270ff2e8b84d3aec5b225f2de5383080f54f6b865d
-Size (uriparser-0.7.7.tar.bz2) = 428783 bytes
+SHA1 (uriparser-0.8.5.tar.bz2) = 8f898ed85f0819b809aab2e84c3086f7c1575722
+RMD160 (uriparser-0.8.5.tar.bz2) = f9340b4ec8263fb9f8ebef802c98ae96a3575765
+SHA512 (uriparser-0.8.5.tar.bz2) = e9b0228092cf12b824975000b0a6dbe2e413d3642203666d77c5b42f04bc13e0ec3f61d6a2c44d9613bea15e8cf7ec42cc4c92c5bc4318ee3349c1b380409d5c
+Size (uriparser-0.8.5.tar.bz2) = 359469 bytes
 SHA1 (patch-aa) = 71f3582a2988c6c35a1a2b1995d50f47f22939bd



Home | Main Index | Thread Index | Old Index