Received: by mail.netbsd.org (Postfix, from userid 605) id B712284D4C; Sun, 29 Dec 2019 16:54:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3E4C184CD5 for ; Sun, 29 Dec 2019 16:54:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id TmDlv29ioA5u for ; Sun, 29 Dec 2019 16:54:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B375184C2B for ; Sun, 29 Dec 2019 16:54:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B1244FA97; Sun, 29 Dec 2019 16:54:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1577638470173390" MIME-Version: 1.0 Date: Sun, 29 Dec 2019 16:54:30 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-xlsxwriter To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191229165430.B1244FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1577638470173390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Dec 29 16:54:30 UTC 2019 Modified Files: pkgsrc/textproc/py-xlsxwriter: Makefile distinfo Log Message: py-xlsxwriter: updated to 1.2.7 Release 1.2.7: * Fix for duplicate images being copied to an XlsxWriter file. Excel uses an optimization where it only stores one copy of a repeated/duplicate image in a workbook. XlsxWriter didn't do this which meant that the file size would increase when then was a large number of repeated images. This release fixes that issue and replicates Excel's behavior. * Added documentation on :ref:`num_format_categories` and :ref:`num_format_locale`. * Added note to :func:`protect()` about how it is possible to encrypt an XlsxWriter file using a third party, cross platform, open source tool called `msoffice-crypt `_. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 pkgsrc/textproc/py-xlsxwriter/Makefile cvs rdiff -u -r1.34 -r1.35 pkgsrc/textproc/py-xlsxwriter/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1577638470173390 Content-Disposition: inline Content-Length: 1756 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-xlsxwriter/Makefile diff -u pkgsrc/textproc/py-xlsxwriter/Makefile:1.36 pkgsrc/textproc/py-xlsxwriter/Makefile:1.37 --- pkgsrc/textproc/py-xlsxwriter/Makefile:1.36 Wed Nov 20 11:31:25 2019 +++ pkgsrc/textproc/py-xlsxwriter/Makefile Sun Dec 29 16:54:30 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.36 2019/11/20 11:31:25 adam Exp $ +# $NetBSD: Makefile,v 1.37 2019/12/29 16:54:30 adam Exp $ -DISTNAME= XlsxWriter-1.2.6 +DISTNAME= XlsxWriter-1.2.7 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=X/XlsxWriter/} Index: pkgsrc/textproc/py-xlsxwriter/distinfo diff -u pkgsrc/textproc/py-xlsxwriter/distinfo:1.34 pkgsrc/textproc/py-xlsxwriter/distinfo:1.35 --- pkgsrc/textproc/py-xlsxwriter/distinfo:1.34 Wed Nov 20 11:31:25 2019 +++ pkgsrc/textproc/py-xlsxwriter/distinfo Sun Dec 29 16:54:30 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.34 2019/11/20 11:31:25 adam Exp $ +$NetBSD: distinfo,v 1.35 2019/12/29 16:54:30 adam Exp $ -SHA1 (XlsxWriter-1.2.6.tar.gz) = 1a5a429b848bd130ad54060c6de1c5658709b9b5 -RMD160 (XlsxWriter-1.2.6.tar.gz) = e6174298f5aff7690d9c41b024517a4ad1334794 -SHA512 (XlsxWriter-1.2.6.tar.gz) = e2743d4b8147558d15e901772b93e52abb1c35664360a16d25cb040593143df58cc997ad5aab52711885d2ed51a6566377f955c358573dbb8510f68e8126cd4a -Size (XlsxWriter-1.2.6.tar.gz) = 258550 bytes +SHA1 (XlsxWriter-1.2.7.tar.gz) = 33734e7cde2d929a21d4698c343be9bd1b802e8c +RMD160 (XlsxWriter-1.2.7.tar.gz) = d7ad336031c08997c7b8f05f9ae1e04d3deb8b0d +SHA512 (XlsxWriter-1.2.7.tar.gz) = 4c3fe77d44b708be2e7dcc78c9fe948fd2e74dc50ce0aebd09faa1b20d44ee5d4fa51a1d6745758dd02d6f8ac4d4376b53d34c49774635a040477318c57fad5c +Size (XlsxWriter-1.2.7.tar.gz) = 251563 bytes --_----------=_1577638470173390--