svn commit: r403910 - in head/databases: . py-queries

Grzegorz Blach gblach at FreeBSD.org
Thu Dec 17 16:35:32 UTC 2015


Author: gblach
Date: Thu Dec 17 16:35:30 2015
New Revision: 403910
URL: https://svnweb.freebsd.org/changeset/ports/403910

Log:
  Add new port: databases/py-queries
  
  Queries is a BSD licensed opinionated wrapper of the psycopg2 library
  for interacting with PostgreSQL.

Added:
  head/databases/py-queries/
  head/databases/py-queries/Makefile   (contents, props changed)
  head/databases/py-queries/distinfo   (contents, props changed)
  head/databases/py-queries/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Thu Dec 17 16:29:22 2015	(r403909)
+++ head/databases/Makefile	Thu Dec 17 16:35:30 2015	(r403910)
@@ -764,6 +764,7 @@
     SUBDIR += py-python-sql
     SUBDIR += py-qt4-sql
     SUBDIR += py-qt5-sql
+    SUBDIR += py-queries
     SUBDIR += py-redis
     SUBDIR += py-riak
     SUBDIR += py-rrdtool_lgpl

Added: head/databases/py-queries/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-queries/Makefile	Thu Dec 17 16:35:30 2015	(r403910)
@@ -0,0 +1,21 @@
+# Created by: Grzegorz Blach <gblach at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	queries
+PORTVERSION=	1.8.1
+CATEGORIES=	databases python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	gblach at FreeBSD.org
+COMMENT=	Simplified PostgreSQL client built upon Psycopg2
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILES=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}psycopg2>=2.5.1:${PORTSDIR}/databases/py-psycopg2
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/databases/py-queries/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-queries/distinfo	Thu Dec 17 16:35:30 2015	(r403910)
@@ -0,0 +1,2 @@
+SHA256 (queries-1.8.1.tar.gz) = 657601f3e1e0b09df41b8ed30022427dba5583cd00d1a7a721c23e9334ce10fa
+SIZE (queries-1.8.1.tar.gz) = 16687

Added: head/databases/py-queries/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-queries/pkg-descr	Thu Dec 17 16:35:30 2015	(r403910)
@@ -0,0 +1,10 @@
+Queries is a BSD licensed opinionated wrapper of the psycopg2 library for
+interacting with PostgreSQL.
+
+The popular psycopg2 package is a full-featured python client. Unfortunately
+as a developer, you're often repeating the same steps to get started with
+your applications that use it. Queries aims to reduce the complexity of
+psycopg2 while adding additional features to make writing PostgreSQL client
+applications both fast and easy.
+
+WWW: https://queries.readthedocs.org/en/latest/


More information about the svn-ports-head mailing list