pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc/py-xmlschema py-xmlschema: updated to 1.6.4
details: https://anonhg.NetBSD.org/pkgsrc/rev/d6fdf8b807ff
branches: trunk
changeset: 454421:d6fdf8b807ff
user: adam <adam%pkgsrc.org@localhost>
date: Fri Jun 11 05:24:08 2021 +0000
description:
py-xmlschema: updated to 1.6.4
v1.6.4
* Add testing config for Python 3.10 (Tox and CI)
* Fix internal _PurePath class with Python 3.10
* Remove redundant xmlns="" declaration when encoding with lxml
v1.6.3
* Refactor normalize_url() using pathlib.PurePath
* Support UNC paths
* Fix API docs
diffstat:
textproc/py-xmlschema/Makefile | 4 ++--
textproc/py-xmlschema/distinfo | 12 ++++++------
textproc/py-xmlschema/patches/patch-setup.py | 14 +++++++-------
3 files changed, 15 insertions(+), 15 deletions(-)
diffs (55 lines):
diff -r b51027edcb73 -r d6fdf8b807ff textproc/py-xmlschema/Makefile
--- a/textproc/py-xmlschema/Makefile Fri Jun 11 05:19:05 2021 +0000
+++ b/textproc/py-xmlschema/Makefile Fri Jun 11 05:24:08 2021 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.25 2021/05/03 15:15:58 adam Exp $
+# $NetBSD: Makefile,v 1.26 2021/06/11 05:24:08 adam Exp $
-DISTNAME= xmlschema-1.6.2
+DISTNAME= xmlschema-1.6.4
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= textproc python
MASTER_SITES= ${MASTER_SITE_PYPI:=x/xmlschema/}
diff -r b51027edcb73 -r d6fdf8b807ff textproc/py-xmlschema/distinfo
--- a/textproc/py-xmlschema/distinfo Fri Jun 11 05:19:05 2021 +0000
+++ b/textproc/py-xmlschema/distinfo Fri Jun 11 05:24:08 2021 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.24 2021/05/03 15:15:58 adam Exp $
+$NetBSD: distinfo,v 1.25 2021/06/11 05:24:08 adam Exp $
-SHA1 (xmlschema-1.6.2.tar.gz) = 93de82f85edc910ae802106e3ad0ba3169ddc639
-RMD160 (xmlschema-1.6.2.tar.gz) = f407d6bafcd31a5d87b57bf0d8275b6694772b68
-SHA512 (xmlschema-1.6.2.tar.gz) = 5aaf022451fa069b2361af542d4d864995e8dae7d50f5e66a5d5567b4d8511bb46b5dcec68a780e89025ff02f5bbb6311c4fcd4fb17f6c24c0c02b00c6b4a341
-Size (xmlschema-1.6.2.tar.gz) = 367141 bytes
-SHA1 (patch-setup.py) = 33f441c48a538fde5156588c17cc6e8af1d692e6
+SHA1 (xmlschema-1.6.4.tar.gz) = 968b8b250adb86f7e5f27deb07ea104fa4170b6f
+RMD160 (xmlschema-1.6.4.tar.gz) = 1528201ae06f11cc05d93792482c57f387c308e9
+SHA512 (xmlschema-1.6.4.tar.gz) = 7e13d20a6add1cc5b6d0f732e672be3eeeb2f107fd2031cd5c22d1059d24b7d818c534817ea115d0c5f011727175bdcae71a0b8d55f1d6bd263a7e38286c26fc
+Size (xmlschema-1.6.4.tar.gz) = 369270 bytes
+SHA1 (patch-setup.py) = acfd8a0bcb39c7d35c5fcd62bfed643a81fe7516
diff -r b51027edcb73 -r d6fdf8b807ff textproc/py-xmlschema/patches/patch-setup.py
--- a/textproc/py-xmlschema/patches/patch-setup.py Fri Jun 11 05:19:05 2021 +0000
+++ b/textproc/py-xmlschema/patches/patch-setup.py Fri Jun 11 05:24:08 2021 +0000
@@ -1,15 +1,15 @@
-$NetBSD: patch-setup.py,v 1.2 2020/09/14 08:57:38 adam Exp $
+$NetBSD: patch-setup.py,v 1.3 2021/06/11 05:24:08 adam Exp $
Fix for Python 3.6.
---- setup.py.orig 2020-09-13 19:12:09.000000000 +0000
+--- setup.py.orig 2021-06-09 17:22:21.000000000 +0000
+++ setup.py
-@@ -10,7 +10,7 @@
- #
- from setuptools import setup, find_packages
+@@ -12,7 +12,7 @@ from setuptools import setup, find_packa
+ from pathlib import Path
--with open("README.rst") as readme:
-+with open("README.rst", encoding='utf-8') as readme:
+
+-with Path(__file__).parent.joinpath('README.rst').open() as readme:
++with Path(__file__).parent.joinpath('README.rst').open(encoding='utf-8') as readme:
long_description = readme.read()
Home |
Main Index |
Thread Index |
Old Index