From owner-svn-ports-head@freebsd.org Thu Apr 19 20:52:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBB8BFA1825; Thu, 19 Apr 2018 20:52:42 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6EA987BF9E; Thu, 19 Apr 2018 20:52:42 +0000 (UTC) (envelope-from pizzamig@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 518846F08; Thu, 19 Apr 2018 20:52:42 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3JKqg8H029920; Thu, 19 Apr 2018 20:52:42 GMT (envelope-from pizzamig@FreeBSD.org) Received: (from pizzamig@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3JKqf7k029916; Thu, 19 Apr 2018 20:52:41 GMT (envelope-from pizzamig@FreeBSD.org) Message-Id: <201804192052.w3JKqf7k029916@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pizzamig set sender to pizzamig@FreeBSD.org using -f From: Luca Pizzamiglio Date: Thu, 19 Apr 2018 20:52:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467805 - in head/sysutils: . py-hpilo X-SVN-Group: ports-head X-SVN-Commit-Author: pizzamig X-SVN-Commit-Paths: in head/sysutils: . py-hpilo X-SVN-Commit-Revision: 467805 X-SVN-Commit-Repository: ports 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.25 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, 19 Apr 2018 20:52:43 -0000 Author: pizzamig Date: Thu Apr 19 20:52:41 2018 New Revision: 467805 URL: https://svnweb.freebsd.org/changeset/ports/467805 Log: sysutils/py-hpilo: Add python tool for HP iLO This port add a python library and a command-line tool to interact with the iLO, the management interface provided by HP Added: head/sysutils/py-hpilo/ head/sysutils/py-hpilo/Makefile (contents, props changed) head/sysutils/py-hpilo/distinfo (contents, props changed) head/sysutils/py-hpilo/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Apr 19 20:42:26 2018 (r467804) +++ head/sysutils/Makefile Thu Apr 19 20:52:41 2018 (r467805) @@ -944,6 +944,7 @@ SUBDIR += py-halite SUBDIR += py-hared SUBDIR += py-honcho + SUBDIR += py-hpilo SUBDIR += py-iowait SUBDIR += py-mqttwarn SUBDIR += py-nagiosplugin Added: head/sysutils/py-hpilo/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-hpilo/Makefile Thu Apr 19 20:52:41 2018 (r467805) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= hpilo +PORTVERSION= 4.2.1 +CATEGORIES= sysutils python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= pizzamig@FreeBSD.org +COMMENT= Python cli to interact with HP iLO management interface + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= python + +USE_GITHUB= yes +GH_ACCOUNT= seveas +GH_PROJECT= python-hpilo + +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/sysutils/py-hpilo/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-hpilo/distinfo Thu Apr 19 20:52:41 2018 (r467805) @@ -0,0 +1,3 @@ +TIMESTAMP = 1524045669 +SHA256 (seveas-python-hpilo-4.2.1_GH0.tar.gz) = d8b23978f51653dca517aed13b1956f0e6905df0c1c71c12f2635f8e524d6a44 +SIZE (seveas-python-hpilo-4.2.1_GH0.tar.gz) = 186937 Added: head/sysutils/py-hpilo/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-hpilo/pkg-descr Thu Apr 19 20:52:41 2018 (r467805) @@ -0,0 +1,4 @@ +This module provide a python library and command-line tool that make +easier to interact with HP iLO management interface. + +WWW: https://github.com/seveas/python-hpilo