From owner-svn-ports-all@freebsd.org Thu Dec 17 16:35:32 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2A66A4A7E8; Thu, 17 Dec 2015 16:35:31 +0000 (UTC) (envelope-from gblach@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 mx1.freebsd.org (Postfix) with ESMTPS id 9E9221BF1; Thu, 17 Dec 2015 16:35:31 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBHGZUpb015713; Thu, 17 Dec 2015 16:35:30 GMT (envelope-from gblach@FreeBSD.org) Received: (from gblach@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBHGZUSw015709; Thu, 17 Dec 2015 16:35:30 GMT (envelope-from gblach@FreeBSD.org) Message-Id: <201512171635.tBHGZUSw015709@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gblach set sender to gblach@FreeBSD.org using -f From: Grzegorz Blach Date: Thu, 17 Dec 2015 16:35:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403910 - in head/databases: . py-queries X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Dec 2015 16:35:32 -0000 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 +# $FreeBSD$ + +PORTNAME= queries +PORTVERSION= 1.8.1 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= gblach@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 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/