From owner-svn-ports-head@freebsd.org Thu Aug 4 12:04:34 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A16FBAF1BF; Thu, 4 Aug 2016 12:04:34 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 B54B5128A; Thu, 4 Aug 2016 12:04:33 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u74C4Wj5007155; Thu, 4 Aug 2016 12:04:32 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u74C4WSh007151; Thu, 4 Aug 2016 12:04:32 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201608041204.u74C4WSh007151@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 4 Aug 2016 12:04:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419607 - in head/sysutils: . py-uptime 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.22 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: Thu, 04 Aug 2016 12:04:34 -0000 Author: koobs Date: Thu Aug 4 12:04:32 2016 New Revision: 419607 URL: https://svnweb.freebsd.org/changeset/ports/419607 Log: [NEW] sysutils/py-uptime: Cross-platform uptime library This module provides a cross-platform way to retrieve system uptime and boot time. See documentation for a full list of supported platforms (yours is likely one of them). WWW: https://github.com/Cairnarvon/uptime PR: 208560 Submitted by: Uros Added: head/sysutils/py-uptime/ head/sysutils/py-uptime/Makefile (contents, props changed) head/sysutils/py-uptime/distinfo (contents, props changed) head/sysutils/py-uptime/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Aug 4 10:24:57 2016 (r419606) +++ head/sysutils/Makefile Thu Aug 4 12:04:32 2016 (r419607) @@ -859,6 +859,7 @@ SUBDIR += py-stdiff SUBDIR += py-supervisor SUBDIR += py-tmuxp + SUBDIR += py-uptime SUBDIR += py-zdaemon SUBDIR += py-zfs SUBDIR += pydf Added: head/sysutils/py-uptime/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-uptime/Makefile Thu Aug 4 12:04:32 2016 (r419607) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= uptime +PORTVERSION= 3.0.1 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= uros@gruber.si +COMMENT= Cross-platform uptime library + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING.txt + +USES= python:2.5+ +USE_PYTHON= autoplist distutils + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/uptime/_posix.so + +.include Added: head/sysutils/py-uptime/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-uptime/distinfo Thu Aug 4 12:04:32 2016 (r419607) @@ -0,0 +1,3 @@ +TIMESTAMP = 1470309859 +SHA256 (uptime-3.0.1.tar.gz) = 7c300254775b807ce46e3dcbcda30aa3b9a204b9c57a7ac1e79ee6dbe3942973 +SIZE (uptime-3.0.1.tar.gz) = 6630 Added: head/sysutils/py-uptime/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-uptime/pkg-descr Thu Aug 4 12:04:32 2016 (r419607) @@ -0,0 +1,5 @@ +This module provides a cross-platform way to retrieve system uptime and boot +time. See documentation for a full list of supported platforms (yours is likely +one of them). + +WWW: https://github.com/Cairnarvon/uptime