diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-15 09:00:38 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-15 09:00:38 +0000 |
| commit | 5a2d36dc10fe41c04c67b4c1e2fe3847e5b98421 (patch) | |
| tree | c1885db93a2ab8b1e76c457cf47703a38bbadfad | |
| parent | 47dda90a4ed751a12b54f8e0b8b19e6f28983e0f (diff) | |
automatic import of python-jet-bridge
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-jet-bridge.spec | 113 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 115 insertions, 0 deletions
@@ -0,0 +1 @@ +/jet-bridge-1.7.17.tar.gz diff --git a/python-jet-bridge.spec b/python-jet-bridge.spec new file mode 100644 index 0000000..2084ae7 --- /dev/null +++ b/python-jet-bridge.spec @@ -0,0 +1,113 @@ +%global _empty_manifest_terminate_build 0 +Name: python-jet-bridge +Version: 1.7.17 +Release: 1 +Summary: please add a summary manually as the author left a blank one +License: MIT +URL: https://github.com/jet-admin/jet-bridge +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/a4/d4/63fb2f470e52b8daac053990d9476c35ed62bd5305e974aa49a9bd4aa49a/jet-bridge-1.7.17.tar.gz +BuildArch: noarch + +Requires: python3-tornado +Requires: python3-six +Requires: python3-jet-bridge-base +Requires: python3-paramiko +Requires: python3-sshtunnel + +%description +* About Jet Admin: https://www.jetadmin.io +* **Live Demo**: https://app.jetadmin.io/demo +* Documentation: https://docs.jetadmin.io/ +* Support: support@jetadmin.io +**Jet Admin** is a SaaS service that automatically generates extendable back office for your application. <br /> +**Jet Bridge** is a standalone app which generates REST API thought which your SQL database is connected to **Jet Admin**. <br /> +This project has been designed to fit requirements of small startups and mature companies. +- **Data Privacy**. Jet does not access your data: its transferred directly from browser to your application. +- **Customizable Interface**. With WYSIWYG interface customization your can change almost every part of interface. +- **Extendable**. Flex Features allows you to create your custom Actions, Views, Fields and other. +- **Works with any technology**. The interface is generated automatically based on an analysis of the data and data structure of your database. +- **Quick installation**. All you need is to install Jet Bridge and connect it to your database. +This is a complete remake of our popular [Django Jet](https://github.com/geex-arts/django-jet) admin interface. + +%package -n python3-jet-bridge +Summary: please add a summary manually as the author left a blank one +Provides: python-jet-bridge +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-jet-bridge +* About Jet Admin: https://www.jetadmin.io +* **Live Demo**: https://app.jetadmin.io/demo +* Documentation: https://docs.jetadmin.io/ +* Support: support@jetadmin.io +**Jet Admin** is a SaaS service that automatically generates extendable back office for your application. <br /> +**Jet Bridge** is a standalone app which generates REST API thought which your SQL database is connected to **Jet Admin**. <br /> +This project has been designed to fit requirements of small startups and mature companies. +- **Data Privacy**. Jet does not access your data: its transferred directly from browser to your application. +- **Customizable Interface**. With WYSIWYG interface customization your can change almost every part of interface. +- **Extendable**. Flex Features allows you to create your custom Actions, Views, Fields and other. +- **Works with any technology**. The interface is generated automatically based on an analysis of the data and data structure of your database. +- **Quick installation**. All you need is to install Jet Bridge and connect it to your database. +This is a complete remake of our popular [Django Jet](https://github.com/geex-arts/django-jet) admin interface. + +%package help +Summary: Development documents and examples for jet-bridge +Provides: python3-jet-bridge-doc +%description help +* About Jet Admin: https://www.jetadmin.io +* **Live Demo**: https://app.jetadmin.io/demo +* Documentation: https://docs.jetadmin.io/ +* Support: support@jetadmin.io +**Jet Admin** is a SaaS service that automatically generates extendable back office for your application. <br /> +**Jet Bridge** is a standalone app which generates REST API thought which your SQL database is connected to **Jet Admin**. <br /> +This project has been designed to fit requirements of small startups and mature companies. +- **Data Privacy**. Jet does not access your data: its transferred directly from browser to your application. +- **Customizable Interface**. With WYSIWYG interface customization your can change almost every part of interface. +- **Extendable**. Flex Features allows you to create your custom Actions, Views, Fields and other. +- **Works with any technology**. The interface is generated automatically based on an analysis of the data and data structure of your database. +- **Quick installation**. All you need is to install Jet Bridge and connect it to your database. +This is a complete remake of our popular [Django Jet](https://github.com/geex-arts/django-jet) admin interface. + +%prep +%autosetup -n jet-bridge-1.7.17 + +%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-jet-bridge -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 1.7.17-1 +- Package Spec generated @@ -0,0 +1 @@ +35a513fde84797b83d4504bb7e1825b2 jet-bridge-1.7.17.tar.gz |
