svn commit: r327055 - in head/databases: . py-apsw
Guido Falsi
madpilot at FreeBSD.org
Thu Sep 12 11:44:07 UTC 2013
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 <rnejdl at ringofsaturn.com>
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 at 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 <bsd.port.mk>
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
More information about the svn-ports-all
mailing list