summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-10 07:11:36 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-10 07:11:36 +0000
commit2df64fdaf9a8e7456c0be5281f0b292c426a7e57 (patch)
tree84d5efff8687483b077e19d0668018cbf04a4e4a
parent66a1730748899b02af66283e09d96aa8a85b844d (diff)
automatic import of python-serde
-rw-r--r--.gitignore1
-rw-r--r--python-serde.spec77
-rw-r--r--sources1
3 files changed, 79 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..426b035 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/serde-0.9.0.tar.gz
diff --git a/python-serde.spec b/python-serde.spec
new file mode 100644
index 0000000..d394ae9
--- /dev/null
+++ b/python-serde.spec
@@ -0,0 +1,77 @@
+%global _empty_manifest_terminate_build 0
+Name: python-serde
+Version: 0.9.0
+Release: 1
+Summary: Define, serialize, deserialize, and validate Python data structures.
+License: MIT/Apache-2.0
+URL: https://github.com/rossmacarthur/serde
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/01/87/f427afe477c83a6b67b6762e9eef9b7799e36fbb279602757114dcf45bb0/serde-0.9.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-chardet
+Requires: python3-validators
+
+%description
+Serde is a lightweight, general-purpose framework for defining, serializing,
+deserializing, and validating data structures in Python.
+
+%package -n python3-serde
+Summary: Define, serialize, deserialize, and validate Python data structures.
+Provides: python-serde
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-serde
+Serde is a lightweight, general-purpose framework for defining, serializing,
+deserializing, and validating data structures in Python.
+
+%package help
+Summary: Development documents and examples for serde
+Provides: python3-serde-doc
+%description help
+Serde is a lightweight, general-purpose framework for defining, serializing,
+deserializing, and validating data structures in Python.
+
+%prep
+%autosetup -n serde-0.9.0
+
+%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-serde -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.9.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..5c46538
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+eff19841be7b9fb98333f7803f2edcd4 serde-0.9.0.tar.gz