Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Apr 2019 14:42:44 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r498101 - in head: databases/libzdb databases/libzdb/files mail/dbmail mail/spmfilter net-mgmt/ccnet-server net-mgmt/seafile-server
Message-ID:  <201904061442.x36EgiWi006626@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Apr  6 14:42:44 2019
New Revision: 498101
URL: https://svnweb.freebsd.org/changeset/ports/498101

Log:
  Update databases/libzdb to 3.2
  
  - Update MASTER_SITES
  - Update pkg-descr
  - Update WWW
  - Bump PORTREVISION of dependent ports for shlib change
  - Take maintainership
  
  Changes:	https://www.tildeslash.com/libzdb/#release_notes

Deleted:
  head/databases/libzdb/files/
Modified:
  head/databases/libzdb/Makefile
  head/databases/libzdb/distinfo
  head/databases/libzdb/pkg-descr
  head/databases/libzdb/pkg-plist
  head/mail/dbmail/Makefile
  head/mail/spmfilter/Makefile
  head/net-mgmt/ccnet-server/Makefile
  head/net-mgmt/seafile-server/Makefile

Modified: head/databases/libzdb/Makefile
==============================================================================
--- head/databases/libzdb/Makefile	Sat Apr  6 14:42:38 2019	(r498100)
+++ head/databases/libzdb/Makefile	Sat Apr  6 14:42:44 2019	(r498101)
@@ -2,40 +2,33 @@
 # $FreeBSD$
 
 PORTNAME=	libzdb
-PORTVERSION=	3.1
-PORTREVISION=	2
+PORTVERSION=	3.2
 CATEGORIES=	databases
-MASTER_SITES=	http://www.tildeslash.com/libzdb/dist/
+MASTER_SITES=	https://www.tildeslash.com/libzdb/dist/
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	sunpoet@FreeBSD.org
 COMMENT=	Thread-safe connection pool library
 
 LICENSE=	GPLv3
 
-USES=		gmake libtool pathfix
+USES=		gmake libtool localbase pathfix
+
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip
 USE_LDCONFIG=	yes
 
-CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib -pthread
-
 OPTIONS_DEFINE=		SSL
 OPTIONS_DEFAULT=	MYSQL PGSQL SQLITE SSL
 OPTIONS_MULTI=		DB
 OPTIONS_MULTI_DB=	MYSQL PGSQL SQLITE
 
+MYSQL_CONFIGURE_WITH=	mysql=${LOCALBASE}/bin/mysql_config
 MYSQL_USES=		mysql
-MYSQL_CONFIGURE_ON=	--with-mysql=${LOCALBASE}/bin/mysql_config
-MYSQL_CONFIGURE_OFF=	--without-mysql
+PGSQL_CONFIGURE_WITH=	postgresql=${LOCALBASE}/bin/pg_config
 PGSQL_USES=		pgsql
-PGSQL_CONFIGURE_ON=	--with-postgresql=${LOCALBASE}/bin/pg_config
-PGSQL_CONFIGURE_OFF=	--without-postgresql
+SQLITE_CONFIGURE_WITH=	sqlite=${LOCALBASE}
 SQLITE_USES=		sqlite
-SQLITE_CONFIGURE_ON=	--with-sqlite=${LOCALBASE}
-SQLITE_CONFIGURE_OFF=	--without-sqlite
+SSL_CONFIGURE_ENABLE=	openssl=${OPENSSLBASE}
 SSL_USES=		ssl
-SSL_CONFIGURE_ON=	--enable-openssl=${OPENSSLBASE}
-SSL_CONFIGURE_OFF=	--disable-openssl
 
 .include <bsd.port.mk>

Modified: head/databases/libzdb/distinfo
==============================================================================
--- head/databases/libzdb/distinfo	Sat Apr  6 14:42:38 2019	(r498100)
+++ head/databases/libzdb/distinfo	Sat Apr  6 14:42:44 2019	(r498101)
@@ -1,2 +1,3 @@
-SHA256 (libzdb-3.1.tar.gz) = 0f01abb1b01d1a1f4ab9b55ad3ba445d203fc3b4757abdf53e1d85e2b7b42695
-SIZE (libzdb-3.1.tar.gz) = 720162
+TIMESTAMP = 1554499848
+SHA256 (libzdb-3.2.tar.gz) = 005ddf4b29c6db622e16303298c2f914dfd82590111cea7cfd09b4acf46cf4f2
+SIZE (libzdb-3.2.tar.gz) = 756853

Modified: head/databases/libzdb/pkg-descr
==============================================================================
--- head/databases/libzdb/pkg-descr	Sat Apr  6 14:42:38 2019	(r498100)
+++ head/databases/libzdb/pkg-descr	Sat Apr  6 14:42:44 2019	(r498101)
@@ -1,6 +1,8 @@
-The Zild Database Library implements a small and fast database API
-with the following features: C database library - easy to use API
-- connect to multiple database systems - zero runtime configuration,
-connect using URL scheme - Thread safe Connection Pooling.
+Libzdb is a small, easy to use Open Source Database Connection Pool Library with
+the following features:
+- Thread safe Database Connection Pool
+- Connect to multiple database systems
+- Zero runtime configuration, connect using a URL scheme
+- Supports MySQL, PostgreSQL, SQLite and Oracle
 
-WWW: http://www.tildeslash.com/libzdb/
+WWW: https://www.tildeslash.com/libzdb/

Modified: head/databases/libzdb/pkg-plist
==============================================================================
--- head/databases/libzdb/pkg-plist	Sat Apr  6 14:42:38 2019	(r498100)
+++ head/databases/libzdb/pkg-plist	Sat Apr  6 14:42:44 2019	(r498101)
@@ -4,10 +4,12 @@ include/zdb/Exception.h
 include/zdb/PreparedStatement.h
 include/zdb/ResultSet.h
 include/zdb/SQLException.h
+include/zdb/Thread.h
 include/zdb/URL.h
 include/zdb/zdb.h
+include/zdb/zdbpp.h
 lib/libzdb.a
 lib/libzdb.so
-lib/libzdb.so.11
-lib/libzdb.so.11.0.0
+lib/libzdb.so.12
+lib/libzdb.so.12.0.0
 libdata/pkgconfig/zdb.pc

Modified: head/mail/dbmail/Makefile
==============================================================================
--- head/mail/dbmail/Makefile	Sat Apr  6 14:42:38 2019	(r498100)
+++ head/mail/dbmail/Makefile	Sat Apr  6 14:42:44 2019	(r498101)
@@ -3,7 +3,7 @@
 
 PORTNAME=	dbmail
 PORTVERSION=	3.2.3
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	mail
 MASTER_SITES=	http://git.dbmail.eu/paul/dbmail/snapshot/ \
 		http://www.dbmail.org/download/3.2/

Modified: head/mail/spmfilter/Makefile
==============================================================================
--- head/mail/spmfilter/Makefile	Sat Apr  6 14:42:38 2019	(r498100)
+++ head/mail/spmfilter/Makefile	Sat Apr  6 14:42:44 2019	(r498101)
@@ -2,7 +2,7 @@
 
 PORTNAME=	spmfilter
 PORTVERSION=	0.6.7
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	mail
 MASTER_SITES=	http://www.${PORTNAME}.org/files/
 

Modified: head/net-mgmt/ccnet-server/Makefile
==============================================================================
--- head/net-mgmt/ccnet-server/Makefile	Sat Apr  6 14:42:38 2019	(r498100)
+++ head/net-mgmt/ccnet-server/Makefile	Sat Apr  6 14:42:44 2019	(r498101)
@@ -3,7 +3,7 @@
 PORTNAME=	ccnet-server
 DISTVERSIONPREFIX=	v
 DISTVERSION=	${SEAFILE_VER}
-PORTREVISION=	1
+PORTREVISION=	2
 DISTVERSIONSUFFIX=	-server
 CATEGORIES=	net-mgmt devel
 

Modified: head/net-mgmt/seafile-server/Makefile
==============================================================================
--- head/net-mgmt/seafile-server/Makefile	Sat Apr  6 14:42:38 2019	(r498100)
+++ head/net-mgmt/seafile-server/Makefile	Sat Apr  6 14:42:44 2019	(r498101)
@@ -3,7 +3,7 @@
 PORTNAME=	seafile-server
 DISTVERSIONPREFIX=	v
 DISTVERSION=	${SEAFILE_VER}
-PORTREVISION=	1
+PORTREVISION=	2
 DISTVERSIONSUFFIX=	-server
 CATEGORIES=	net-mgmt
 



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