Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Apr 2018 16:32:07 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r466734 - in head/net: . py-softlayer
Message-ID:  <201804071632.w37GW7bU065653@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Apr  7 16:32:07 2018
New Revision: 466734
URL: https://svnweb.freebsd.org/changeset/ports/466734

Log:
  Add py-softlayer 5.4.3
  
  This library provides a simple Python client to interact with SoftLayer's
  XML-RPC API.
  
  A command-line interface is also included and can be used to manage various
  SoftLayer products and services.
  
  WWW: https://github.com/softlayer/softlayer-python

Added:
  head/net/py-softlayer/
  head/net/py-softlayer/Makefile   (contents, props changed)
  head/net/py-softlayer/distinfo   (contents, props changed)
  head/net/py-softlayer/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Sat Apr  7 16:32:02 2018	(r466733)
+++ head/net/Makefile	Sat Apr  7 16:32:07 2018	(r466734)
@@ -1082,6 +1082,7 @@
     SUBDIR += py-soap2py
     SUBDIR += py-soappy
     SUBDIR += py-socketio-client
+    SUBDIR += py-softlayer
     SUBDIR += py-speedtest-cli
     SUBDIR += py-sshuttle
     SUBDIR += py-stomp.py

Added: head/net/py-softlayer/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-softlayer/Makefile	Sat Apr  7 16:32:07 2018	(r466734)
@@ -0,0 +1,29 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	softlayer
+PORTVERSION=	5.4.3
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	SoftLayer-${PORTVERSION}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	SoftLayer API Python Client
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>=5:devel/py-click@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}prettytable>=0.7.0:devel/py-prettytable@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}prompt_toolkit>=0.53:devel/py-prompt_toolkit@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pygments>=2.0.0:textproc/py-pygments@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests>=2.18.4:www/py-requests@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=1.7.0:devel/py-six@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}urllib3>=1.22:net/py-urllib3@${FLAVOR}
+
+NO_ARCH=	yes
+USE_PYTHON=	autoplist concurrent distutils
+USES=		python
+
+.include <bsd.port.mk>

Added: head/net/py-softlayer/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-softlayer/distinfo	Sat Apr  7 16:32:07 2018	(r466734)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1523016550
+SHA256 (SoftLayer-5.4.3.tar.gz) = 7c4fdfb30ca22ae8096b1b3f03c34cac9e02082d28816a3fd55047a82ed7eb09
+SIZE (SoftLayer-5.4.3.tar.gz) = 253279

Added: head/net/py-softlayer/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-softlayer/pkg-descr	Sat Apr  7 16:32:07 2018	(r466734)
@@ -0,0 +1,7 @@
+This library provides a simple Python client to interact with SoftLayer's
+XML-RPC API.
+
+A command-line interface is also included and can be used to manage various
+SoftLayer products and services.
+
+WWW: https://github.com/softlayer/softlayer-python



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