Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Feb 2017 07:41:47 +0000 (UTC)
From:      Marcelo Araujo <araujo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r434509 - in head/sysutils: . py-nomad
Message-ID:  <201702210741.v1L7fl0C047955@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <jhixson@gmail.com>

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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702210741.v1L7fl0C047955>