pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/py-python-multipart



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Feb  5 12:57:01 UTC 2024

Modified Files:
        pkgsrc/www/py-python-multipart: Makefile PLIST distinfo

Log Message:
py-python-multipart: updated to 0.0.7

0.0.7
Refactor header option parser to use the standard library instead of a custom RegEx


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/www/py-python-multipart/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/py-python-multipart/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/py-python-multipart/distinfo

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

Modified files:

Index: pkgsrc/www/py-python-multipart/Makefile
diff -u pkgsrc/www/py-python-multipart/Makefile:1.6 pkgsrc/www/py-python-multipart/Makefile:1.7
--- pkgsrc/www/py-python-multipart/Makefile:1.6 Sat Oct 28 19:57:25 2023
+++ pkgsrc/www/py-python-multipart/Makefile     Mon Feb  5 12:57:01 2024
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2023/10/28 19:57:25 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2024/02/05 12:57:01 adam Exp $
 
-DISTNAME=      python_multipart-0.0.6
+DISTNAME=      python_multipart-0.0.7
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
-PKGREVISION=   1
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/python-multipart/}
 
@@ -12,7 +11,6 @@ COMMENT=      Streaming multipart parser for 
 LICENSE=       apache-2.0
 
 TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling-[0-9]*:../../devel/py-hatchling
-TEST_DEPENDS+= ${PYPKGPREFIX}-test>=7.2.0:../../devel/py-test
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=4.0.0:../../devel/py-test-cov
 TEST_DEPENDS+= ${PYPKGPREFIX}-yaml>=5.1:../../textproc/py-yaml
 
@@ -20,8 +18,5 @@ USE_LANGUAGES=        # none
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
-do-test:
-       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
-
 .include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/www/py-python-multipart/PLIST
diff -u pkgsrc/www/py-python-multipart/PLIST:1.3 pkgsrc/www/py-python-multipart/PLIST:1.4
--- pkgsrc/www/py-python-multipart/PLIST:1.3    Sat Oct 28 19:57:25 2023
+++ pkgsrc/www/py-python-multipart/PLIST        Mon Feb  5 12:57:01 2024
@@ -1,4 +1,8 @@
-@comment $NetBSD: PLIST,v 1.3 2023/10/28 19:57:25 wiz Exp $
+@comment $NetBSD: PLIST,v 1.4 2024/02/05 12:57:01 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE.txt
 ${PYSITELIB}/multipart/__init__.py
 ${PYSITELIB}/multipart/__init__.pyc
 ${PYSITELIB}/multipart/__init__.pyo
@@ -11,58 +15,3 @@ ${PYSITELIB}/multipart/exceptions.pyo
 ${PYSITELIB}/multipart/multipart.py
 ${PYSITELIB}/multipart/multipart.pyc
 ${PYSITELIB}/multipart/multipart.pyo
-${PYSITELIB}/multipart/tests/__init__.py
-${PYSITELIB}/multipart/tests/__init__.pyc
-${PYSITELIB}/multipart/tests/__init__.pyo
-${PYSITELIB}/multipart/tests/compat.py
-${PYSITELIB}/multipart/tests/compat.pyc
-${PYSITELIB}/multipart/tests/compat.pyo
-${PYSITELIB}/multipart/tests/test_data/http/CR_in_header.http
-${PYSITELIB}/multipart/tests/test_data/http/CR_in_header.yaml
-${PYSITELIB}/multipart/tests/test_data/http/CR_in_header_value.http
-${PYSITELIB}/multipart/tests/test_data/http/CR_in_header_value.yaml
-${PYSITELIB}/multipart/tests/test_data/http/almost_match_boundary.http
-${PYSITELIB}/multipart/tests/test_data/http/almost_match_boundary.yaml
-${PYSITELIB}/multipart/tests/test_data/http/almost_match_boundary_without_CR.http
-${PYSITELIB}/multipart/tests/test_data/http/almost_match_boundary_without_CR.yaml
-${PYSITELIB}/multipart/tests/test_data/http/almost_match_boundary_without_LF.http
-${PYSITELIB}/multipart/tests/test_data/http/almost_match_boundary_without_LF.yaml
-${PYSITELIB}/multipart/tests/test_data/http/almost_match_boundary_without_final_hyphen.http
-${PYSITELIB}/multipart/tests/test_data/http/almost_match_boundary_without_final_hyphen.yaml
-${PYSITELIB}/multipart/tests/test_data/http/bad_end_of_headers.http
-${PYSITELIB}/multipart/tests/test_data/http/bad_end_of_headers.yaml
-${PYSITELIB}/multipart/tests/test_data/http/bad_header_char.http
-${PYSITELIB}/multipart/tests/test_data/http/bad_header_char.yaml
-${PYSITELIB}/multipart/tests/test_data/http/bad_initial_boundary.http
-${PYSITELIB}/multipart/tests/test_data/http/bad_initial_boundary.yaml
-${PYSITELIB}/multipart/tests/test_data/http/base64_encoding.http
-${PYSITELIB}/multipart/tests/test_data/http/base64_encoding.yaml
-${PYSITELIB}/multipart/tests/test_data/http/empty_header.http
-${PYSITELIB}/multipart/tests/test_data/http/empty_header.yaml
-${PYSITELIB}/multipart/tests/test_data/http/multiple_fields.http
-${PYSITELIB}/multipart/tests/test_data/http/multiple_fields.yaml
-${PYSITELIB}/multipart/tests/test_data/http/multiple_files.http
-${PYSITELIB}/multipart/tests/test_data/http/multiple_files.yaml
-${PYSITELIB}/multipart/tests/test_data/http/quoted_printable_encoding.http
-${PYSITELIB}/multipart/tests/test_data/http/quoted_printable_encoding.yaml
-${PYSITELIB}/multipart/tests/test_data/http/single_field.http
-${PYSITELIB}/multipart/tests/test_data/http/single_field.yaml
-${PYSITELIB}/multipart/tests/test_data/http/single_field_blocks.http
-${PYSITELIB}/multipart/tests/test_data/http/single_field_blocks.yaml
-${PYSITELIB}/multipart/tests/test_data/http/single_field_longer.http
-${PYSITELIB}/multipart/tests/test_data/http/single_field_longer.yaml
-${PYSITELIB}/multipart/tests/test_data/http/single_field_single_file.http
-${PYSITELIB}/multipart/tests/test_data/http/single_field_single_file.yaml
-${PYSITELIB}/multipart/tests/test_data/http/single_field_with_leading_newlines.http
-${PYSITELIB}/multipart/tests/test_data/http/single_field_with_leading_newlines.yaml
-${PYSITELIB}/multipart/tests/test_data/http/single_file.http
-${PYSITELIB}/multipart/tests/test_data/http/single_file.yaml
-${PYSITELIB}/multipart/tests/test_data/http/utf8_filename.http
-${PYSITELIB}/multipart/tests/test_data/http/utf8_filename.yaml
-${PYSITELIB}/multipart/tests/test_multipart.py
-${PYSITELIB}/multipart/tests/test_multipart.pyc
-${PYSITELIB}/multipart/tests/test_multipart.pyo
-${PYSITELIB}/${WHEEL_INFODIR}/METADATA
-${PYSITELIB}/${WHEEL_INFODIR}/RECORD
-${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
-${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE.txt

Index: pkgsrc/www/py-python-multipart/distinfo
diff -u pkgsrc/www/py-python-multipart/distinfo:1.2 pkgsrc/www/py-python-multipart/distinfo:1.3
--- pkgsrc/www/py-python-multipart/distinfo:1.2 Mon Apr 17 12:34:40 2023
+++ pkgsrc/www/py-python-multipart/distinfo     Mon Feb  5 12:57:01 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2023/04/17 12:34:40 adam Exp $
+$NetBSD: distinfo,v 1.3 2024/02/05 12:57:01 adam Exp $
 
-BLAKE2s (python_multipart-0.0.6.tar.gz) = ef0fb782456f9d32e1145750d739b83de5b4051c9510f8c692cd86942dcac5dd
-SHA512 (python_multipart-0.0.6.tar.gz) = fad42688353ffd66530af36e1aab0ac596d9a748d64a4e4885d92d6c0d1dad4c434dc0f56003fe7fd0822fd9bb59699991543d982e0e44eb49455dd96733bc7d
-Size (python_multipart-0.0.6.tar.gz) = 31024 bytes
+BLAKE2s (python_multipart-0.0.7.tar.gz) = 7ea238e649b2274441e917d70be3d03901044813fb2ce0865ea74687d452cf33
+SHA512 (python_multipart-0.0.7.tar.gz) = 402a6858b030046ac61e7b04125310280231850e2c6deb426335416fe69dbbdbfe8fb9873a1a83301c88963e1345712d44f47a58273754cf6e3fcf23f45036a5
+Size (python_multipart-0.0.7.tar.gz) = 31129 bytes



Home | Main Index | Thread Index | Old Index