diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-05 08:19:07 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 08:19:07 +0000 |
| commit | 4c4f499c68150ff63e2e64d42a5170e92664c2a8 (patch) | |
| tree | f275c801f29b4646c592ea0d5043faef1777bc5c | |
| parent | 10587f31f843f5fdc8d83fc9920add4dcbe6a477 (diff) | |
automatic import of python-flytekitplugins-sqlalchemyopeneuler20.03
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-flytekitplugins-sqlalchemy.spec | 74 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 76 insertions, 0 deletions
@@ -0,0 +1 @@ +/flytekitplugins-sqlalchemy-1.5.0.tar.gz diff --git a/python-flytekitplugins-sqlalchemy.spec b/python-flytekitplugins-sqlalchemy.spec new file mode 100644 index 0000000..60bd0dc --- /dev/null +++ b/python-flytekitplugins-sqlalchemy.spec @@ -0,0 +1,74 @@ +%global _empty_manifest_terminate_build 0 +Name: python-flytekitplugins-sqlalchemy +Version: 1.5.0 +Release: 1 +Summary: SQLAlchemy plugin for flytekit +License: apache2 +URL: https://pypi.org/project/flytekitplugins-sqlalchemy/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/88/83/aa6dc0fc1aca963a53fe338ccfe686901896c814dfa29e33811dd023c410/flytekitplugins-sqlalchemy-1.5.0.tar.gz +BuildArch: noarch + +Requires: python3-flytekit +Requires: python3-sqlalchemy + +%description + + +%package -n python3-flytekitplugins-sqlalchemy +Summary: SQLAlchemy plugin for flytekit +Provides: python-flytekitplugins-sqlalchemy +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-flytekitplugins-sqlalchemy + + +%package help +Summary: Development documents and examples for flytekitplugins-sqlalchemy +Provides: python3-flytekitplugins-sqlalchemy-doc +%description help + + +%prep +%autosetup -n flytekitplugins-sqlalchemy-1.5.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-flytekitplugins-sqlalchemy -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 1.5.0-1 +- Package Spec generated @@ -0,0 +1 @@ +71da853e8682a0ade2acd9411cba7c22 flytekitplugins-sqlalchemy-1.5.0.tar.gz |
