From owner-svn-ports-all@FreeBSD.ORG Thu Dec 13 16:06:45 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA5A9DD3; Thu, 13 Dec 2012 16:06:45 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id CEED78FC0A; Thu, 13 Dec 2012 16:06:45 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBDG6jmb067911; Thu, 13 Dec 2012 16:06:45 GMT (envelope-from acm@svn.freebsd.org) Received: (from acm@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBDG6iwU067901; Thu, 13 Dec 2012 16:06:44 GMT (envelope-from acm@svn.freebsd.org) Message-Id: <201212131606.qBDG6iwU067901@svn.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Thu, 13 Dec 2012 16:06:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r308852 - in head/devel/commoncpp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Dec 2012 16:06:46 -0000 Author: acm Date: Thu Dec 13 16:06:43 2012 New Revision: 308852 URL: http://svnweb.freebsd.org/changeset/ports/308852 Log: - Update to 1.8.1 PR: 170586 Submitted by: Waitman Gobble Added: head/devel/commoncpp/files/patch-src_applog.cpp (contents, props changed) Modified: head/devel/commoncpp/Makefile head/devel/commoncpp/distinfo head/devel/commoncpp/files/patch-include-cc++_address.h head/devel/commoncpp/files/patch-src_mutex.cpp head/devel/commoncpp/files/patch-src_thread.cpp head/devel/commoncpp/files/patch-src_timer.cpp head/devel/commoncpp/pkg-plist Modified: head/devel/commoncpp/Makefile ============================================================================== --- head/devel/commoncpp/Makefile Thu Dec 13 15:08:11 2012 (r308851) +++ head/devel/commoncpp/Makefile Thu Dec 13 16:06:43 2012 (r308852) @@ -6,7 +6,7 @@ # PORTNAME= commoncpp -PORTVERSION= 1.7.3 +PORTVERSION= 1.8.1 PORTEPOCH= 2 CATEGORIES= devel MASTER_SITES= GNU Modified: head/devel/commoncpp/distinfo ============================================================================== --- head/devel/commoncpp/distinfo Thu Dec 13 15:08:11 2012 (r308851) +++ head/devel/commoncpp/distinfo Thu Dec 13 16:06:43 2012 (r308852) @@ -1,2 +1,2 @@ -SHA256 (commoncpp2-1.7.3.tar.gz) = b3aa57601e6d374f11f769a5c078ae17d98a678f68e5f5162fb893cc1ff85385 -SIZE (commoncpp2-1.7.3.tar.gz) = 894571 +SHA256 (commoncpp2-1.8.1.tar.gz) = 53ced4aff74e28a1d8018eb2b4974519028db3c12471ab6dff1c873578c9af4e +SIZE (commoncpp2-1.8.1.tar.gz) = 908678 Modified: head/devel/commoncpp/files/patch-include-cc++_address.h ============================================================================== --- head/devel/commoncpp/files/patch-include-cc++_address.h Thu Dec 13 15:08:11 2012 (r308851) +++ head/devel/commoncpp/files/patch-include-cc++_address.h Thu Dec 13 16:06:43 2012 (r308852) @@ -1,28 +1,28 @@ ---- inc/cc++/address.h Tue Jan 23 14:15:02 2007 -+++ inc/cc++/address.h Tue Sep 11 11:58:17 2007 -@@ -236,10 +236,10 @@ - bool isMember(const struct in_addr &inaddr) const; - - inline bool operator==(const struct sockaddr *a) const -- {return isMember(a);}; -+ {return isMember(a);} - - inline bool operator==(const struct in_addr &a) const -- {return isMember(a);}; -+ {return isMember(a);} +--- inc/cc++/address.h 2010-10-31 15:22:45.000000000 -0700 ++++ inc/cc++/address.h 2012-08-12 20:17:20.000000000 -0700 +@@ -237,10 +237,10 @@ + bool isMember(const struct in_addr &inaddr) const; + + inline bool operator==(const struct sockaddr *a) const +- {return isMember(a);}; ++ {return isMember(a);} + + inline bool operator==(const struct in_addr &a) const +- {return isMember(a);}; ++ {return isMember(a);} }; - #ifdef CCXX_IPV6 -@@ -324,10 +324,10 @@ - bool isMember(const struct in6_addr &inaddr) const; - - inline bool operator==(const struct sockaddr *sa) const -- {return isMember(sa);}; -+ {return isMember(sa);} - - inline bool operator==(const struct in6_addr &a) const -- {return isMember(a);}; -+ {return isMember(a);} + #ifdef CCXX_IPV6 +@@ -325,10 +325,10 @@ + bool isMember(const struct in6_addr &inaddr) const; + + inline bool operator==(const struct sockaddr *sa) const +- {return isMember(sa);}; ++ {return isMember(sa);} + + inline bool operator==(const struct in6_addr &a) const +- {return isMember(a);}; ++ {return isMember(a);} }; #endif Added: head/devel/commoncpp/files/patch-src_applog.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/commoncpp/files/patch-src_applog.cpp Thu Dec 13 16:06:43 2012 (r308852) @@ -0,0 +1,19 @@ +--- src/applog.cpp 2010-10-31 16:11:55.000000000 -0700 ++++ src/applog.cpp 2012-08-12 20:50:40.000000000 -0700 +@@ -45,6 +45,7 @@ + #include + #include + #include ++#include + + // TODO sc: test if has to move up now that it is into commoncpp + // NOTE: the order of inclusion is important do not move following include line +@@ -53,6 +54,8 @@ + // local includes + #include + ++using namespace std; ++ + #ifdef CCXX_NAMESPACES + using namespace std; + namespace ost Modified: head/devel/commoncpp/files/patch-src_mutex.cpp ============================================================================== --- head/devel/commoncpp/files/patch-src_mutex.cpp Thu Dec 13 15:08:11 2012 (r308851) +++ head/devel/commoncpp/files/patch-src_mutex.cpp Thu Dec 13 16:06:43 2012 (r308852) @@ -1,11 +1,11 @@ ---- src/mutex.cpp.orig Sat Nov 5 19:54:24 2005 -+++ src/mutex.cpp Sat Nov 5 19:59:01 2005 -@@ -48,6 +48,8 @@ +--- src/mutex.cpp 2010-10-31 16:56:23.000000000 -0700 ++++ src/mutex.cpp 2012-08-12 20:34:58.000000000 -0700 +@@ -50,6 +50,8 @@ using namespace __gnu_cxx; #endif +using namespace std; + - #ifdef CCXX_NAMESPACES + #ifdef CCXX_NAMESPACES namespace ost { - #endif + using namespace std; Modified: head/devel/commoncpp/files/patch-src_thread.cpp ============================================================================== --- head/devel/commoncpp/files/patch-src_thread.cpp Thu Dec 13 15:08:11 2012 (r308851) +++ head/devel/commoncpp/files/patch-src_thread.cpp Thu Dec 13 16:06:43 2012 (r308852) @@ -1,11 +1,11 @@ ---- src/thread.cpp Wed Oct 4 19:16:54 2006 -+++ src/thread.cpp Wed Oct 4 19:17:17 2006 -@@ -820,7 +820,7 @@ +--- src/thread.cpp 2010-10-31 17:58:07.000000000 -0700 ++++ src/thread.cpp 2012-08-12 20:26:53.000000000 -0700 +@@ -796,7 +796,7 @@ cctid_t Thread::getId(void) const { - if(!priv) -- return -1; -+ return false; + if(!priv) +- return (cctid_t)-1; ++ return (cctid_t)false; - return priv->_tid; + return priv->_tid; } Modified: head/devel/commoncpp/files/patch-src_timer.cpp ============================================================================== --- head/devel/commoncpp/files/patch-src_timer.cpp Thu Dec 13 15:08:11 2012 (r308851) +++ head/devel/commoncpp/files/patch-src_timer.cpp Thu Dec 13 16:06:43 2012 (r308852) @@ -1,11 +1,11 @@ ---- src/timer.cpp.orig Tue Jan 23 21:09:13 2007 -+++ src/timer.cpp Tue Sep 11 13:12:41 2007 -@@ -117,7 +117,7 @@ - active = true; +--- src/timer.cpp 2010-10-31 18:00:33.000000000 -0700 ++++ src/timer.cpp 2012-08-12 20:29:31.000000000 -0700 +@@ -118,7 +118,7 @@ + active = true; } --#ifdef HAVE_HIRES_TIMER +-#ifdef HAVE_HIRES_TIMER +#if defined(HAVE_HIRES_TIMER) && !defined(__FreeBSD__) void TimerPort::sleepTimer(void) { - struct timespec ts; + struct timespec ts; Modified: head/devel/commoncpp/pkg-plist ============================================================================== --- head/devel/commoncpp/pkg-plist Thu Dec 13 15:08:11 2012 (r308851) +++ head/devel/commoncpp/pkg-plist Thu Dec 13 16:06:43 2012 (r308852) @@ -1,5 +1,6 @@ bin/ccgnu2-config include/cc++/address.h +include/cc++/applog.h include/cc++/buffer.h include/cc++/cmdoptns.h include/cc++/common.h @@ -37,13 +38,13 @@ include/cc++/unix.h include/cc++/url.h include/cc++/xml.h include/cc++/zstream.h -lib/libccext2-1.7.so -lib/libccext2-1.7.so.0 +lib/libccext2-1.8.so +lib/libccext2-1.8.so.0 lib/libccext2.a lib/libccext2.la lib/libccext2.so -lib/libccgnu2-1.7.so -lib/libccgnu2-1.7.so.0 +lib/libccgnu2-1.8.so +lib/libccgnu2-1.8.so.0 lib/libccgnu2.a lib/libccgnu2.la lib/libccgnu2.so