From owner-svn-ports-head@freebsd.org Sat Apr 8 10:33:40 2017 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 EB394D30E41; Sat, 8 Apr 2017 10:33:40 +0000 (UTC) (envelope-from sunpoet@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 AAD61B9C; Sat, 8 Apr 2017 10:33:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v38AXduH094800; Sat, 8 Apr 2017 10:33:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v38AXd4K094795; Sat, 8 Apr 2017 10:33:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201704081033.v38AXd4K094795@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 8 Apr 2017 10:33:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437999 - 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-head@freebsd.org X-Mailman-Version: 2.1.23 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: Sat, 08 Apr 2017 10:33:41 -0000 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 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/