diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-cdb-query.spec | 123 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 125 insertions, 0 deletions
@@ -0,0 +1 @@ +/cdb_query-2.0.tar.gz diff --git a/python-cdb-query.spec b/python-cdb-query.spec new file mode 100644 index 0000000..cfd4ef2 --- /dev/null +++ b/python-cdb-query.spec @@ -0,0 +1,123 @@ +%global _empty_manifest_terminate_build 0 +Name: python-cdb_query +Version: 2.0 +Release: 1 +Summary: Simple tools to query and retrieve data from the ESGF's CMIP5 and CORDEX projects. +License: BSD +URL: https://pypi.org/project/cdb_query/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/e0/83/64b297255a14e7aff6cf672ae18bd017f3e8db2a37bb23c5675d42206971/cdb_query-2.0.tar.gz +BuildArch: noarch + + +%description +[](https://travis-ci.org/laliberte/cdb_query) +[](https://www.python.org/downloads/) +[](https://www.python.org/downloads/) +[](http://cdb_query.readthedocs.org/en/latest/) +[](https://pypi.python.org/pypi/cdB_query/) +[CDB_QUERY](http://pydap.readthedocs.io/en/latest/) is a python command-line code to manage the analysis of +climate model outputs published on the ESGF (CMIP5 and CORDEX archives, for example). +This package provides simple tools to process data from the CMIP5 and CORDEX archives distributed +by the Earth System Grid Federation. +This package was developed by F. B. Laliberte and P. J. Kushner as part of the "ExArch: Climate analytics +on distributed exascale data archives" G8 Research Initiative grant. +Frederic B. Laliberte, Paul J. Kushner +Univerity of Toronto, 2017 +The Natural Sciences and Engineering Research Council of Canada (NSERC/CRSNG) funded +FBL and PJK during this project. +If using this code to retrieve and process data from the ESGF please cite: +Efficient, robust and timely analysis of Earth System Models: a database-query approach +F. Laliberte, Juckes, M., Denvil, S., Kushner, P. J., TBD. + +%package -n python3-cdb_query +Summary: Simple tools to query and retrieve data from the ESGF's CMIP5 and CORDEX projects. +Provides: python-cdb_query +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-cdb_query +[](https://travis-ci.org/laliberte/cdb_query) +[](https://www.python.org/downloads/) +[](https://www.python.org/downloads/) +[](http://cdb_query.readthedocs.org/en/latest/) +[](https://pypi.python.org/pypi/cdB_query/) +[CDB_QUERY](http://pydap.readthedocs.io/en/latest/) is a python command-line code to manage the analysis of +climate model outputs published on the ESGF (CMIP5 and CORDEX archives, for example). +This package provides simple tools to process data from the CMIP5 and CORDEX archives distributed +by the Earth System Grid Federation. +This package was developed by F. B. Laliberte and P. J. Kushner as part of the "ExArch: Climate analytics +on distributed exascale data archives" G8 Research Initiative grant. +Frederic B. Laliberte, Paul J. Kushner +Univerity of Toronto, 2017 +The Natural Sciences and Engineering Research Council of Canada (NSERC/CRSNG) funded +FBL and PJK during this project. +If using this code to retrieve and process data from the ESGF please cite: +Efficient, robust and timely analysis of Earth System Models: a database-query approach +F. Laliberte, Juckes, M., Denvil, S., Kushner, P. J., TBD. + +%package help +Summary: Development documents and examples for cdb_query +Provides: python3-cdb_query-doc +%description help +[](https://travis-ci.org/laliberte/cdb_query) +[](https://www.python.org/downloads/) +[](https://www.python.org/downloads/) +[](http://cdb_query.readthedocs.org/en/latest/) +[](https://pypi.python.org/pypi/cdB_query/) +[CDB_QUERY](http://pydap.readthedocs.io/en/latest/) is a python command-line code to manage the analysis of +climate model outputs published on the ESGF (CMIP5 and CORDEX archives, for example). +This package provides simple tools to process data from the CMIP5 and CORDEX archives distributed +by the Earth System Grid Federation. +This package was developed by F. B. Laliberte and P. J. Kushner as part of the "ExArch: Climate analytics +on distributed exascale data archives" G8 Research Initiative grant. +Frederic B. Laliberte, Paul J. Kushner +Univerity of Toronto, 2017 +The Natural Sciences and Engineering Research Council of Canada (NSERC/CRSNG) funded +FBL and PJK during this project. +If using this code to retrieve and process data from the ESGF please cite: +Efficient, robust and timely analysis of Earth System Models: a database-query approach +F. Laliberte, Juckes, M., Denvil, S., Kushner, P. J., TBD. + +%prep +%autosetup -n cdb_query-2.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-cdb_query -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 2.0-1 +- Package Spec generated @@ -0,0 +1 @@ +77e43c12ad6cbe47dd571cc9b8d0a659 cdb_query-2.0.tar.gz |