pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases/py-peewee



Module Name:    pkgsrc
Committed By:   fhajny
Date:           Wed Oct 26 14:28:16 UTC 2016

Modified Files:
        pkgsrc/databases/py-peewee: Makefile PLIST distinfo

Log Message:
Update databases/py-peewee to 2.8.5.

2.8.5

- Starting docs on sqliteq
- Use parentheses for compound select with MySQL.
- Remove "clean_prefetch_subquery" as I'm not sure why it exists in the
  first place.

2.8.4

- New playhouse extension module for working with SQLite in
  multi-threaded / concurrent environments. The new module is called
  playhouse.sqliteq and it works by serializing queries using a dedicated
  worker thread (or greenlet). The performance is quite good, hopefully
  this proves useful to someone besides myself! You can learn more by
  reading the sqliteq documentation.
- #1061 - @akrs patched a bug in TimestampField which affected the
  accuracy of sub-second timestamps (for resolution > 1).
- #1071, small python 3 fix.
- #1072, allow DeferredRelation to be used multiple times if there are
  multiple references to a given deferred model.
- #1073, fixed regression in the speedups module that caused SQL
  functions to always coerce return values, regardless of the coerce
  flag.
- #1083, another Python 3 issue - this time regarding the use of
  exc.message.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/py-peewee/Makefile \
    pkgsrc/databases/py-peewee/distinfo
cvs rdiff -u -r1.10 -r1.11 pkgsrc/databases/py-peewee/PLIST

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/py-peewee/Makefile
diff -u pkgsrc/databases/py-peewee/Makefile:1.13 pkgsrc/databases/py-peewee/Makefile:1.14
--- pkgsrc/databases/py-peewee/Makefile:1.13    Sat Sep 10 20:58:45 2016
+++ pkgsrc/databases/py-peewee/Makefile Wed Oct 26 14:28:16 2016
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2016/09/10 20:58:45 fhajny Exp $
+# $NetBSD: Makefile,v 1.14 2016/10/26 14:28:16 fhajny Exp $
 
-DISTNAME=      peewee-2.8.3
+DISTNAME=      peewee-2.8.5
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=coleifer/}
Index: pkgsrc/databases/py-peewee/distinfo
diff -u pkgsrc/databases/py-peewee/distinfo:1.13 pkgsrc/databases/py-peewee/distinfo:1.14
--- pkgsrc/databases/py-peewee/distinfo:1.13    Sat Sep 10 20:58:45 2016
+++ pkgsrc/databases/py-peewee/distinfo Wed Oct 26 14:28:16 2016
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.13 2016/09/10 20:58:45 fhajny Exp $
+$NetBSD: distinfo,v 1.14 2016/10/26 14:28:16 fhajny Exp $
 
-SHA1 (peewee-2.8.3.tar.gz) = 367efbc0df6784c3858ceef6966f9ca3b9b0cb92
-RMD160 (peewee-2.8.3.tar.gz) = 3f871cdb025a67e93528d3a01f39878e2c466580
-SHA512 (peewee-2.8.3.tar.gz) = 03a2a24acc12c024d9ffc2ccdc70e763e4879f65221b44cda7ee41083e85e8fa5ffa39227a20baa32368d6bd1f104621bb431740430ef6eb0457225fc78e76e4
-Size (peewee-2.8.3.tar.gz) = 639529 bytes
+SHA1 (peewee-2.8.5.tar.gz) = b3bc6b2c80897f02567a94c8dbf8b0e645faf843
+RMD160 (peewee-2.8.5.tar.gz) = 406c35612c56c65718d3212747aa3bc81b00857f
+SHA512 (peewee-2.8.5.tar.gz) = cdb7c4240844ff43ce92cf652e8bd8e5e6b0dae3bb29dbb035e6554aeabfcc9a6dacf96135fa6712a4f4f6d6e354cd8b79d68543fb3bba89a7434ac259eaf197
+Size (peewee-2.8.5.tar.gz) = 645471 bytes

Index: pkgsrc/databases/py-peewee/PLIST
diff -u pkgsrc/databases/py-peewee/PLIST:1.10 pkgsrc/databases/py-peewee/PLIST:1.11
--- pkgsrc/databases/py-peewee/PLIST:1.10       Fri May  6 09:45:09 2016
+++ pkgsrc/databases/py-peewee/PLIST    Wed Oct 26 14:28:16 2016
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2016/05/06 09:45:09 fhajny Exp $
+@comment $NetBSD: PLIST,v 1.11 2016/10/26 14:28:16 fhajny Exp $
 bin/pwiz.py
 ${PYSITELIB}/peewee.py
 ${PYSITELIB}/peewee.pyc
@@ -75,6 +75,9 @@ ${PYSITELIB}/playhouse/sqlite_ext.pyo
 ${PYSITELIB}/playhouse/sqlite_udf.py
 ${PYSITELIB}/playhouse/sqlite_udf.pyc
 ${PYSITELIB}/playhouse/sqlite_udf.pyo
+${PYSITELIB}/playhouse/sqliteq.py
+${PYSITELIB}/playhouse/sqliteq.pyc
+${PYSITELIB}/playhouse/sqliteq.pyo
 ${PYSITELIB}/playhouse/test_utils.py
 ${PYSITELIB}/playhouse/test_utils.pyc
 ${PYSITELIB}/playhouse/test_utils.pyo



Home | Main Index | Thread Index | Old Index