From owner-svn-ports-all@FreeBSD.ORG Thu Sep 12 11:44:07 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 66175D5B; Thu, 12 Sep 2013 11:44:07 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 53C042BD1; Thu, 12 Sep 2013 11:44:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8CBi7oJ075433; Thu, 12 Sep 2013 11:44:07 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8CBi6xI075428; Thu, 12 Sep 2013 11:44:06 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201309121144.r8CBi6xI075428@svn.freebsd.org> From: Guido Falsi Date: Thu, 12 Sep 2013 11:44:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327055 - in head/databases: . py-apsw 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.14 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, 12 Sep 2013 11:44:07 -0000 Author: madpilot Date: Thu Sep 12 11:44:05 2013 New Revision: 327055 URL: http://svnweb.freebsd.org/changeset/ports/327055 Log: APSW is a Python wrapper for the SQLite embedded relational database engine. In contrast to other wrappers such as pysqlite it focuses on being a minimal layer over SQLite attempting just to translate the complete SQLite API into Python. The documentation has a section on the differences between APSW and pysqlite. APSW supports CPython 2.3 onwards and CPython 3.1 onwards. PR: ports/181938 Submitted by: Rusty Nejdl Added: head/databases/py-apsw/ head/databases/py-apsw/Makefile (contents, props changed) head/databases/py-apsw/distinfo (contents, props changed) head/databases/py-apsw/pkg-descr (contents, props changed) head/databases/py-apsw/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Thu Sep 12 11:40:30 2013 (r327054) +++ head/databases/Makefile Thu Sep 12 11:44:05 2013 (r327055) @@ -727,6 +727,7 @@ SUBDIR += py-MySQLdb51 SUBDIR += py-MySQLdb55 SUBDIR += py-PyGreSQL + SUBDIR += py-apsw SUBDIR += py-bsddb SUBDIR += py-bsddb3 SUBDIR += py-carbon Added: head/databases/py-apsw/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-apsw/Makefile Thu Sep 12 11:44:05 2013 (r327055) @@ -0,0 +1,24 @@ +# Created by: Rusty Nejdl +# $FreeBSD$ + +PORTNAME= apsw +PORTVERSION= 3.8.0.2 +CATEGORIES= databases python +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME}-${PORTVERSION}-r1 + +MAINTAINER= rnejdl@ringofsaturn.com +COMMENT= APSW stands for Another Python SQLite Wrapper + +LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 + +PYDISTUTILS_PKGVERSION= ${PORTVERSION}_r1 +USE_PYTHON= yes +USE_PYDISTUTILS=yes +USE_ZIP= yes + +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +.include Added: head/databases/py-apsw/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-apsw/distinfo Thu Sep 12 11:44:05 2013 (r327055) @@ -0,0 +1,2 @@ +SHA256 (apsw-3.8.0.2-r1.zip) = f3da7dbc1c92b9962086de90d6c6ec5ce199ffcc9f4edca9f55ee62b27db61f0 +SIZE (apsw-3.8.0.2-r1.zip) = 662335 Added: head/databases/py-apsw/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-apsw/pkg-descr Thu Sep 12 11:44:05 2013 (r327055) @@ -0,0 +1,6 @@ +APSW is a Python wrapper for the SQLite embedded relational database +engine. In contrast to other wrappers such as pysqlite it focuses +on being a minimal layer over SQLite attempting just to translate +the complete SQLite API into Python. The documentation has a section +on the differences between APSW and pysqlite. APSW supports CPython +2.3 onwards and CPython 3.1 onwards. Added: head/databases/py-apsw/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-apsw/pkg-plist Thu Sep 12 11:44:05 2013 (r327055) @@ -0,0 +1 @@ +%%PYTHON_SITELIBDIR%%/apsw.so