pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/py-xlsxwriter



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Feb 19 06:04:04 UTC 2024

Modified Files:
        pkgsrc/textproc/py-xlsxwriter: Makefile PLIST distinfo

Log Message:
py-xlsxwriter: updated to 3.2.0

Release 3.2.0 - February 17 2024
--------------------------------

This is the 10th anniversary release of XlsxWriter. Version 0.0.1 was released
on February 17 2013. Since they there have been 167 releases, 25,000 lines of
code, 1600 test cases, 700 pages of documentation, 71,000 users on GitHub, 50
contributors, 1000 closed issues and 150 million yearly downloads. Thanks to
everyone who has contributed code, given feedback or just used the library.

* Add :func:`embed_image()` worksheet method to embed images in cells. This is
  equivalent to Excel's menu item to insert an image using the option to "Place
  in Cell". It scales images automatically to the dimensions of the cell.

  This has been a frequently requested feature for people creating spreadsheets
  with images for product items. See also :ref:`ex_embedded_images`.

* Fix issue where a horizontal alignment format was ignored if indentation was
  also set.


To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 pkgsrc/textproc/py-xlsxwriter/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/textproc/py-xlsxwriter/PLIST
cvs rdiff -u -r1.68 -r1.69 pkgsrc/textproc/py-xlsxwriter/distinfo

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

Modified files:

Index: pkgsrc/textproc/py-xlsxwriter/Makefile
diff -u pkgsrc/textproc/py-xlsxwriter/Makefile:1.69 pkgsrc/textproc/py-xlsxwriter/Makefile:1.70
--- pkgsrc/textproc/py-xlsxwriter/Makefile:1.69 Mon Oct 23 11:56:05 2023
+++ pkgsrc/textproc/py-xlsxwriter/Makefile      Mon Feb 19 06:04:04 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.69 2023/10/23 11:56:05 adam Exp $
+# $NetBSD: Makefile,v 1.70 2024/02/19 06:04:04 adam Exp $
 
-DISTNAME=      XlsxWriter-3.1.9
+DISTNAME=      XlsxWriter-3.2.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:tl}
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=X/XlsxWriter/}
@@ -10,9 +10,12 @@ HOMEPAGE=    https://github.com/jmcnamara/X
 COMMENT=       Python module for creating Excel XLSX files
 LICENSE=       2-clause-bsd
 
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
+
 USE_LANGUAGES= # none
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/textproc/py-xlsxwriter/PLIST
diff -u pkgsrc/textproc/py-xlsxwriter/PLIST:1.6 pkgsrc/textproc/py-xlsxwriter/PLIST:1.7
--- pkgsrc/textproc/py-xlsxwriter/PLIST:1.6     Fri Nov 25 13:34:52 2022
+++ pkgsrc/textproc/py-xlsxwriter/PLIST Mon Feb 19 06:04:04 2024
@@ -1,9 +1,10 @@
-@comment $NetBSD: PLIST,v 1.6 2022/11/25 13:34:52 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2024/02/19 06:04:04 adam Exp $
 bin/vba_extract.py
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/xlsxwriter/__init__.py
 ${PYSITELIB}/xlsxwriter/__init__.pyc
 ${PYSITELIB}/xlsxwriter/__init__.pyo
@@ -73,6 +74,18 @@ ${PYSITELIB}/xlsxwriter/packager.pyo
 ${PYSITELIB}/xlsxwriter/relationships.py
 ${PYSITELIB}/xlsxwriter/relationships.pyc
 ${PYSITELIB}/xlsxwriter/relationships.pyo
+${PYSITELIB}/xlsxwriter/rich_value.py
+${PYSITELIB}/xlsxwriter/rich_value.pyc
+${PYSITELIB}/xlsxwriter/rich_value.pyo
+${PYSITELIB}/xlsxwriter/rich_value_rel.py
+${PYSITELIB}/xlsxwriter/rich_value_rel.pyc
+${PYSITELIB}/xlsxwriter/rich_value_rel.pyo
+${PYSITELIB}/xlsxwriter/rich_value_structure.py
+${PYSITELIB}/xlsxwriter/rich_value_structure.pyc
+${PYSITELIB}/xlsxwriter/rich_value_structure.pyo
+${PYSITELIB}/xlsxwriter/rich_value_types.py
+${PYSITELIB}/xlsxwriter/rich_value_types.pyc
+${PYSITELIB}/xlsxwriter/rich_value_types.pyo
 ${PYSITELIB}/xlsxwriter/shape.py
 ${PYSITELIB}/xlsxwriter/shape.pyc
 ${PYSITELIB}/xlsxwriter/shape.pyo

Index: pkgsrc/textproc/py-xlsxwriter/distinfo
diff -u pkgsrc/textproc/py-xlsxwriter/distinfo:1.68 pkgsrc/textproc/py-xlsxwriter/distinfo:1.69
--- pkgsrc/textproc/py-xlsxwriter/distinfo:1.68 Mon Oct 23 11:56:05 2023
+++ pkgsrc/textproc/py-xlsxwriter/distinfo      Mon Feb 19 06:04:04 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.68 2023/10/23 11:56:05 adam Exp $
+$NetBSD: distinfo,v 1.69 2024/02/19 06:04:04 adam Exp $
 
-BLAKE2s (XlsxWriter-3.1.9.tar.gz) = a33bf808f44fa4af24b355940d562406fbdb993d73c941d67d48b7371128763f
-SHA512 (XlsxWriter-3.1.9.tar.gz) = f5056a99c49c8e4bace8dfca6e9a0fff77cac07e0ac72c1e36db66d4f998f816026eadf73e2138ff068c2e27bc27e6d8b594dce36830a308158d9283c44f6644
-Size (XlsxWriter-3.1.9.tar.gz) = 272204 bytes
+BLAKE2s (XlsxWriter-3.2.0.tar.gz) = 4f97db951d5e9edb8184bdf2b5dd685fe96281fb0399662145a9e974f2b6d702
+SHA512 (XlsxWriter-3.2.0.tar.gz) = be0a31d23fc98dac20c1d8a0a52ad9a48536d2061956ea3620c1c9fdad1600c1d9e202998f3bbeafb1b4c00c2809af93d6ab19d1f2240714567973a363cd6e70
+Size (XlsxWriter-3.2.0.tar.gz) = 198732 bytes



Home | Main Index | Thread Index | Old Index