mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
b5f9710296
* Support for etags on results of the List Objects API in the Object Storage service * Support for OCIDs on buckets in the Object Storage service * Support for content-disposition and cache-control headers on objects in the Object Storage service * Support for recovering deleted compartments in the Identity service * Support for sharing volumes across multiple instances in the Block Storage service * Support for connect harnesses and stream pools in the Streaming service * Support for associating file storage mount targets with network security groups in the File Storage service * Support for calling Oracle Cloud Infrastructure services in the uk-gov-london-1 region * Add default connection timeout(10s) and read timeout(60s) for Python SDK client * Add contents table to client documentation * Fix the issue of the second style of pagination PR: 242572 Submitted by: maintainer Relnotes: https://github.com/oracle/oci-python-sdk/releases/tag/v2.7.1
40 lines
1.4 KiB
Makefile
40 lines
1.4 KiB
Makefile
# Created by: Alessando Sagratini <ale_sagra@hotmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= oci
|
|
PORTVERSION= 2.7.1
|
|
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>
|