Date: Sat, 26 Oct 2013 13:05:43 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331683 - in head/databases/postgresql-libpqxx3: . files Message-ID: <201310261305.r9QD5hc6068980@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Sat Oct 26 13:05:42 2013 New Revision: 331683 URL: http://svnweb.freebsd.org/changeset/ports/331683 Log: - Update to 3.1.1 - Fix build on 10.0 PR: ports/182178 Approved by: maintainer timeout (20080111.freebsd.org@ab.ote.we.lv, >2 months) Added: head/databases/postgresql-libpqxx3/files/patch-svn_1833 (contents, props changed) Deleted: head/databases/postgresql-libpqxx3/files/patch-svn_1665 Modified: head/databases/postgresql-libpqxx3/Makefile (contents, props changed) head/databases/postgresql-libpqxx3/distinfo (contents, props changed) head/databases/postgresql-libpqxx3/pkg-plist (contents, props changed) Modified: head/databases/postgresql-libpqxx3/Makefile ============================================================================== --- head/databases/postgresql-libpqxx3/Makefile Sat Oct 26 12:46:37 2013 (r331682) +++ head/databases/postgresql-libpqxx3/Makefile Sat Oct 26 13:05:42 2013 (r331683) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libpqxx -PORTVERSION= 3.1 +PORTVERSION= 3.1.1 CATEGORIES= databases MASTER_SITES= http://pqxx.org/download/software/${PORTNAME}/ PKGNAMEPREFIX= postgresql- @@ -20,10 +20,11 @@ USES= gmake pkgconfig GNU_CONFIGURE= yes USE_LDCONFIG= yes PLIST_SUB= PORTVERSION=${PORTVERSION} +USE_PYTHON_BUILD= yes +USES=shebangfix +SHEBANG_FILES= tools/splitconfig -CONFIGURE_ARGS= --with-postgres=${LOCALBASE} \ - --enable-shared \ - --with-postgres-include=${LOCALBASE}/include/postgresql +CONFIGURE_ARGS= --enable-shared NO_STAGE= yes .include <bsd.port.mk> Modified: head/databases/postgresql-libpqxx3/distinfo ============================================================================== --- head/databases/postgresql-libpqxx3/distinfo Sat Oct 26 12:46:37 2013 (r331682) +++ head/databases/postgresql-libpqxx3/distinfo Sat Oct 26 13:05:42 2013 (r331683) @@ -1,2 +1,2 @@ -SHA256 (postgresql/libpqxx-3.1.tar.gz) = 8950433f193e118cfd36ab91391eb174ef48897bacc26197da596988e66796a0 -SIZE (postgresql/libpqxx-3.1.tar.gz) = 1771846 +SHA256 (postgresql/libpqxx-3.1.1.tar.gz) = ce443c7c515623b4a68de5f0657460344b6b6320982d8f8efc657c3746e1ee90 +SIZE (postgresql/libpqxx-3.1.1.tar.gz) = 1563338 Added: head/databases/postgresql-libpqxx3/files/patch-svn_1833 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/postgresql-libpqxx3/files/patch-svn_1833 Sat Oct 26 13:05:42 2013 (r331683) @@ -0,0 +1,42 @@ +--- include/pqxx/largeobject.hxx (revision 1706) ++++ include/pqxx/largeobject.hxx (revision 1833) +@@ -397,5 +397,5 @@ + size_type BufSize=512) : //[t48] + m_BufSize(BufSize), +- m_Obj(T, O), ++ m_Obj(T, O, mode), + m_G(0), + m_P(0) +@@ -407,5 +407,5 @@ + size_type BufSize=512) : //[t48] + m_BufSize(BufSize), +- m_Obj(T, O), ++ m_Obj(T, O, mode), + m_G(0), + m_P(0) +--- ChangeLog (revision 1825) ++++ ChangeLog (revision 1833) +@@ -1,2 +1,7 @@ ++2012-08-03 Jeroen T. Vermeulen <jtv@xs4all.nl> ++ include/pqxx/largeobject.hxx: ++ - Backported fix for #252: clang++ 3.2 compile error. Thanks Amy Troschinetz. ++ src/strconv.cxx: ++ - Backported fix for #253: clang++ 3.2 compile error. Thanks Amy Troschinetz. + 2012-03-25 Jeroen T. Vermeulen <jtv@xs4all.nl> + test/test002.cxx, test/test007.cxx, test/test011.cxx, test/test012.cxx, +--- src/strconv.cxx (revision 1724) ++++ src/strconv.cxx (revision 1833) +@@ -7,5 +7,5 @@ + * implementation of string conversions + * +- * Copyright (c) 2008, Jeroen T. Vermeulen <jtv@xs4all.nl> ++ * Copyright (c) 2008-2012, Jeroen T. Vermeulen <jtv@xs4all.nl> + * + * See COPYING for copyright license. If you did not receive a file called +@@ -193,5 +193,5 @@ + S.imbue(locale("C")); + #endif +- ok = (S >> result); ++ ok = static_cast<bool>(S >> result); + } + break; Modified: head/databases/postgresql-libpqxx3/pkg-plist ============================================================================== --- head/databases/postgresql-libpqxx3/pkg-plist Sat Oct 26 12:46:37 2013 (r331682) +++ head/databases/postgresql-libpqxx3/pkg-plist Sat Oct 26 13:05:42 2013 (r331683) @@ -81,7 +81,7 @@ include/pqxx/util include/pqxx/util.hxx include/pqxx/version include/pqxx/version.hxx -lib/libpqxx-%%PORTVERSION%%.so +lib/libpqxx-3.1.so lib/libpqxx.a lib/libpqxx.la lib/libpqxx.so
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310261305.r9QD5hc6068980>