summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 19:33:05 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 19:33:05 +0000
commit2a1b52ca27730be9f0187ca4495526dcb55bb9ab (patch)
tree581d7f8223a0346eabdcf9d62575acf20c509216
parentccff9486ce1122af9cbbe894e71ca5ace40e7bca (diff)
automatic import of python-mwtypes
-rw-r--r--.gitignore1
-rw-r--r--python-mwtypes.spec118
-rw-r--r--sources1
3 files changed, 120 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..1091754 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/mwtypes-0.3.2.tar.gz
diff --git a/python-mwtypes.spec b/python-mwtypes.spec
new file mode 100644
index 0000000..31cd73c
--- /dev/null
+++ b/python-mwtypes.spec
@@ -0,0 +1,118 @@
+%global _empty_manifest_terminate_build 0
+Name: python-mwtypes
+Version: 0.3.2
+Release: 1
+Summary: A set of types for processing MediaWiki data.
+License: MIT
+URL: https://github.com/mediawiki-utilities/python-mwtypes
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/69/ef/b8d8bf44e5a6ea1553fec14a89559304fadf02ad6e6c58ff8283c4ef1297/mwtypes-0.3.2.tar.gz
+BuildArch: noarch
+
+Requires: python3-jsonable
+
+%description
+# MediaWiki Types
+
+This library provides a set of classes for working with MediaWiki data types.
+The point of this library is to help standardize different schemes and naming
+patterns between the database, XML dumps and API responses.
+
+* **Installation:** ``pip install mwtypes``
+* **Documentation:** https://pythonhosted.org/mwtypes
+* **Repositiory:** https://github.com/mediawiki-utilities/python-mwtypes
+* **License:** MIT
+
+## Author
+* Aaron Halfaker -- https://github.com/halfak
+
+
+
+
+%package -n python3-mwtypes
+Summary: A set of types for processing MediaWiki data.
+Provides: python-mwtypes
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-mwtypes
+# MediaWiki Types
+
+This library provides a set of classes for working with MediaWiki data types.
+The point of this library is to help standardize different schemes and naming
+patterns between the database, XML dumps and API responses.
+
+* **Installation:** ``pip install mwtypes``
+* **Documentation:** https://pythonhosted.org/mwtypes
+* **Repositiory:** https://github.com/mediawiki-utilities/python-mwtypes
+* **License:** MIT
+
+## Author
+* Aaron Halfaker -- https://github.com/halfak
+
+
+
+
+%package help
+Summary: Development documents and examples for mwtypes
+Provides: python3-mwtypes-doc
+%description help
+# MediaWiki Types
+
+This library provides a set of classes for working with MediaWiki data types.
+The point of this library is to help standardize different schemes and naming
+patterns between the database, XML dumps and API responses.
+
+* **Installation:** ``pip install mwtypes``
+* **Documentation:** https://pythonhosted.org/mwtypes
+* **Repositiory:** https://github.com/mediawiki-utilities/python-mwtypes
+* **License:** MIT
+
+## Author
+* Aaron Halfaker -- https://github.com/halfak
+
+
+
+
+%prep
+%autosetup -n mwtypes-0.3.2
+
+%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-mwtypes -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3.2-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..f0d58d7
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+ca532821cf8bd32e11b1c5318d905e5f mwtypes-0.3.2.tar.gz