Date: Sat, 8 Apr 2017 10:33:39 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437999 - head/databases/py-apsw Message-ID: <201704081033.v38AXd4K094795@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sat Apr 8 10:33:39 2017 New Revision: 437999 URL: https://svnweb.freebsd.org/changeset/ports/437999 Log: Update to 3.17.0 - Allow concurrent installation (USE_PYTHON=concurrent) - Do not silence installation and test messages - Cosmetic change - Update pkg-descr Changes: https://github.com/rogerbinns/apsw/releases https://rogerbinns.github.io/apsw/changes.html Modified: head/databases/py-apsw/Makefile head/databases/py-apsw/distinfo head/databases/py-apsw/pkg-descr Modified: head/databases/py-apsw/Makefile ============================================================================== --- head/databases/py-apsw/Makefile Sat Apr 8 10:33:34 2017 (r437998) +++ head/databases/py-apsw/Makefile Sat Apr 8 10:33:39 2017 (r437999) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= apsw -PORTVERSION= 3.14.1 +PORTVERSION= 3.17.0 DISTVERSIONSUFFIX= -r1 CATEGORIES= databases python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,16 +13,16 @@ COMMENT= Another Python SQLite Wrapper LICENSE= ZLIB LICENSE_FILE= ${WRKSRC}/LICENSE -USE_GITHUB= yes -GH_ACCOUNT= rogerbinns - +USE_PYTHON= autoplist concurrent distutils USES= localbase python sqlite:3 -USE_PYTHON= distutils autoplist + +GH_ACCOUNT= rogerbinns +USE_GITHUB= yes post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/apsw.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/apsw.so do-test: - @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + cd ${WRKSRC}/ && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include <bsd.port.mk> Modified: head/databases/py-apsw/distinfo ============================================================================== --- head/databases/py-apsw/distinfo Sat Apr 8 10:33:34 2017 (r437998) +++ head/databases/py-apsw/distinfo Sat Apr 8 10:33:39 2017 (r437999) @@ -1,3 +1,3 @@ -TIMESTAMP = 1475531833 -SHA256 (rogerbinns-apsw-3.14.1-r1_GH0.tar.gz) = 9b3fc7665f9ff7ac35d2b03ceabe649bcfef5e07ff340d5f2a58957710a15a3f -SIZE (rogerbinns-apsw-3.14.1-r1_GH0.tar.gz) = 311486 +TIMESTAMP = 1491600848 +SHA256 (rogerbinns-apsw-3.17.0-r1_GH0.tar.gz) = ff408c39b62a7815fe9ed1b65542239f33a0d132e99e178dccd9c439278e35cc +SIZE (rogerbinns-apsw-3.17.0-r1_GH0.tar.gz) = 303641 Modified: head/databases/py-apsw/pkg-descr ============================================================================== --- head/databases/py-apsw/pkg-descr Sat Apr 8 10:33:34 2017 (r437998) +++ head/databases/py-apsw/pkg-descr Sat Apr 8 10:33:39 2017 (r437999) @@ -1,8 +1,7 @@ -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. +APSW provides an SQLite 3 wrapper that provides the thinnest layer over the +SQLite database library possible. Everything you can do from the SQLite C API, +you can do from Python. Although APSW looks vaguely similar to the PEP 249 +(DBAPI), it is not compliant with that API because instead it works the way +SQLite 3 does. WWW: https://rogerbinns.github.io/apsw/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704081033.v38AXd4K094795>