diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 19:24:38 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 19:24:38 +0000 |
commit | 84a8d5afde0a09503a369cbb2ad9df69772b101f (patch) | |
tree | ac2259b83432a006b5aab4095515279ac1c066d9 | |
parent | adef1a7a32b3143f9e15b91c579c7bec49e81ce1 (diff) |
automatic import of python-dataset
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-dataset.spec | 110 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 112 insertions, 0 deletions
@@ -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 + +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 + +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 + +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 @@ -0,0 +1 @@ +32a7748929b7ac8a863ee70a7784368b dataset-1.6.0.tar.gz |