pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun Nov  6 18:14:38 UTC 2022

Modified Files:
        pkgsrc/textproc: Makefile
Added Files:
        pkgsrc/textproc/py-jaraco.text: DESCR Makefile PLIST distinfo

Log Message:
py-jaraco.text: added version 3.10.0

This package provides handy routines for dealing with text, such as wrapping,
substitution, trimming, stripping, prefix and suffix removal, line
continuation, indentation, comment processing, identifier processing, values
parsing, case insensitive comparison, and more.


To generate a diff of this commit:
cvs rdiff -u -r1.1332 -r1.1333 pkgsrc/textproc/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/py-jaraco.text/DESCR \
    pkgsrc/textproc/py-jaraco.text/Makefile \
    pkgsrc/textproc/py-jaraco.text/PLIST \
    pkgsrc/textproc/py-jaraco.text/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/Makefile
diff -u pkgsrc/textproc/Makefile:1.1332 pkgsrc/textproc/Makefile:1.1333
--- pkgsrc/textproc/Makefile:1.1332     Thu Oct 27 15:20:24 2022
+++ pkgsrc/textproc/Makefile    Sun Nov  6 18:14:38 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1332 2022/10/27 15:20:24 nikita Exp $
+# $NetBSD: Makefile,v 1.1333 2022/11/06 18:14:38 adam Exp $
 #
 
 COMMENT=       Text processing utilities (does not include desktop publishing)
@@ -1029,6 +1029,7 @@ SUBDIR+=  py-isc_dhcp_leases
 SUBDIR+=       py-itemadapter
 SUBDIR+=       py-itemloaders
 SUBDIR+=       py-jade
+SUBDIR+=       py-jaraco.text
 SUBDIR+=       py-jellyfish
 SUBDIR+=       py-jinja2
 SUBDIR+=       py-jmespath

Added files:

Index: pkgsrc/textproc/py-jaraco.text/DESCR
diff -u /dev/null pkgsrc/textproc/py-jaraco.text/DESCR:1.1
--- /dev/null   Sun Nov  6 18:14:38 2022
+++ pkgsrc/textproc/py-jaraco.text/DESCR        Sun Nov  6 18:14:38 2022
@@ -0,0 +1,4 @@
+This package provides handy routines for dealing with text, such as wrapping,
+substitution, trimming, stripping, prefix and suffix removal, line
+continuation, indentation, comment processing, identifier processing, values
+parsing, case insensitive comparison, and more.
Index: pkgsrc/textproc/py-jaraco.text/Makefile
diff -u /dev/null pkgsrc/textproc/py-jaraco.text/Makefile:1.1
--- /dev/null   Sun Nov  6 18:14:38 2022
+++ pkgsrc/textproc/py-jaraco.text/Makefile     Sun Nov  6 18:14:38 2022
@@ -0,0 +1,28 @@
+# $NetBSD: Makefile,v 1.1 2022/11/06 18:14:38 adam Exp $
+
+DISTNAME=      jaraco.text-3.10.0
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=    textproc python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=j/jaraco.text/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/jaraco/jaraco.text
+COMMENT=       Module for text manipulation
+LICENSE=       mit
+
+DEPENDS+=      ${PYPKGPREFIX}-autocommand-[0-9]*:../../misc/py-autocommand
+DEPENDS+=      ${PYPKGPREFIX}-jaraco.context>=4.1:../../devel/py-jaraco.context
+DEPENDS+=      ${PYPKGPREFIX}-jaraco.functools-[0-9]*:../../devel/py-jaraco.functools
+DEPENDS+=      ${PYPKGPREFIX}-inflect-[0-9]*:../../lang/py-inflect
+DEPENDS+=      ${PYPKGPREFIX}-more-itertools-[0-9]*:../../devel/py-more-itertools
+
+USE_LANGUAGES= # none
+
+PYTHON_VERSIONS_INCOMPATIBLE=  27
+.include "../../lang/python/pyversion.mk"
+.if ${_PYTHON_VERSION} == 38
+DEPENDS+=      ${PYPKGPREFIX}-importlib-resources-[0-9]*:../../devel/py-importlib-resources
+.endif
+
+.include "../../lang/python/wheel.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/textproc/py-jaraco.text/PLIST
diff -u /dev/null pkgsrc/textproc/py-jaraco.text/PLIST:1.1
--- /dev/null   Sun Nov  6 18:14:38 2022
+++ pkgsrc/textproc/py-jaraco.text/PLIST        Sun Nov  6 18:14:38 2022
@@ -0,0 +1,20 @@
+@comment $NetBSD: PLIST,v 1.1 2022/11/06 18:14:38 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
+${PYSITELIB}/jaraco/text/Lorem ipsum.txt
+${PYSITELIB}/jaraco/text/__init__.py
+${PYSITELIB}/jaraco/text/__init__.pyc
+${PYSITELIB}/jaraco/text/layouts.py
+${PYSITELIB}/jaraco/text/layouts.pyc
+${PYSITELIB}/jaraco/text/show-newlines.py
+${PYSITELIB}/jaraco/text/show-newlines.pyc
+${PYSITELIB}/jaraco/text/to-dvorak.py
+${PYSITELIB}/jaraco/text/to-dvorak.pyc
+${PYSITELIB}/jaraco/text/to-qwerty.py
+${PYSITELIB}/jaraco/text/to-qwerty.pyc
Index: pkgsrc/textproc/py-jaraco.text/distinfo
diff -u /dev/null pkgsrc/textproc/py-jaraco.text/distinfo:1.1
--- /dev/null   Sun Nov  6 18:14:38 2022
+++ pkgsrc/textproc/py-jaraco.text/distinfo     Sun Nov  6 18:14:38 2022
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2022/11/06 18:14:38 adam Exp $
+
+BLAKE2s (jaraco.text-3.10.0.tar.gz) = 64abaca053f5264f3ce067bedf88a07a0ce8ed59d7ad54a251087977550672b4
+SHA512 (jaraco.text-3.10.0.tar.gz) = 1c83dc9247e8c55ed20d8768abcb66c3fb4cdfb9ade3744f3d3c3e705b94e376c7b44fdfe242189001d69fbf28fdb5601ff33b1874495b3c2ad9bdd781265f43
+Size (jaraco.text-3.10.0.tar.gz) = 15588 bytes



Home | Main Index | Thread Index | Old Index