Date: Fri, 23 Mar 2018 20:01:36 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465401 - in head/devel: . py-minio py-minio/files Message-ID: <201803232001.w2NK1aas007939@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri Mar 23 20:01:36 2018 New Revision: 465401 URL: https://svnweb.freebsd.org/changeset/ports/465401 Log: New port: devel/py-minio: Minio library for Amazon S3 compatible cloud storage PR: 226877 Submitted by: jhixson@gmail.com Added: head/devel/py-minio/ head/devel/py-minio/Makefile (contents, props changed) head/devel/py-minio/distinfo (contents, props changed) head/devel/py-minio/files/ head/devel/py-minio/files/patch-setup.py (contents, props changed) head/devel/py-minio/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Mar 23 19:45:57 2018 (r465400) +++ head/devel/Makefile Fri Mar 23 20:01:36 2018 (r465401) @@ -4615,6 +4615,7 @@ SUBDIR += py-microversion-parse SUBDIR += py-mimeparse SUBDIR += py-minimongo + SUBDIR += py-minio SUBDIR += py-mock SUBDIR += py-mongoengine SUBDIR += py-mongokit Added: head/devel/py-minio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-minio/Makefile Fri Mar 23 20:01:36 2018 (r465401) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= minio +DISTVERSION= 3.0.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jhixson@gmail.com +COMMENT= Minio library for Amazon S3 compatible cloud storage + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}certifi>=0:security/py-certifi@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>0:devel/py-dateutil@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}urllib3>0:net/py-urllib3@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-minio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-minio/distinfo Fri Mar 23 20:01:36 2018 (r465401) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521833363 +SHA256 (minio-3.0.4.tar.gz) = 5d4d086726bb7800570a86a040c607793235e190299f0d18aa0d2277492f393b +SIZE (minio-3.0.4.tar.gz) = 42720 Added: head/devel/py-minio/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-minio/files/patch-setup.py Fri Mar 23 20:01:36 2018 (r465401) @@ -0,0 +1,11 @@ +--- setup.py.orig 2018-03-23 19:57:54 UTC ++++ setup.py +@@ -64,7 +64,7 @@ setup( + packages=packages, + install_requires=requires, + tests_require=tests_requires, +- setup_requires=['nose>=1.0'], ++ #setup_requires=['nose>=1.0'], + license='Apache License 2.0', + classifiers=[ + 'Development Status :: 5 - Production/Stable', Added: head/devel/py-minio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-minio/pkg-descr Fri Mar 23 20:01:36 2018 (r465401) @@ -0,0 +1,4 @@ +The Minio Python Client SDK provides simple APIs to access any Amazon +S3 compatible object storage server. + +WWW: https://github.com/minio/minio-py
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803232001.w2NK1aas007939>