From 2a856fa2094a5bafd39294a321cc3dc94e6dd909 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 11 Apr 2023 03:11:30 +0000 Subject: automatic import of python-pyxb --- .gitignore | 1 + python-pyxb.spec | 153 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 155 insertions(+) create mode 100644 python-pyxb.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..6285c62 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/PyXB-1.2.6.tar.gz diff --git a/python-pyxb.spec b/python-pyxb.spec new file mode 100644 index 0000000..0afd261 --- /dev/null +++ b/python-pyxb.spec @@ -0,0 +1,153 @@ +%global _empty_manifest_terminate_build 0 +Name: python-PyXB +Version: 1.2.6 +Release: 1 +Summary: Python XML Schema Bindings +License: Apache License 2.0 +URL: http://pyxb.sourceforge.net +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/e3/09/4fdb190ea2b7cb43d6d3e745276ee69f4d6181be70fcbfda7df3c5f72f0e/PyXB-1.2.6.tar.gz +BuildArch: noarch + + +%description +PyXB is a pure `Python `_ package that generates +Python code for classes that correspond to data structures defined by +`XMLSchema `_. In concept it is similar to +`JAXB `_ for Java and `CodeSynthesis XSD +`_ for C++. + +The major goals of PyXB are: + +* Provide a generated Python interface that is "Pythonic", meaning similar + to one that would have been hand-written: + + + Attributes and elements are Python properties, with name conflicts + resolved in favor of elements + + Elements with maxOccurs larger than 1 are stored as Python lists + + Bindings for type extensions inherit from the binding for the base type + + Enumeration constraints are exposed as class (constant) variables + +* Support bi-directional conversion (document to Python and back) + +* Allow easy customization of the generated bindings to provide + functionality along with content + +* Support all XMLSchema features that are in common use, including: + + + complex content models (nested all/choice/sequence) + + cross-namespace dependencies + + include and import directives + + constraints on simple types + +%package -n python3-PyXB +Summary: Python XML Schema Bindings +Provides: python-PyXB +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-PyXB +PyXB is a pure `Python `_ package that generates +Python code for classes that correspond to data structures defined by +`XMLSchema `_. In concept it is similar to +`JAXB `_ for Java and `CodeSynthesis XSD +`_ for C++. + +The major goals of PyXB are: + +* Provide a generated Python interface that is "Pythonic", meaning similar + to one that would have been hand-written: + + + Attributes and elements are Python properties, with name conflicts + resolved in favor of elements + + Elements with maxOccurs larger than 1 are stored as Python lists + + Bindings for type extensions inherit from the binding for the base type + + Enumeration constraints are exposed as class (constant) variables + +* Support bi-directional conversion (document to Python and back) + +* Allow easy customization of the generated bindings to provide + functionality along with content + +* Support all XMLSchema features that are in common use, including: + + + complex content models (nested all/choice/sequence) + + cross-namespace dependencies + + include and import directives + + constraints on simple types + +%package help +Summary: Development documents and examples for PyXB +Provides: python3-PyXB-doc +%description help +PyXB is a pure `Python `_ package that generates +Python code for classes that correspond to data structures defined by +`XMLSchema `_. In concept it is similar to +`JAXB `_ for Java and `CodeSynthesis XSD +`_ for C++. + +The major goals of PyXB are: + +* Provide a generated Python interface that is "Pythonic", meaning similar + to one that would have been hand-written: + + + Attributes and elements are Python properties, with name conflicts + resolved in favor of elements + + Elements with maxOccurs larger than 1 are stored as Python lists + + Bindings for type extensions inherit from the binding for the base type + + Enumeration constraints are exposed as class (constant) variables + +* Support bi-directional conversion (document to Python and back) + +* Allow easy customization of the generated bindings to provide + functionality along with content + +* Support all XMLSchema features that are in common use, including: + + + complex content models (nested all/choice/sequence) + + cross-namespace dependencies + + include and import directives + + constraints on simple types + +%prep +%autosetup -n PyXB-1.2.6 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-PyXB -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot - 1.2.6-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..b6e59e7 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +4303573fc7094ce4664c5b71cd4bdb48 PyXB-1.2.6.tar.gz -- cgit v1.2.3