From owner-svn-ports-all@FreeBSD.ORG Fri Aug 8 01:19:08 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C3CDC6D2 for ; Fri, 8 Aug 2014 01:19:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98DDA21A1 for ; Fri, 8 Aug 2014 01:19:08 +0000 (UTC) Received: from wg (uid 1317) (envelope-from wg@FreeBSD.org) id 2ba5 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Fri, 08 Aug 2014 01:19:07 +0000 From: William Grzybowski Date: Fri, 8 Aug 2014 01:19:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364335 - in head/sysutils: . py-power X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e4258c.2ba5.173fcfd9@svn.freebsd.org> X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 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: Fri, 08 Aug 2014 01:19:08 -0000 Author: wg Date: Fri Aug 8 01:19:07 2014 New Revision: 364335 URL: http://svnweb.freebsd.org/changeset/ports/364335 QAT: https://qat.redports.org/buildarchive/r364335/ Log: sysutils/py-power Python library that allows you get current power source type (AC, Battery or UPS), warning level (none, <22%, <10min) and remaining minutes. You can also observe changes of power source and remaining time. WWW: https://github.com/Kentzo/Power PR: 192494 Submitted by: cederom tlen pl Added: head/sysutils/py-power/ head/sysutils/py-power/Makefile (contents, props changed) head/sysutils/py-power/distinfo (contents, props changed) head/sysutils/py-power/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Aug 7 23:58:42 2014 (r364334) +++ head/sysutils/Makefile Fri Aug 8 01:19:07 2014 (r364335) @@ -742,6 +742,7 @@ SUBDIR += py-ploy_ezjail SUBDIR += py-ploy_fabric SUBDIR += py-plumbum + SUBDIR += py-power SUBDIR += py-psutil SUBDIR += py-psutil121 SUBDIR += py-pytsk Added: head/sysutils/py-power/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-power/Makefile Fri Aug 8 01:19:07 2014 (r364335) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= power +PORTVERSION= 1.3 +CATEGORIES= sysutils python +MASTER_SITES= https://github.com/Kentzo/Power/releases/download/v${PORTVERSION}/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= cederom@tlen.pl +COMMENT= Cross-platform system power status information for Python + +LICENSE= MIT + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/sysutils/py-power/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-power/distinfo Fri Aug 8 01:19:07 2014 (r364335) @@ -0,0 +1,2 @@ +SHA256 (power-1.3.tar.gz) = 0e4bcf083f6f7ec1568ed1db552f7a922e0ef99259e7b04177c3027cfb7014c0 +SIZE (power-1.3.tar.gz) = 9615 Added: head/sysutils/py-power/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-power/pkg-descr Fri Aug 8 01:19:07 2014 (r364335) @@ -0,0 +1,5 @@ +Python library that allows you get current power source type (AC, Battery or +UPS), warning level (none, <22%, <10min) and remaining minutes. +You can also observe changes of power source and remaining time. + +WWW: https://github.com/Kentzo/Power