Compare commits

..

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
c779fd8085
!10 Adapting to the pyproject.toml compilation mode
From: @wu-leilei 
Reviewed-by: @caodongxia 
Signed-off-by: @caodongxia
2023-05-12 06:42:34 +00:00
wu-leilei
8472943fba Adapting to the pyproject.toml compilation mode 2023-05-12 11:07:58 +08:00
openeuler-ci-bot
dc374ed6ae
!7 Update package to version 3.0.3
From: @wubijie123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-03-21 03:27:41 +00:00
wubijie
8fa31ee055 Update package to version 3.0.3 2023-03-17 13:38:29 +08:00
openeuler-ci-bot
4b50fc2a29
!6 Update package
From: @liqiuyu123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2022-12-19 07:19:26 +00:00
liqiuyu123
b5e47be270 update version to 3.0.2 2022-12-16 16:10:13 +08:00
openeuler-ci-bot
8299e00ff9
!4 Package upgrade
From: @starlet-dx 
Reviewed-by: @myeuler 
Signed-off-by: @myeuler
2022-06-29 07:32:57 +00:00
starlet-dx
99d69aa725 Package upgrade 2022-06-29 14:38:37 +08:00
openeuler-ci-bot
44c303df99 !1 Package init
From: @hht8
Reviewed-by: @shinwell_hu
Signed-off-by: @shinwell_hu
2020-09-11 11:01:10 +08:00
hht8
f8400b281e Package init 2020-06-29 11:27:35 +08:00
2 changed files with 75 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,75 @@
%global _empty_manifest_terminate_build 0
Name: python-Flask-SQLAlchemy
Version: 3.0.3
Release: 2
Summary: Adds SQLAlchemy support to your Flask application.
License: BSD-3-Clause
URL: https://github.com/pallets/flask-sqlalchemy
Source0: %{pypi_source Flask-SQLAlchemy}
BuildArch: noarch
BuildRequires: python3-pip python3-wheel python3-pdm-pep517
Requires: python3-Flask
Requires: python3-SQLAlchemy
%description
Flask-SQLAlchemy is an extension for Flask that adds support for
SQLAlchemy to your application. It aims to simplify using SQLAlchemy
with Flask by providing useful defaults and extra helpers that make it
easier to accomplish common tasks.
%package -n python3-Flask-SQLAlchemy
Summary: Adds SQLAlchemy support to your Flask application.
Provides: python-Flask-SQLAlchemy
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%description -n python3-Flask-SQLAlchemy
Flask-SQLAlchemy is an extension for Flask that adds support for
SQLAlchemy to your application. It aims to simplify using SQLAlchemy
with Flask by providing useful defaults and extra helpers that make it
easier to accomplish common tasks.
%package help
Summary: Development documents and examples for Flask-SQLAlchemy
Provides: python3-Flask-SQLAlchemy-doc
%description help
Flask-SQLAlchemy is an extension for Flask that adds support for
SQLAlchemy to your application. It aims to simplify using SQLAlchemy
with Flask by providing useful defaults and extra helpers that make it
easier to accomplish common tasks.
%prep
%autosetup -n Flask-SQLAlchemy-%{version} -p1
%build
%pyproject_build
%install
%pyproject_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
%files -n python3-Flask-SQLAlchemy
%license LICENSE.rst
%{python3_sitelib}/*
%files help
%{_pkgdocdir}
%changelog
* Thu May 11 2023 wulei <wu_lei@hoperun.com> - 3.0.3-2
- Adapting to the pyproject.toml compilation mode
* Fri Mar 17 2023 wubijie <wubijie@kylinos.cn> - 3.0.3-1
- Update package to version 3.0.3
* Thu Dec 15 2022 liqiuyu <liqiuyu@kylinos.cn> - 3.0.2-1
- Update package to version 3.0.2
* Wed Jun 29 2022 yaoxin <yaoxin30@h-partners.com> - 2.5.1-1
- Update to 2.5.1
* Mon Jun 22 2020 Python_Bot <Python_Bot@openeuler.org>
- Package Spec generated