From owner-svn-ports-head@FreeBSD.ORG Fri Jul 11 21:50:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2030279F; Fri, 11 Jul 2014 21:50:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 026312AD1; Fri, 11 Jul 2014 21:50:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6BLoqnb061592; Fri, 11 Jul 2014 21:50:52 GMT (envelope-from tdb@svn.freebsd.org) Received: (from tdb@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6BLopoV061571; Fri, 11 Jul 2014 21:50:51 GMT (envelope-from tdb@svn.freebsd.org) Message-Id: <201407112150.s6BLopoV061571@svn.freebsd.org> From: Tim Bishop Date: Fri, 11 Jul 2014 21:50:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361588 - in head: devel/libstatgrab devel/libstatgrab/files devel/p5-Unix-Statgrab net-mgmt/bwm-ng net-mgmt/collectd net-mgmt/collectd5 sysutils/freecolor sysutils/swapd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jul 2014 21:50:53 -0000 Author: tdb Date: Fri Jul 11 21:50:50 2014 New Revision: 361588 URL: http://svnweb.freebsd.org/changeset/ports/361588 QAT: https://qat.redports.org/buildarchive/r361588/ Log: - Update libstatgrab to 0.91. - Bump revision on dependent ports to chase shlib bump. Deleted: head/devel/libstatgrab/files/ Modified: head/devel/libstatgrab/Makefile head/devel/libstatgrab/distinfo head/devel/libstatgrab/pkg-plist head/devel/p5-Unix-Statgrab/Makefile head/net-mgmt/bwm-ng/Makefile head/net-mgmt/collectd/Makefile head/net-mgmt/collectd5/Makefile head/sysutils/freecolor/Makefile head/sysutils/swapd/Makefile Modified: head/devel/libstatgrab/Makefile ============================================================================== --- head/devel/libstatgrab/Makefile Fri Jul 11 21:47:43 2014 (r361587) +++ head/devel/libstatgrab/Makefile Fri Jul 11 21:50:50 2014 (r361588) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libstatgrab -PORTVERSION= 0.90 +PORTVERSION= 0.91 CATEGORIES= devel MASTER_SITES= http://ftp.uk.i-scream.org/pub/i-scream/libstatgrab/ \ http://dl.ambiweb.de/mirrors/ftp.i-scream.org/libstatgrab/ \ @@ -15,7 +15,7 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes USES= pathfix pkgconfig libtool -CONFIGURE_ARGS= --disable-examples +CONFIGURE_ARGS+= --docdir=${DOCSDIR} OPTIONS_DEFINE= TOOLS OPTIONS_DEFAULT= TOOLS Modified: head/devel/libstatgrab/distinfo ============================================================================== --- head/devel/libstatgrab/distinfo Fri Jul 11 21:47:43 2014 (r361587) +++ head/devel/libstatgrab/distinfo Fri Jul 11 21:50:50 2014 (r361588) @@ -1,2 +1,2 @@ -SHA256 (libstatgrab-0.90.tar.gz) = f614daf8d79bc3466ce62e871ed674f4fb549e26c8b3273fd53ba35a37b2cd70 -SIZE (libstatgrab-0.90.tar.gz) = 755785 +SHA256 (libstatgrab-0.91.tar.gz) = 03e9328e4857c2c9dcc1b0347724ae4cd741a72ee11acc991784e8ef45b7f1ab +SIZE (libstatgrab-0.91.tar.gz) = 776046 Modified: head/devel/libstatgrab/pkg-plist ============================================================================== --- head/devel/libstatgrab/pkg-plist Fri Jul 11 21:47:43 2014 (r361587) +++ head/devel/libstatgrab/pkg-plist Fri Jul 11 21:50:50 2014 (r361588) @@ -5,8 +5,8 @@ include/statgrab.h lib/libstatgrab.a lib/libstatgrab.so -lib/libstatgrab.so.9 -lib/libstatgrab.so.9.0.0 +lib/libstatgrab.so.10 +lib/libstatgrab.so.10.0.0 libdata/pkgconfig/libstatgrab.pc %%TOOLS%%man/man1/saidar.1.gz %%TOOLS%%man/man1/statgrab-make-mrtg-config.1.gz @@ -115,3 +115,10 @@ man/man3/sg_vector_create.3.gz man/man3/sg_vector_free.3.gz man/man3/sg_vector_resize.3.gz man/man3/statgrab.3.gz +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/COPYING.LGPL +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/PLATFORMS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%@dirrm %%DOCSDIR%% Modified: head/devel/p5-Unix-Statgrab/Makefile ============================================================================== --- head/devel/p5-Unix-Statgrab/Makefile Fri Jul 11 21:47:43 2014 (r361587) +++ head/devel/p5-Unix-Statgrab/Makefile Fri Jul 11 21:50:50 2014 (r361588) @@ -3,6 +3,7 @@ PORTNAME= Unix-Statgrab PORTVERSION= 0.104 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/net-mgmt/bwm-ng/Makefile ============================================================================== --- head/net-mgmt/bwm-ng/Makefile Fri Jul 11 21:47:43 2014 (r361587) +++ head/net-mgmt/bwm-ng/Makefile Fri Jul 11 21:50:50 2014 (r361588) @@ -3,7 +3,7 @@ PORTNAME= bwm-ng PORTVERSION= 0.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= http://www.gropp.org/bwm-ng/ Modified: head/net-mgmt/collectd/Makefile ============================================================================== --- head/net-mgmt/collectd/Makefile Fri Jul 11 21:47:43 2014 (r361587) +++ head/net-mgmt/collectd/Makefile Fri Jul 11 21:50:50 2014 (r361588) @@ -3,7 +3,7 @@ PORTNAME= collectd PORTVERSION= 4.10.9 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= net-mgmt MASTER_SITES= http://collectd.org/files/ Modified: head/net-mgmt/collectd5/Makefile ============================================================================== --- head/net-mgmt/collectd5/Makefile Fri Jul 11 21:47:43 2014 (r361587) +++ head/net-mgmt/collectd5/Makefile Fri Jul 11 21:50:50 2014 (r361588) @@ -3,7 +3,7 @@ PORTNAME= collectd PORTVERSION= 5.4.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-mgmt MASTER_SITES= http://collectd.org/files/ PKGNAMESUFFIX= 5 Modified: head/sysutils/freecolor/Makefile ============================================================================== --- head/sysutils/freecolor/Makefile Fri Jul 11 21:47:43 2014 (r361587) +++ head/sysutils/freecolor/Makefile Fri Jul 11 21:50:50 2014 (r361588) @@ -3,6 +3,7 @@ PORTNAME= freecolor PORTVERSION= 0.9.2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.rkeene.org/files/oss/freecolor/ Modified: head/sysutils/swapd/Makefile ============================================================================== --- head/sysutils/swapd/Makefile Fri Jul 11 21:47:43 2014 (r361587) +++ head/sysutils/swapd/Makefile Fri Jul 11 21:50:50 2014 (r361588) @@ -3,6 +3,7 @@ PORTNAME= swapd PORTVERSION= 1.0.5 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.rkeene.org/files/oss/swapd/