From 122613e5d12e697d7034fc3bdf0cf1536bee87c5 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Thu, 18 May 2023 05:53:15 +0000 Subject: automatic import of python-cacodeframework --- .gitignore | 1 + python-cacodeframework.spec | 207 ++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 209 insertions(+) create mode 100644 python-cacodeframework.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..1cdad72 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/CACodeFramework-1.3.1.2.tar.gz diff --git a/python-cacodeframework.spec b/python-cacodeframework.spec new file mode 100644 index 0000000..6bcd10a --- /dev/null +++ b/python-cacodeframework.spec @@ -0,0 +1,207 @@ +%global _empty_manifest_terminate_build 0 +Name: python-CACodeFramework +Version: 1.3.1.2 +Release: 1 +Summary: CACode Framework For Python Flask,This framework corresponds to the ORM problem,You can see:https://gitee.com/cacode_cctvadmin/CACodeFramework-python-ORM +License: GPL-3.0 +URL: https://gitee.com/cacode_cctvadmin/CACodeFramework-python-ORM +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5c/42/cfa72be642ac4198f2866ac49b573e0d9c95114ec144e7b70677190113fb/CACodeFramework-1.3.1.2.tar.gz +BuildArch: noarch + + +%description +

Welcome to CACodeFramework 👋

+

+ Version + + + + Documentation + + + License: MIT + +

+ +> pip命令:pip install CACodeFramework + +## Author + +👤 **CACode** + +* Github: [@cctvadmin](https://github.com/cctvadmin) +* QQ: 2075383131 +* wechat: cacode +* email: cacode@163.com + +## 先决条件 + +- python >=3.6 +- simplejson >= 3.17.2 + +项目地址: https://gitee.com/cacode_cctvadmin/CACodeFramework-python-ORM +项目文档:https://frame.cacode.ren + +> 统一市面上所有的数据库创建者,并分配连接池和缓存 + +## 结语 + +如果这个框架对你有帮助的话,请给个星点个star + +# CACode开发团队 + +!['CACode Development Team'](./imgs/icon_dev.png) +文档编辑于:2021/03/17 07:41 +作者:CACode + + + + +%package -n python3-CACodeFramework +Summary: CACode Framework For Python Flask,This framework corresponds to the ORM problem,You can see:https://gitee.com/cacode_cctvadmin/CACodeFramework-python-ORM +Provides: python-CACodeFramework +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-CACodeFramework +

Welcome to CACodeFramework 👋

+

+ Version + + + + Documentation + + + License: MIT + +

+ +> pip命令:pip install CACodeFramework + +## Author + +👤 **CACode** + +* Github: [@cctvadmin](https://github.com/cctvadmin) +* QQ: 2075383131 +* wechat: cacode +* email: cacode@163.com + +## 先决条件 + +- python >=3.6 +- simplejson >= 3.17.2 + +项目地址: https://gitee.com/cacode_cctvadmin/CACodeFramework-python-ORM +项目文档:https://frame.cacode.ren + +> 统一市面上所有的数据库创建者,并分配连接池和缓存 + +## 结语 + +如果这个框架对你有帮助的话,请给个星点个star + +# CACode开发团队 + +!['CACode Development Team'](./imgs/icon_dev.png) +文档编辑于:2021/03/17 07:41 +作者:CACode + + + + +%package help +Summary: Development documents and examples for CACodeFramework +Provides: python3-CACodeFramework-doc +%description help +

Welcome to CACodeFramework 👋

+

+ Version + + + + Documentation + + + License: MIT + +

+ +> pip命令:pip install CACodeFramework + +## Author + +👤 **CACode** + +* Github: [@cctvadmin](https://github.com/cctvadmin) +* QQ: 2075383131 +* wechat: cacode +* email: cacode@163.com + +## 先决条件 + +- python >=3.6 +- simplejson >= 3.17.2 + +项目地址: https://gitee.com/cacode_cctvadmin/CACodeFramework-python-ORM +项目文档:https://frame.cacode.ren + +> 统一市面上所有的数据库创建者,并分配连接池和缓存 + +## 结语 + +如果这个框架对你有帮助的话,请给个星点个star + +# CACode开发团队 + +!['CACode Development Team'](./imgs/icon_dev.png) +文档编辑于:2021/03/17 07:41 +作者:CACode + + + + +%prep +%autosetup -n CACodeFramework-1.3.1.2 + +%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-CACodeFramework -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu May 18 2023 Python_Bot - 1.3.1.2-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..f3aed4e --- /dev/null +++ b/sources @@ -0,0 +1 @@ +f02844f4cff07d304c2228154b6c8356 CACodeFramework-1.3.1.2.tar.gz -- cgit v1.2.3