summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-dataset.spec110
-rw-r--r--sources1
3 files changed, 112 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..7d4d41a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/dataset-1.6.0.tar.gz
diff --git a/python-dataset.spec b/python-dataset.spec
new file mode 100644
index 0000000..a819b24
--- /dev/null
+++ b/python-dataset.spec
@@ -0,0 +1,110 @@
+%global _empty_manifest_terminate_build 0
+Name: python-dataset
+Version: 1.6.0
+Release: 1
+Summary: Toolkit for Python-based database access.
+License: MIT
+URL: http://github.com/pudo/dataset
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/0a/4f/44d308fc63c724ec38c70bb0974e7d42e04ce64245b88444dcf888348678/dataset-1.6.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-sqlalchemy
+Requires: python3-alembic
+Requires: python3-banal
+Requires: python3-pip
+Requires: python3-pytest
+Requires: python3-wheel
+Requires: python3-flake8
+Requires: python3-coverage
+Requires: python3-psycopg2-binary
+Requires: python3-PyMySQL
+Requires: python3-cryptography
+
+%description
+![build](https://github.com/pudo/dataset/workflows/build/badge.svg)
+In short, **dataset** makes reading and writing data in databases as simple as reading and writing JSON files.
+[Read the docs](https://dataset.readthedocs.io/)
+To install dataset, fetch it with ``pip``:
+```bash
+$ pip install dataset
+```
+**Note:** as of version 1.0, **dataset** is split into two packages, with the
+data export features now extracted into a stand-alone package, **datafreeze**.
+See the relevant repository [here](https://github.com/pudo/datafreeze).
+
+%package -n python3-dataset
+Summary: Toolkit for Python-based database access.
+Provides: python-dataset
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-dataset
+![build](https://github.com/pudo/dataset/workflows/build/badge.svg)
+In short, **dataset** makes reading and writing data in databases as simple as reading and writing JSON files.
+[Read the docs](https://dataset.readthedocs.io/)
+To install dataset, fetch it with ``pip``:
+```bash
+$ pip install dataset
+```
+**Note:** as of version 1.0, **dataset** is split into two packages, with the
+data export features now extracted into a stand-alone package, **datafreeze**.
+See the relevant repository [here](https://github.com/pudo/datafreeze).
+
+%package help
+Summary: Development documents and examples for dataset
+Provides: python3-dataset-doc
+%description help
+![build](https://github.com/pudo/dataset/workflows/build/badge.svg)
+In short, **dataset** makes reading and writing data in databases as simple as reading and writing JSON files.
+[Read the docs](https://dataset.readthedocs.io/)
+To install dataset, fetch it with ``pip``:
+```bash
+$ pip install dataset
+```
+**Note:** as of version 1.0, **dataset** is split into two packages, with the
+data export features now extracted into a stand-alone package, **datafreeze**.
+See the relevant repository [here](https://github.com/pudo/datafreeze).
+
+%prep
+%autosetup -n dataset-1.6.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-dataset -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 1.6.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..0ce29bc
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+32a7748929b7ac8a863ee70a7784368b dataset-1.6.0.tar.gz