45 lines
804 B
RPMSpec
45 lines
804 B
RPMSpec
%global srcname flup
|
|
|
|
Name: python-flup
|
|
Version: 1.0.3
|
|
Release: 1
|
|
Summary: Random assortment of WSGI servers for python
|
|
|
|
License: BSD
|
|
URL: https://www.saddi.com/software/flup/
|
|
Source0: %{pypi_source}
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
%global _description\
|
|
This package contains classes to create WSGI servers in python, e.g. fastcgi.\
|
|
|
|
%description %_description
|
|
|
|
%package -n python3-flup
|
|
Summary: %summary
|
|
%{?python_provide:%python_provide python3-flup}
|
|
|
|
%description -n python3-flup %_description
|
|
|
|
%prep
|
|
%setup -q -n flup-%{version}
|
|
|
|
%build
|
|
%py3_build
|
|
|
|
%install
|
|
%py3_install
|
|
|
|
|
|
%files -n python3-flup
|
|
%doc PKG-INFO
|
|
%{python3_sitelib}/*
|
|
|
|
|
|
%changelog
|
|
* Fri Jun 25 2021 sunligang <sunligang@kylinos.cnm> - 1.0.3-1
|
|
- Package init
|