summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-pyxb.spec153
-rw-r--r--sources1
3 files changed, 155 insertions, 0 deletions
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 <http://www.python.org>`_ package that generates
+Python code for classes that correspond to data structures defined by
+`XMLSchema <http://www.w3.org/XML/Schema>`_. In concept it is similar to
+`JAXB <http://en.wikipedia.org/wiki/JAXB>`_ for Java and `CodeSynthesis XSD
+<http://www.codesynthesis.com/products/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 <http://www.python.org>`_ package that generates
+Python code for classes that correspond to data structures defined by
+`XMLSchema <http://www.w3.org/XML/Schema>`_. In concept it is similar to
+`JAXB <http://en.wikipedia.org/wiki/JAXB>`_ for Java and `CodeSynthesis XSD
+<http://www.codesynthesis.com/products/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 <http://www.python.org>`_ package that generates
+Python code for classes that correspond to data structures defined by
+`XMLSchema <http://www.w3.org/XML/Schema>`_. In concept it is similar to
+`JAXB <http://en.wikipedia.org/wiki/JAXB>`_ for Java and `CodeSynthesis XSD
+<http://www.codesynthesis.com/products/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 <Python_Bot@openeuler.org> - 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