[packages/python-defusedxml] - updated to 0.6.0 - removed outdated entity_loop patch
qboosh
qboosh at pld-linux.org
Tue Oct 8 21:51:04 CEST 2019
commit e92c50702c8e1bfc7df450d7f9dc288b4e319826
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Tue Oct 8 21:54:20 2019 +0200
- updated to 0.6.0
- removed outdated entity_loop patch
python-defusedxml-entity_loop.patch | 38 ------------------------------------
python-defusedxml.spec | 39 +++++++++++++++++++++++--------------
2 files changed, 24 insertions(+), 53 deletions(-)
---
diff --git a/python-defusedxml.spec b/python-defusedxml.spec
index 9a17cb2..363576e 100644
--- a/python-defusedxml.spec
+++ b/python-defusedxml.spec
@@ -1,48 +1,59 @@
#
# Conditional build:
-%bcond_with tests # do perform tests (harmless fail with current python)
+%bcond_with tests # do perform tests (one test fails with python 2.7)
%bcond_without python2 # CPython 2.x module
%bcond_without python3 # CPython 3.x module
%define module defusedxml
%define pypi_name defusedxml
Summary: XML bomb protection for Python stdlib modules
+Summary(pl.UTF-8): Zabezpieczenie przed bombami XML dla modułów biblioteki standardowej Pythona
Name: python-%{module}
-Version: 0.5.0
-Release: 2
-License: PSF
+Version: 0.6.0
+Release: 1
+License: PSF v2
Group: Libraries/Python
-Source0: https://files.pythonhosted.org/packages/source/d/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
-# Source0-md5: 7ff1501366c6d1dcd2de8514dc2b755e
-Patch0: python-defusedxml-entity_loop.patch
-Patch1: python-defusedxml-format_strings.patch
-URL: https://pypi.python.org/pypi/defusedxml
-BuildRequires: rpmbuild(macros) >= 1.710
+#Source0Download: https://pypi.org/simple/defusedxml/
+Source0: https://files.pythonhosted.org/packages/source/d/defusedxml/%{pypi_name}-%{version}.tar.gz
+# Source0-md5: a59741f675c4cba649de40a99f732897
+Patch0: python-defusedxml-format_strings.patch
+URL: https://pypi.org/project/defusedxml/
+BuildRequires: rpmbuild(macros) >= 1.714
%if %{with python2}
+BuildRequires: python-modules >= 1:2.7
BuildRequires: python-setuptools
%endif
%if %{with python3}
-BuildRequires: python3-modules
+BuildRequires: python3-modules >= 1:3.5
BuildRequires: python3-setuptools
%endif
-Requires: python-modules
+Requires: python-modules >= 1:2.7
BuildArch: noarch
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
%description
XML bomb protection for Python stdlib modules.
+%description -l pl.UTF-8
+Zabezpieczenie przed bombami XML dla modułów biblioteki standardowej
+Pythona.
+
%package -n python3-%{module}
Summary: XML bomb protection for Python stdlib modules
+Summary(pl.UTF-8): Zabezpieczenie przed bombami XML dla modułów biblioteki standardowej Pythona
Group: Libraries/Python
+Requires: python3-modules >= 1:3.5
%description -n python3-%{module}
XML bomb protection for Python stdlib modules.
+%description -n python3-%{module} -l pl.UTF-8
+Zabezpieczenie przed bombami XML dla modułów biblioteki standardowej
+Pythona.
+
%prep
%setup -q -n %{module}-%{version}
%patch0 -p1
-%patch1 -p1
%build
%if %{with python2}
@@ -75,10 +86,8 @@ rm -rf $RPM_BUILD_ROOT
%doc README.txt CHANGES.txt
%dir %{py_sitescriptdir}/%{module}
%{py_sitescriptdir}/%{module}/*.py[co]
-%if "%{py_ver}" > "2.4"
%{py_sitescriptdir}/%{module}-%{version}-py*.egg-info
%endif
-%endif
%if %{with python3}
%files -n python3-%{module}
diff --git a/python-defusedxml-entity_loop.patch b/python-defusedxml-entity_loop.patch
deleted file mode 100644
index b961d7d..0000000
--- a/python-defusedxml-entity_loop.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff -ru defusedxml-0.4.1-orig/tests.py defusedxml-0.4.1/tests.py
---- defusedxml-0.4.1-orig/tests.py 2015-07-17 05:28:36.501213026 +0000
-+++ defusedxml-0.4.1/tests.py 2015-07-17 05:21:51.633843568 +0000
-@@ -133,11 +133,12 @@
- self.iterparse(self.xml_simple_ns)
-
- def test_entities_forbidden(self):
-- self.assertRaises(EntitiesForbidden, self.parse, self.xml_bomb)
-+ self.assertRaises((EntitiesForbidden, XMLSyntaxError),
-+ self.parse, self.xml_bomb)
- self.assertRaises(EntitiesForbidden, self.parse, self.xml_quadratic)
- self.assertRaises(EntitiesForbidden, self.parse, self.xml_external)
-
-- self.assertRaises(EntitiesForbidden, self.parseString,
-+ self.assertRaises((EntitiesForbidden, XMLSyntaxError), self.parseString,
- self.get_content(self.xml_bomb))
- self.assertRaises(EntitiesForbidden, self.parseString,
- self.get_content(self.xml_quadratic))
-@@ -157,8 +158,8 @@
- forbid_entities=False)
-
- def test_dtd_forbidden(self):
-- self.assertRaises(DTDForbidden, self.parse, self.xml_bomb,
-- forbid_dtd=True)
-+ self.assertRaises((DTDForbidden, XMLSyntaxError), self.parse,
-+ self.xml_bomb, forbid_dtd=True)
- self.assertRaises(DTDForbidden, self.parse, self.xml_quadratic,
- forbid_dtd=True)
- self.assertRaises(DTDForbidden, self.parse, self.xml_external,
-@@ -166,7 +167,7 @@
- self.assertRaises(DTDForbidden, self.parse, self.xml_dtd,
- forbid_dtd=True)
-
-- self.assertRaises(DTDForbidden, self.parseString,
-+ self.assertRaises((DTDForbidden, XMLSyntaxError), self.parseString,
- self.get_content(self.xml_bomb),
- forbid_dtd=True)
- self.assertRaises(DTDForbidden, self.parseString,
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python-defusedxml.git/commitdiff/e92c50702c8e1bfc7df450d7f9dc288b4e319826
More information about the pld-cvs-commit
mailing list