From owner-svn-ports-head@freebsd.org Thu Nov 5 21:11:52 2015 Return-Path: Delivered-To: svn-ports-head@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 661CAA272C6; Thu, 5 Nov 2015 21:11:52 +0000 (UTC) (envelope-from pawel@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 18BE21E57; Thu, 5 Nov 2015 21:11:52 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tA5LBpKI032794; Thu, 5 Nov 2015 21:11:51 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tA5LBoM5032790; Thu, 5 Nov 2015 21:11:50 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201511052111.tA5LBoM5032790@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Thu, 5 Nov 2015 21:11:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400870 - in head/databases: . py-oursql X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Nov 2015 21:11:52 -0000 Author: pawel Date: Thu Nov 5 21:11:50 2015 New Revision: 400870 URL: https://svnweb.freebsd.org/changeset/ports/400870 Log: oursql is a set of MySQL bindings for python 2.4+ with a focus on wrapping the MYSQL_STMT API to provide real parameterization and real server-side cursors. MySQL 4.1.2 or better is required. WWW: https://launchpad.net/oursql PR: 202915 Submitted by: Yuri Victorovich Added: head/databases/py-oursql/ head/databases/py-oursql/Makefile (contents, props changed) head/databases/py-oursql/distinfo (contents, props changed) head/databases/py-oursql/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Thu Nov 5 21:00:24 2015 (r400869) +++ head/databases/Makefile Thu Nov 5 21:11:50 2015 (r400870) @@ -745,6 +745,7 @@ SUBDIR += py-mysql2pgsql SUBDIR += py-odbc SUBDIR += py-oops + SUBDIR += py-oursql SUBDIR += py-peewee SUBDIR += py-pg8000 SUBDIR += py-pg_pqueue Added: head/databases/py-oursql/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-oursql/Makefile Thu Nov 5 21:11:50 2015 (r400870) @@ -0,0 +1,19 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= oursql +PORTVERSION= 0.9.3.1 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= MySQL bindings for python + +LICENSE= BSD2CLAUSE + +USES= python +USE_MYSQL= client +USE_PYTHON= autoplist distutils + +.include Added: head/databases/py-oursql/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-oursql/distinfo Thu Nov 5 21:11:50 2015 (r400870) @@ -0,0 +1,2 @@ +SHA256 (oursql-0.9.3.1.tar.gz) = 260d7101ffda97b1aeda3260d88233f769288a79ad2041f3fc9efee3a9f64aca +SIZE (oursql-0.9.3.1.tar.gz) = 164715 Added: head/databases/py-oursql/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-oursql/pkg-descr Thu Nov 5 21:11:50 2015 (r400870) @@ -0,0 +1,5 @@ +oursql is a set of MySQL bindings for python 2.4+ with a focus +on wrapping the MYSQL_STMT API to provide real parameterization +and real server-side cursors. MySQL 4.1.2 or better is required. + +WWW: https://launchpad.net/oursql