Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Feb 2017 01:54:12 +0000 (UTC)
From:      Don Lewis <truckman@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r434654 - in head: devel/mtbl devel/mtbl/files devel/py-pymtbl dns/dnstable
Message-ID:  <201702230154.v1N1sCsb091399@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: truckman
Date: Thu Feb 23 01:54:12 2017
New Revision: 434654
URL: https://svnweb.freebsd.org/changeset/ports/434654

Log:
  Upgrade devel/mtbl to version 1.0.0:
  
    mtbl (1.0.0)
  
     * Backwards-incompatible file format change to enable block sizes >4G.
     * Add support for zstd compression. This adds a new library dependency
       on libzstd.
     * Add mtbl_iter_seek function.
     * Add mtbl_fileset_partition function.
     * Breaks ABI for version 0.x.x.
  
    mtbl (0.8.1)
  
     * Add portability for clock time.
     * Simplify and improve portability related to byte order primitives.
     * Fix assertion failure. If there is a broken mtbl file in the fileset
       then a NULL reader will be returned. This change checks for that
       error condition in fs_reinit_merger() and does not pass the empty
       reader onwards to mtbl_merger_add_source().
  
  Compatiblity with the latest libz4 has been added so files/patch-configure
  is no longer needed.
  
  Bump PORTREVISION on dependent ports due to ABI / shared library version
  change.

Deleted:
  head/devel/mtbl/files/
Modified:
  head/devel/mtbl/Makefile
  head/devel/mtbl/distinfo
  head/devel/mtbl/pkg-plist
  head/devel/py-pymtbl/Makefile
  head/dns/dnstable/Makefile

Modified: head/devel/mtbl/Makefile
==============================================================================
--- head/devel/mtbl/Makefile	Thu Feb 23 01:32:47 2017	(r434653)
+++ head/devel/mtbl/Makefile	Thu Feb 23 01:54:12 2017	(r434654)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	mtbl
-PORTVERSION=	0.8.0
+PORTVERSION=	1.0.0
 CATEGORIES=	devel
 MASTER_SITES=	FARSIGHT LOCAL/truckman/farsight
 
@@ -12,7 +12,8 @@ LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYRIGHT
 
 LIB_DEPENDS=	liblz4.so:archivers/liblz4 \
-		libsnappy.so:archivers/snappy
+		libsnappy.so:archivers/snappy \
+		libzstd.so:archivers/zstd
 
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes

Modified: head/devel/mtbl/distinfo
==============================================================================
--- head/devel/mtbl/distinfo	Thu Feb 23 01:32:47 2017	(r434653)
+++ head/devel/mtbl/distinfo	Thu Feb 23 01:54:12 2017	(r434654)
@@ -1,2 +1,3 @@
-SHA256 (mtbl-0.8.0.tar.gz) = 46fa1cc28c49a0b58ff68f803fc1f6d253f9043fa211842ac6265ed101d4ae46
-SIZE (mtbl-0.8.0.tar.gz) = 407912
+TIMESTAMP = 1487793455
+SHA256 (mtbl-1.0.0.tar.gz) = 0c8ddcfa7bf28f82540a66f9a9722ef66816555250e9a3d3b39c1b2440f77d5f
+SIZE (mtbl-1.0.0.tar.gz) = 414863

Modified: head/devel/mtbl/pkg-plist
==============================================================================
--- head/devel/mtbl/pkg-plist	Thu Feb 23 01:32:47 2017	(r434653)
+++ head/devel/mtbl/pkg-plist	Thu Feb 23 01:54:12 2017	(r434654)
@@ -5,12 +5,13 @@ bin/mtbl_verify
 include/mtbl.h
 lib/libmtbl.a
 lib/libmtbl.so
-lib/libmtbl.so.0
-lib/libmtbl.so.0.0.0
+lib/libmtbl.so.1
+lib/libmtbl.so.1.0.0
 libdata/pkgconfig/libmtbl.pc
 man/man1/mtbl_dump.1.gz
 man/man1/mtbl_info.1.gz
 man/man1/mtbl_merge.1.gz
+man/man1/mtbl_verify.1.gz
 man/man3/mtbl_crc32c.3.gz
 man/man3/mtbl_fileset.3.gz
 man/man3/mtbl_fixed.3.gz

Modified: head/devel/py-pymtbl/Makefile
==============================================================================
--- head/devel/py-pymtbl/Makefile	Thu Feb 23 01:32:47 2017	(r434653)
+++ head/devel/py-pymtbl/Makefile	Thu Feb 23 01:54:12 2017	(r434654)
@@ -2,6 +2,7 @@
 
 PORTNAME=	pymtbl
 PORTVERSION=	0.4.0
+PORTREVISION=	1
 CATEGORIES=	devel python
 MASTER_SITES=	FARSIGHT LOCAL/truckman/farsight
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

Modified: head/dns/dnstable/Makefile
==============================================================================
--- head/dns/dnstable/Makefile	Thu Feb 23 01:32:47 2017	(r434653)
+++ head/dns/dnstable/Makefile	Thu Feb 23 01:54:12 2017	(r434654)
@@ -2,6 +2,7 @@
 
 PORTNAME=	dnstable
 PORTVERSION=	0.9.1
+PORTREVISION=	1
 CATEGORIES=	dns
 MASTER_SITES=	FARSIGHT LOCAL/truckman/farsight
 



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