From owner-svn-ports-head@freebsd.org Wed Sep 18 17:14:35 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id AE76F12352C; Wed, 18 Sep 2019 17:14:35 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46YRRb49Mjz4YZv; Wed, 18 Sep 2019 17:14:35 +0000 (UTC) (envelope-from kai@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6F3842DC; Wed, 18 Sep 2019 17:14:35 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8IHEZXg054650; Wed, 18 Sep 2019 17:14:35 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8IHEY6m054646; Wed, 18 Sep 2019 17:14:34 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201909181714.x8IHEY6m054646@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Wed, 18 Sep 2019 17:14:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512279 - in head/devel: . py-oci X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/devel: . py-oci X-SVN-Commit-Revision: 512279 X-SVN-Commit-Repository: ports 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.29 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: Wed, 18 Sep 2019 17:14:35 -0000 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 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 +# $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 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/