diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-11 23:52:15 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-11 23:52:15 +0000 |
| commit | 6602d00de3cffcae61b248b1feb90207b6ce454a (patch) | |
| tree | 095c67e0ac6ca19b10732e8d0a0790417b73fc79 | |
| parent | c44256b3ea8c5575f0da8bec7b2aaea33b5b5a2c (diff) | |
automatic import of python-dagster-cron
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-dagster-cron.spec | 74 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 76 insertions, 0 deletions
@@ -0,0 +1 @@ +/dagster-cron-0.11.16.tar.gz diff --git a/python-dagster-cron.spec b/python-dagster-cron.spec new file mode 100644 index 0000000..2e8e0c3 --- /dev/null +++ b/python-dagster-cron.spec @@ -0,0 +1,74 @@ +%global _empty_manifest_terminate_build 0 +Name: python-dagster-cron +Version: 0.11.16 +Release: 1 +Summary: A Dagster integration for cron +License: Apache-2.0 +URL: https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-cron +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5f/5e/8df4c3bab37ab3835103422301f135dfdd3b8ead82df98eeef0fddc01ee6/dagster-cron-0.11.16.tar.gz +BuildArch: noarch + +Requires: python3-dagster +Requires: python3-crontab + +%description + + +%package -n python3-dagster-cron +Summary: A Dagster integration for cron +Provides: python-dagster-cron +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-dagster-cron + + +%package help +Summary: Development documents and examples for dagster-cron +Provides: python3-dagster-cron-doc +%description help + + +%prep +%autosetup -n dagster-cron-0.11.16 + +%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-dagster-cron -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.11.16-1 +- Package Spec generated @@ -0,0 +1 @@ +8ef28202c58dd815980c773a80497bb6 dagster-cron-0.11.16.tar.gz |
