From owner-svn-ports-head@freebsd.org Tue Feb 21 07:41:49 2017 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 7F877CE70AA; Tue, 21 Feb 2017 07:41:49 +0000 (UTC) (envelope-from araujo@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 412941AFD; Tue, 21 Feb 2017 07:41:49 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1L7fm3L047959; Tue, 21 Feb 2017 07:41:48 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1L7fl0C047955; Tue, 21 Feb 2017 07:41:47 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201702210741.v1L7fl0C047955@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Tue, 21 Feb 2017 07:41:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434509 - in head/sysutils: . py-nomad 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.23 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: Tue, 21 Feb 2017 07:41:49 -0000 Author: araujo Date: Tue Feb 21 07:41:47 2017 New Revision: 434509 URL: https://svnweb.freebsd.org/changeset/ports/434509 Log: Nomad is a tool for managing a cluster of machines and running applications on them. Nomad abstracts away machines and the location of applications, and instead enables users to declare what they want to run and Nomad handles where they should run and how to run them. WWW: https://github.com/jrxFive/python-nomad PR: ports/215397 Submitted by: John Hixson Added: head/sysutils/py-nomad/ head/sysutils/py-nomad/Makefile (contents, props changed) head/sysutils/py-nomad/distinfo (contents, props changed) head/sysutils/py-nomad/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Feb 21 07:36:59 2017 (r434508) +++ head/sysutils/Makefile Tue Feb 21 07:41:47 2017 (r434509) @@ -863,6 +863,7 @@ SUBDIR += py-iocage SUBDIR += py-iowait SUBDIR += py-nagiosplugin + SUBDIR += py-nomad SUBDIR += py-pkginfo SUBDIR += py-ploy SUBDIR += py-ploy_ansible Added: head/sysutils/py-nomad/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-nomad/Makefile Tue Feb 21 07:41:47 2017 (r434509) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= py-nomad +PORTVERSION= 0.0.2 +CATEGORIES= sysutils + +MAINTAINER= jhixson@gmail.com +COMMENT= Python client for nomad + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.10.0:www/py3-requests +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.10.0:www/py3-requests + +USE_GITHUB= yes +GH_ACCOUNT= jrxFive +GH_PROJECT= python-nomad + +USES= python:3.3+ +USE_PYTHON= distutils autoplist + +.include Added: head/sysutils/py-nomad/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-nomad/distinfo Tue Feb 21 07:41:47 2017 (r434509) @@ -0,0 +1,3 @@ +TIMESTAMP = 1482101396 +SHA256 (jrxFive-python-nomad-0.0.2_GH0.tar.gz) = 3d8e58909c8a17c9f9cf3f5ee6d187fe5572b98dedb29a18d9789b92b7865354 +SIZE (jrxFive-python-nomad-0.0.2_GH0.tar.gz) = 13681 Added: head/sysutils/py-nomad/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-nomad/pkg-descr Tue Feb 21 07:41:47 2017 (r434509) @@ -0,0 +1,9 @@ +Python client for nomad (WWW: http://www.nomadproject.io) + +Nomad is a tool for managing a cluster of machines and running +applications on them. +Nomad abstracts away machines and the location of applications, +and instead enables users to declare what they want to run and +Nomad handles where they should run and how to run them. + +WWW: https://github.com/jrxFive/python-nomad