Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 15 Jun 2019 13:33:27 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r504243 - in head/devel: . py-aws-sam-translator py-aws-sam-translator/files
Message-ID:  <201906151333.x5FDXRKI019659@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbaio
Date: Sat Jun 15 13:33:27 2019
New Revision: 504243
URL: https://svnweb.freebsd.org/changeset/ports/504243

Log:
  Add devel/py-aws-sam-translator
  
  AWS SAM Translator is a library that transform SAM templates into AWS
  CloudFormation templates.
  
  You can use SAM to define serverless applications in simple and clean syntax.
  
  WWW: https://pypi.org/project/aws-sam-translator/
  
  PR:		238533
  Submitted by:	nork@ninth-nine.com

Added:
  head/devel/py-aws-sam-translator/
  head/devel/py-aws-sam-translator/Makefile   (contents, props changed)
  head/devel/py-aws-sam-translator/distinfo   (contents, props changed)
  head/devel/py-aws-sam-translator/files/
  head/devel/py-aws-sam-translator/files/patch-requirements_base.txt   (contents, props changed)
  head/devel/py-aws-sam-translator/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jun 15 12:59:24 2019	(r504242)
+++ head/devel/Makefile	Sat Jun 15 13:33:27 2019	(r504243)
@@ -4111,6 +4111,7 @@
     SUBDIR += py-attrs
     SUBDIR += py-automaton
     SUBDIR += py-avro
+    SUBDIR += py-aws-sam-translator
     SUBDIR += py-aws-xray-sdk
     SUBDIR += py-azure-batch
     SUBDIR += py-azure-datalake-store

Added: head/devel/py-aws-sam-translator/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-aws-sam-translator/Makefile	Sat Jun 15 13:33:27 2019	(r504243)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	aws-sam-translator
+PORTVERSION=	1.11.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	nork@ninth-nine.com
+COMMENT=	Library that transform SAM templates into AWS CloudFormation templates
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}boto3>=1.5:www/py-boto3@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}jsonschema>=2.6:devel/py-jsonschema@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=1.11:devel/py-six@${PY_FLAVOR} \
+		${PY_ENUM34}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-aws-sam-translator/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-aws-sam-translator/distinfo	Sat Jun 15 13:33:27 2019	(r504243)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1560602724
+SHA256 (aws-sam-translator-1.11.0.tar.gz) = db872c43bdfbbae9fc8c9201e6a7aeb9a661cda116a94708ab0577b46a38b962
+SIZE (aws-sam-translator-1.11.0.tar.gz) = 96492

Added: head/devel/py-aws-sam-translator/files/patch-requirements_base.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-aws-sam-translator/files/patch-requirements_base.txt	Sat Jun 15 13:33:27 2019	(r504243)
@@ -0,0 +1,11 @@
+https://github.com/awslabs/serverless-application-model/commit/a01fae53e1ab3140b2b6ee146c3ee57b14d5b1f0
+
+--- requirements/base.txt.orig	2019-06-15 12:53:28 UTC
++++ requirements/base.txt
+@@ -1,5 +1,5 @@
+ boto3~=1.5
+ enum34~=1.1; python_version<"3.4"
+-jsonschema~=2.6
++jsonschema~=3.0
+ six~=1.11
+ 

Added: head/devel/py-aws-sam-translator/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-aws-sam-translator/pkg-descr	Sat Jun 15 13:33:27 2019	(r504243)
@@ -0,0 +1,6 @@
+AWS SAM Translator is a library that transform SAM templates into AWS
+CloudFormation templates.
+
+You can use SAM to define serverless applications in simple and clean syntax.
+
+WWW: https://pypi.org/project/aws-sam-translator/



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