python-flask/python-flask.spec

84 lines
2.5 KiB
RPMSpec
Raw Normal View History

2019-12-13 16:02:53 +08:00
Name: python-flask
Version: 1.0.4
2020-01-10 14:44:33 +08:00
Release: 3
2019-12-13 16:02:53 +08:00
Epoch: 1
Summary: A lightweight WSGI web application framework
License: BSD
URL: https://palletsprojects.com/p/flask/
2020-01-10 14:44:33 +08:00
Source0: https://files.pythonhosted.org/packages/source/F/Flask/Flask-1.0.4.tar.gz
2019-12-13 16:02:53 +08:00
BuildArch: noarch
BuildRequires: python2-sphinx
BuildRequires: python2-devel python2-setuptools python2-pytest python2-jinja2 python2-werkzeug python2-itsdangerous python2-click
BuildRequires: python3-devel python3-setuptools python3-pytest python3-jinja2 python3-werkzeug python3-itsdangerous python3-click
2019-11-19 11:53:46 +08:00
%description
Flask is a lightweight WSGI web application framework. It is designed
to make getting started quick and easy, with the ability to scale up
to complex applications. It began as a simple wrapper around Werkzeug
and Jinja and has become one of the most popular Python web application
frameworks.
2019-12-13 16:02:53 +08:00
%package -n python2-flask
Summary: python-flask for python 2 version
%{?python_provide:%python_provide python2-flask}
Requires: python2-jinja2 python2-werkzeug python2-itsdangerous python2-click
2019-11-19 11:53:46 +08:00
2019-12-13 16:02:53 +08:00
%description -n python2-flask
Python-flask for python 2 version
2019-11-19 11:53:46 +08:00
2019-12-13 16:02:53 +08:00
%package -n python3-flask
Summary: python-flask for python 3 version
2020-03-07 02:26:32 -05:00
%{?python_provide:%python_provide python3-flask}
2019-12-13 16:02:53 +08:00
Requires: python3-jinja2 python3-werkzeug python3-itsdangerous python3-click
2019-11-19 11:53:46 +08:00
2019-12-13 16:02:53 +08:00
%description -n python3-flask
Python-flask for python 3 version
2019-11-19 11:53:46 +08:00
%prep
2019-12-13 16:02:53 +08:00
%autosetup -n Flask-%{version} -p1
2019-11-19 11:53:46 +08:00
%build
%py2_build
%py3_build
%install
%py2_install
2019-12-13 16:02:53 +08:00
mv %{buildroot}%{_bindir}/flask{,-%{python2_version}}
ln -s flask-%{python2_version} %{buildroot}%{_bindir}/flask-2
2019-11-19 11:53:46 +08:00
%py3_install
2019-12-13 16:02:53 +08:00
mv %{buildroot}%{_bindir}/flask{,-%{python3_version}}
ln -s flask-%{python3_version} %{buildroot}%{_bindir}/flask-3
2019-11-19 11:53:46 +08:00
2019-12-13 16:02:53 +08:00
ln -sf flask-2 %{buildroot}%{_bindir}/flask
2019-11-19 11:53:46 +08:00
%check
export LC_ALL=C.UTF-8
PYTHONPATH=%{buildroot}%{python2_sitelib} py.test-%{python2_version} -v
PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version} -v || :
2019-12-13 16:02:53 +08:00
%files -n python2-flask
%defattr(-,root,root)
2019-11-19 11:53:46 +08:00
%license LICENSE*
%doc CHANGES* README*
2019-12-13 16:02:53 +08:00
%{_bindir}/flask
%{_bindir}/flask-2
%{_bindir}/flask-%{python2_version}
%{python2_sitelib}/*
2019-11-19 11:53:46 +08:00
2019-12-13 16:02:53 +08:00
%files -n python3-flask
%defattr(-,root,root)
2019-11-19 11:53:46 +08:00
%license LICENSE*
%doc CHANGES* README*
2019-12-13 16:02:53 +08:00
%{_bindir}/flask-3
%{_bindir}/flask-%{python3_version}
%{python3_sitelib}/*
2019-11-19 11:53:46 +08:00
%changelog
2020-01-10 14:44:33 +08:00
* Fri Jan 10 2020 yangjian<yangjian79@huawei.com> - 1.0.4-3
- Change the Source to valid address
2019-12-13 16:02:53 +08:00
* Tue Dec 10 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.0.4-2
- Package init