pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/py-X



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Jan 12 12:31:49 UTC 2026

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

Log Message:
py-X: updated to 0.17

0.17 (2025/11/02):
- Move metadata from setup.py to pyproject.toml
- graph modules:
  - enable log axis on negative values (either all values need to be positive
    or negative)
  - move the density parameter to the rater (with a deprecation warning in
    the axis)
  - limit subaxis range in bar and split axes to [0..1] except for epsilon=None
  - improve exception handling for invalid data in density style
  - add a new grid layer below filldata and paint axes grids there
  - support modification of x2, y2, etc. graph axes by keyword arguments
- Cleanup of pdfwriter and pdfextras
- Add support for fillattrs and trafos in UnicodeEngine
- various improvements to the documentation

0.16 (2022/10/16):
- graph module:
  - enable shortcut for passing arguments through graph components (axes,
    painters, etc.) by passing keyword arguments consisting of graph
    components separated by underscores.
- graph.axis.style:
  - Allow invalid values (e.g. None) in color values of density style.
- text module:
  - make alignment work with texlive 2020 (reported by Thomas Bending)
  - fix deprecation warning for isSet
- dvi module:
  - ignore the l3backend header special for dvips
- bitmap module:
  - fix bitmap palette data pdf output being bytes
- canvas module:
   - add clear() method to canvas class (suggested by Camilo Talero)
- t1 extension module:
   - adjust to int/Py_ssize_t change in python 3.10 (thanks to Michael J
     Gruber)
- graph.axis.texter:
  - rename multiplication_tex -> multiplicationtex and multiplication_unicode
    -> multiplicationunicode in default texter
- manual:
  - Remove deprecated code in colorname.py and gradientname.py
- the gallery has been moved away from sourceforge.net wiki to the PyX website.
  Contributions by pull requests are welcome.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/textproc/py-X/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/textproc/py-X/PLIST
cvs rdiff -u -r1.7 -r1.8 pkgsrc/textproc/py-X/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-X/Makefile
diff -u pkgsrc/textproc/py-X/Makefile:1.20 pkgsrc/textproc/py-X/Makefile:1.21
--- pkgsrc/textproc/py-X/Makefile:1.20  Mon Jan 10 21:51:09 2022
+++ pkgsrc/textproc/py-X/Makefile       Mon Jan 12 12:31:49 2026
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.20 2022/01/10 21:51:09 wiz Exp $
+# $NetBSD: Makefile,v 1.21 2026/01/12 12:31:49 adam Exp $
 
-DISTNAME=      PyX-0.15
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/Py//}
-PKGREVISION=   1
+DISTNAME=      pyx-0.17
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/pyx/X/}
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pyx/}
 
@@ -11,8 +10,9 @@ HOMEPAGE=     https://pyx-project.org/
 COMMENT=       Package for the creation of PostScript, PDF, and SVG files
 LICENSE=       gnu-gpl-v2 # or later
 
-DEPENDS+=      kpathsea-[0-9]*:../../print/kpathsea
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
 DEPENDS+=      dvipsk-[0-9]*:../../print/dvipsk
+DEPENDS+=      kpathsea-[0-9]*:../../print/kpathsea
 DEPENDS+=      tex-latex-bin-[0-9]*:../../print/tex-latex-bin
 DEPENDS+=      tex-tex-[0-9]*:../../print/tex-tex
 
@@ -22,7 +22,6 @@ CONF_FILES=   ${PYSITELIB}/pyx/data/pyxrc 
                ${PKG_SYSCONFDIR}/pyxrc
 
 PYTHON_SELF_CONFLICT=          yes
-PYTHON_VERSIONS_INCOMPATIBLE=  27
 
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/textproc/py-X/PLIST
diff -u pkgsrc/textproc/py-X/PLIST:1.11 pkgsrc/textproc/py-X/PLIST:1.12
--- pkgsrc/textproc/py-X/PLIST:1.11     Wed Jan 19 17:50:47 2022
+++ pkgsrc/textproc/py-X/PLIST  Mon Jan 12 12:31:49 2026
@@ -1,10 +1,11 @@
-@comment $NetBSD: PLIST,v 1.11 2022/01/19 17:50:47 wiz Exp $
+@comment $NetBSD: PLIST,v 1.12 2026/01/12 12:31:49 adam Exp $
 ${PLIST.py2x}${PYSITELIB}/${EGG_INFODIR}
-${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/AUTHORS
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/pyx/__init__.py
 ${PYSITELIB}/pyx/__init__.pyc
 ${PYSITELIB}/pyx/__init__.pyo
@@ -102,6 +103,7 @@ ${PYSITELIB}/pyx/epsfile.pyo
 ${PYSITELIB}/pyx/font/__init__.py
 ${PYSITELIB}/pyx/font/__init__.pyc
 ${PYSITELIB}/pyx/font/__init__.pyo
+${PYSITELIB}/pyx/font/_t1code.c
 ${PYSITELIB}/pyx/font/afmfile.py
 ${PYSITELIB}/pyx/font/afmfile.pyc
 ${PYSITELIB}/pyx/font/afmfile.pyo
@@ -195,6 +197,7 @@ ${PYSITELIB}/pyx/pdfwriter.pyo
 ${PYSITELIB}/pyx/pswriter.py
 ${PYSITELIB}/pyx/pswriter.pyc
 ${PYSITELIB}/pyx/pswriter.pyo
+${PYSITELIB}/pyx/pykpathsea.c
 ${PYSITELIB}/pyx/reader.py
 ${PYSITELIB}/pyx/reader.pyc
 ${PYSITELIB}/pyx/reader.pyo

Index: pkgsrc/textproc/py-X/distinfo
diff -u pkgsrc/textproc/py-X/distinfo:1.7 pkgsrc/textproc/py-X/distinfo:1.8
--- pkgsrc/textproc/py-X/distinfo:1.7   Tue Oct 26 11:22:59 2021
+++ pkgsrc/textproc/py-X/distinfo       Mon Jan 12 12:31:49 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2021/10/26 11:22:59 nia Exp $
+$NetBSD: distinfo,v 1.8 2026/01/12 12:31:49 adam Exp $
 
-BLAKE2s (PyX-0.15.tar.gz) = 7fb6d3c748f7832f50bf9e21a7c23821c7cfc3fbb44778669b4984300d10f239
-SHA512 (PyX-0.15.tar.gz) = c312b38b9f204b8a8832ab71da5be8c9afc417a095c8ccf242b3d3ebec63338a9d55abab4e548d1718abadf12ea7652cdad51731acdc8f6acd3d8608aa919919
-Size (PyX-0.15.tar.gz) = 2559840 bytes
+BLAKE2s (pyx-0.17.tar.gz) = d7f2bd607990305b3b48667c014f77d4d9336edee4d2e3a35b90f063d42ed827
+SHA512 (pyx-0.17.tar.gz) = 15f2f8564a34377be3bd77e24b3538d1ae9b20ecf0b196374e4193525f5c49677674a26c5544b3b1362fbc97ecd859934913470f9ba0acc5b1e4fd76a357570e
+Size (pyx-0.17.tar.gz) = 628935 bytes



Home | Main Index | Thread Index | Old Index