Date: Tue, 2 Jan 2018 10:38:22 +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: r457840 - in head/databases: . py-python-arango Message-ID: <201801021038.w02AcMEB088664@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Tue Jan 2 10:38:21 2018 New Revision: 457840 URL: https://svnweb.freebsd.org/changeset/ports/457840 Log: New port: databases/py-python-arango: Python driver for ArangoDB Submitted by: myself Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13733 Added: head/databases/py-python-arango/ head/databases/py-python-arango/Makefile (contents, props changed) head/databases/py-python-arango/distinfo (contents, props changed) head/databases/py-python-arango/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Tue Jan 2 09:22:30 2018 (r457839) +++ head/databases/Makefile Tue Jan 2 10:38:21 2018 (r457840) @@ -826,6 +826,7 @@ SUBDIR += py-pypuppetdb SUBDIR += py-pypuppetdb03 SUBDIR += py-pytc + SUBDIR += py-python-arango SUBDIR += py-python-memcached SUBDIR += py-python-rrdtool SUBDIR += py-python-sql Added: head/databases/py-python-arango/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-python-arango/Makefile Tue Jan 2 10:38:21 2018 (r457840) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= python-arango +DISTVERSION= 3.12.1 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python driver for ArangoDB + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +post-extract: + @${RM} -r ${WRKSRC}/tests # otherwise they are installed under the root directory and cause conflicts + +.include <bsd.port.mk> Added: head/databases/py-python-arango/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-python-arango/distinfo Tue Jan 2 10:38:21 2018 (r457840) @@ -0,0 +1,3 @@ +TIMESTAMP = 1514862633 +SHA256 (python-arango-3.12.1.tar.gz) = 9a092133a0951e23b1164c4055349500e99a7c5713926e277b376bef8c3fa2d8 +SIZE (python-arango-3.12.1.tar.gz) = 76402 Added: head/databases/py-python-arango/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-python-arango/pkg-descr Tue Jan 2 10:38:21 2018 (r457840) @@ -0,0 +1,8 @@ +A python driver for ArangoDB. + +Features: +* Clean, Pythonic interface +* Lightweight +* High ArangoDB REST API coverage + +WWW: https://github.com/joowani/python-arango
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801021038.w02AcMEB088664>