[packages/python3-xmltodict] Up to 0.14.2
arekm
arekm at pld-linux.org
Mon Mar 17 16:48:14 CET 2025
commit 3232727bd9fc70da75087f63a0bc1ba56ad7736a
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date: Mon Mar 17 16:13:58 2025 +0100
Up to 0.14.2
python-xmltodict.spec | 112 -------------------------------------------------
python3-xmltodict.spec | 58 +++++++++++++++++++++++++
2 files changed, 58 insertions(+), 112 deletions(-)
---
diff --git a/python-xmltodict.spec b/python-xmltodict.spec
deleted file mode 100644
index 8b9fa9f..0000000
--- a/python-xmltodict.spec
+++ /dev/null
@@ -1,112 +0,0 @@
-#
-# Conditional build:
-%bcond_without tests # unit tests
-%bcond_without python2 # CPython 2.x module
-%bcond_without python3 # CPython 3.x module
-
-Summary: Make working with XML feel like you are working with JSON
-Summary(pl.UTF-8): Praca z XML działająca jak z JSON-em
-Name: python-xmltodict
-# keep 0.12.x here for python2 support
-Version: 0.12.0
-Release: 6
-License: MIT
-Group: Libraries/Python
-#Source0Download: https://pypi.org/simple/xmltodict/
-Source0: https://files.pythonhosted.org/packages/source/x/xmltodict/xmltodict-%{version}.tar.gz
-# Source0-md5: ddb2bd078cef4f7e3021a578034ad941
-URL: https://pypi.org/project/xmltodict/
-%if %{with python2}
-BuildRequires: python-modules >= 1:2.7
-BuildRequires: python-setuptools
-%if %{with tests}
-BuildRequires: python-nose >= 1.0
-%endif
-%endif
-%if %{with python3}
-BuildRequires: python3-modules >= 1:3.4
-BuildRequires: python3-setuptools
-%if %{with tests}
-BuildRequires: python3-nose >= 1.0
-%endif
-%endif
-BuildRequires: rpm-pythonprov
-BuildRequires: rpmbuild(macros) >= 1.714
-Requires: python-modules >= 1:2.7
-BuildArch: noarch
-BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
-
-%description
-xmltodict is a Python module that makes working with XML feel like you
-are working with JSON.
-
-%description -l pl.UTF-8
-xmltodict to moduł Pythona upodabniający pracę z XML-em do pracy z
-JSON-em.
-
-%package -n python3-xmltodict
-Summary: Make working with XML feel like you are working with JSON
-Summary(pl.UTF-8): Praca z XML działająca jak z JSON-em
-Group: Libraries/Python
-Requires: python3-modules >= 1:3.4
-
-%description -n python3-xmltodict
-xmltodict is a Python module that makes working with XML feel like you
-are working with JSON.
-
-%description -n python3-xmltodict -l pl.UTF-8
-xmltodict to moduł Pythona upodabniający pracę z XML-em do pracy z
-JSON-em.
-
-%prep
-%setup -q -n xmltodict-%{version}
-
-%build
-%if %{with python2}
-%py_build
-
-%if %{with tests}
-%{__python} -m unittest discover -s tests
-%endif
-%endif
-
-%if %{with python3}
-%py3_build
-
-%if %{with tests}
-%{__python3} -m unittest discover -s tests
-%endif
-%endif
-
-%install
-rm -rf $RPM_BUILD_ROOT
-
-%if %{with python2}
-%py_install
-
-%py_postclean
-%endif
-
-%if %{with python3}
-%py3_install
-%endif
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%if %{with python2}
-%files
-%defattr(644,root,root,755)
-%doc LICENSE README.md
-%{py_sitescriptdir}/xmltodict.py[co]
-%{py_sitescriptdir}/xmltodict-%{version}-py*.egg-info
-%endif
-
-%if %{with python3}
-%files -n python3-xmltodict
-%defattr(644,root,root,755)
-%doc LICENSE README.md
-%{py3_sitescriptdir}/xmltodict.py
-%{py3_sitescriptdir}/__pycache__/xmltodict.cpython-*.py[co]
-%{py3_sitescriptdir}/xmltodict-%{version}-py*.egg-info
-%endif
diff --git a/python3-xmltodict.spec b/python3-xmltodict.spec
new file mode 100644
index 0000000..003ec5a
--- /dev/null
+++ b/python3-xmltodict.spec
@@ -0,0 +1,58 @@
+#
+# Conditional build:
+%bcond_without tests # unit tests
+
+Summary: Make working with XML feel like you are working with JSON
+Summary(pl.UTF-8): Praca z XML działająca jak z JSON-em
+Name: python3-xmltodict
+Version: 0.14.2
+Release: 1
+License: MIT
+Group: Libraries/Python
+#Source0Download: https://pypi.org/simple/xmltodict/
+Source0: https://files.pythonhosted.org/packages/source/x/xmltodict/xmltodict-%{version}.tar.gz
+# Source0-md5: 6e0d94bf858b3c2ff3daeed487eedc2a
+URL: https://pypi.org/project/xmltodict/
+BuildRequires: python3-modules >= 1:3.4
+BuildRequires: python3-setuptools
+%if %{with tests}
+#BuildRequires:
+%endif
+BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.714
+Requires: python3-modules >= 1:3.8
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+xmltodict is a Python module that makes working with XML feel like you
+are working with JSON.
+
+%description -l pl.UTF-8
+xmltodict to moduł Pythona upodabniający pracę z XML-em do pracy z
+JSON-em.
+
+%prep
+%setup -q -n xmltodict-%{version}
+
+%build
+%py3_build
+
+%if %{with tests}
+%{__python3} -m unittest discover -s tests
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%py3_install
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc LICENSE README.md
+%{py3_sitescriptdir}/xmltodict.py
+%{py3_sitescriptdir}/__pycache__/xmltodict.cpython-*.py[co]
+%{py3_sitescriptdir}/xmltodict-%{version}-py*.egg-info
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python3-xmltodict.git/commitdiff/3232727bd9fc70da75087f63a0bc1ba56ad7736a
More information about the pld-cvs-commit
mailing list