Date: Wed, 18 Sep 2019 17:14:34 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512279 - in head/devel: . py-oci Message-ID: <201909181714.x8IHEY6m054646@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Wed Sep 18 17:14:34 2019 New Revision: 512279 URL: https://svnweb.freebsd.org/changeset/ports/512279 Log: [NEW PORT]: devel/py-oci The Python SDK enables one to write code to manage Oracle Cloud Infrastructure resources. Following services are supported: * Announcements, Audit, Budgets * Container Engine for Kubernetes * Compute Autoscaling/Work Requests * Content and Experience * Core Services (Networking, Compute, Block Volume) * Data Transfer, Database, DNS * Email Delivery, Events * File Storage, Functions * Health Checks, IAM (= Identity and Access Management) * Key Management * Limits, Load Balancing * Monitoring, Notifications * Object Storage, Quotas * Resource Manager, Search, Streaming * Web Application Acceleration and Security WWW: https://github.com/oracle/oci-python-sdk/ PR: 240056 Submitted by: Alessando Sagratini <ale_sagra@hotmail.com> Reviewed by: koobs Added: head/devel/py-oci/ head/devel/py-oci/Makefile (contents, props changed) head/devel/py-oci/distinfo (contents, props changed) head/devel/py-oci/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Sep 18 16:28:00 2019 (r512278) +++ head/devel/Makefile Wed Sep 18 17:14:34 2019 (r512279) @@ -4693,6 +4693,7 @@ SUBDIR += py-num2words SUBDIR += py-numba SUBDIR += py-ocempgui + SUBDIR += py-oci SUBDIR += py-odfpy SUBDIR += py-offtrac SUBDIR += py-olefile Added: head/devel/py-oci/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-oci/Makefile Wed Sep 18 17:14:34 2019 (r512279) @@ -0,0 +1,39 @@ +# Created by: Alessando Sagratini <ale_sagra@hotmail.com> +# $FreeBSD$ + +PORTNAME= oci +PORTVERSION= 2.5.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ale_sagra@hotmail.com +COMMENT= Python interface to Oracle Cloud Infrastructure + +LICENSE= APACHE20 UPL +LICENSE_COMB= dual +LICENSE_GROUPS_UPL= FSF GPL OSI +LICENSE_NAME_UPL= Universal Permissive License +LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE.txt +LICENSE_FILE_UPL= ${WRKSRC}/LICENSE.txt +LICENSE_PERMS_UPL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}configparser>=3.5.0b1:devel/py-configparser@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cryptography>=2.1.4:security/py-cryptography@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}openssl>=17.5.0:security/py-openssl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=2.5.3<3.0.0:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytz>=2016.10:devel/py-pytz@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +# The testsuite isn't available in the sdist through PyPI, yet. Switching to +# GitHub doesn't help either because the testsuite doesn't work outside +# virtualenvs at the moment. +# See also: https://github.com/oracle/oci-python-sdk/issues/164 +# do-test: + +.include <bsd.port.mk> Added: head/devel/py-oci/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-oci/distinfo Wed Sep 18 17:14:34 2019 (r512279) @@ -0,0 +1,3 @@ +TIMESTAMP = 1568821762 +SHA256 (oci-2.5.0.tar.gz) = 1af13744f9a7bb6b1ed2c098b31ff215190c4729000be42d687114088119dc0b +SIZE (oci-2.5.0.tar.gz) = 1433342 Added: head/devel/py-oci/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-oci/pkg-descr Wed Sep 18 17:14:34 2019 (r512279) @@ -0,0 +1,20 @@ +The Python SDK enables one to write code to manage Oracle Cloud Infrastructure +resources. Following services are supported: + +* Announcements, Audit, Budgets +* Container Engine for Kubernetes +* Compute Autoscaling/Work Requests +* Content and Experience +* Core Services (Networking, Compute, Block Volume) +* Data Transfer, Database, DNS +* Email Delivery, Events +* File Storage, Functions +* Health Checks, IAM (= Identity and Access Management) +* Key Management +* Limits, Load Balancing +* Monitoring, Notifications +* Object Storage, Quotas +* Resource Manager, Search, Streaming +* Web Application Acceleration and Security + +WWW: https://github.com/oracle/oci-python-sdk/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909181714.x8IHEY6m054646>