From owner-svn-ports-head@FreeBSD.ORG Mon Nov 17 22:13:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E5318B2; Mon, 17 Nov 2014 22:13:28 +0000 (UTC) Received: from mail-yh0-x229.google.com (mail-yh0-x229.google.com [IPv6:2607:f8b0:4002:c01::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CDA7CE1E; Mon, 17 Nov 2014 22:13:27 +0000 (UTC) Received: by mail-yh0-f41.google.com with SMTP id a41so1498359yho.0 for ; Mon, 17 Nov 2014 14:13:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=ggEec9TlZuPuoInlEnSZdRU/zAijzT/j1JmPPrNUHmo=; b=W6Ym3uAxwJtgKRmB0XJwndwDpBgsc1az2gawtbnf5DD4elfUFXvs7ILt+plmxBmHOZ aglpc6EkdyFG3PWzuTAqGXM2e8GIYnY7VkM0Iyzi2leNtgkuY2MWcqe1xdn1w6AVDaeo 2o6AdcSxzHo1eY+ONArBuJ6zaR5JOGtTIhTlbIUzXjucghJbKQIGP3MibX6I4oqHzg4E jhBRYPOsWpTcNjQ7KfvzKyAYXAzu9w869GsBho7HxmbxFQJ8HIftj16VhUMwp685UFF2 qPyBKNY10RFrTeP1AmAE7ln5BpDFbXbbeCSvJG7pNrQVoxtx7G3UFGTA80Qga6y5J45o ASKg== MIME-Version: 1.0 X-Received: by 10.170.174.84 with SMTP id q81mr29982613ykd.31.1416262406814; Mon, 17 Nov 2014 14:13:26 -0800 (PST) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.170.211.9 with HTTP; Mon, 17 Nov 2014 14:13:26 -0800 (PST) In-Reply-To: <201411172211.sAHMBcN5008182@svn.freebsd.org> References: <201411172211.sAHMBcN5008182@svn.freebsd.org> Date: Mon, 17 Nov 2014 23:13:26 +0100 X-Google-Sender-Auth: Z-eLMQKrsyiaT5B7z9vpR7LQ6mg Message-ID: Subject: Re: svn commit: r372694 - in head/devel: . sigar From: Antoine Brodin To: Tom Judge Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Mon, 17 Nov 2014 22:13:28 -0000 On Mon, Nov 17, 2014 at 11:11 PM, Tom Judge wrote: > Author: tj > Date: Mon Nov 17 22:11:37 2014 > New Revision: 372694 > URL: https://svnweb.freebsd.org/changeset/ports/372694 > QAT: https://qat.redports.org/buildarchive/r372694/ > > Log: > The Sigar API provides a portable interface for gathering system information > such as: Hi, Duplicate of java/sigar? Cheers, Antoine > > * System memory, swap, cpu, load average, uptime, loginsi > * Per-process memory, cpu, credential info, state, arguments, environment, > open files > * File system detection and metrics > * Network interface detection, configuration info and metrics > * TCP and UDP connection tables > * Network route table > > This information is available in most operating systems, but each OS has their > own way(s) providing it. SIGAR provides developers with one API to access this > information regardless of the underlying platform. The core API is implemented > in pure C with bindings currently implemented for Java, Perl, Ruby, Python, > Erlang, PHP and C#. > > WWW: https://support.hyperic.com/display/SIGAR/Home > > Added: > head/devel/sigar/ > head/devel/sigar/Makefile (contents, props changed) > head/devel/sigar/distinfo (contents, props changed) > head/devel/sigar/pkg-descr (contents, props changed) > Modified: > head/devel/Makefile > > Modified: head/devel/Makefile > ============================================================================== > --- head/devel/Makefile Mon Nov 17 21:45:00 2014 (r372693) > +++ head/devel/Makefile Mon Nov 17 22:11:37 2014 (r372694) > @@ -4654,6 +4654,7 @@ > SUBDIR += shmap > SUBDIR += shtk > SUBDIR += shtool > + SUBDIR += sigar > SUBDIR += sigslot > SUBDIR += silc-toolkit > SUBDIR += silentbob > > Added: head/devel/sigar/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/sigar/Makefile Mon Nov 17 22:11:37 2014 (r372694) > @@ -0,0 +1,28 @@ > +# Created by: Tom Judge > +# $FreeBSD$ > + > +PORTNAME= sigar > +PORTVERSION= 1.7.3 > +CATEGORIES= devel > +MASTER_SITES= GH > + > +MAINTAINER= tj@FreeBSD.org > +COMMENT= Sigar system information API > + > +LICENSE= APACHE20 > +LICENSE_FILE= ${WRKSRC}/NOTICE > + > +USE_GITHUB= yes > +GH_ACCOUNT= amishHammer > +GH_COMMIT= b5af695 > +GH_TAGNAME= ${GH_COMMIT} > + > +WRKSRC= ${WRKDIR}/amishHammer-sigar-${GH_COMMIT} > +GNU_CONFIGURE= yes > +USE_AUTOTOOLS= autoconf automake aclocal libtoolize > +USES= libtool pkgconfig > + > +run-autotools: > + @(cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${SH} ./autogen.sh) > + > +.include > > Added: head/devel/sigar/distinfo > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/sigar/distinfo Mon Nov 17 22:11:37 2014 (r372694) > @@ -0,0 +1,2 @@ > +SHA256 (sigar-1.7.3.tar.gz) = 0a4ac4c53718d01f3d879e1b4630b4fbf88485b6d4f5b1180a46571c42b3f255 > +SIZE (sigar-1.7.3.tar.gz) = 1091801 > > Added: head/devel/sigar/pkg-descr > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/sigar/pkg-descr Mon Nov 17 22:11:37 2014 (r372694) > @@ -0,0 +1,18 @@ > +The Sigar API provides a portable interface for gathering system information > +such as: > + > +* System memory, swap, cpu, load average, uptime, loginsi > +* Per-process memory, cpu, credential info, state, arguments, environment, > + open files > +* File system detection and metrics > +* Network interface detection, configuration info and metrics > +* TCP and UDP connection tables > +* Network route table > + > +This information is available in most operating systems, but each OS has their > +own way(s) providing it. SIGAR provides developers with one API to access this > +information regardless of the underlying platform. The core API is implemented > +in pure C with bindings currently implemented for Java, Perl, Ruby, Python, > +Erlang, PHP and C#. > + > +WWW: https://support.hyperic.com/display/SIGAR/Home >