Blame SPECS/python-watchgod.spec

860531
# what it's called on pypi
860531
%global srcname watchgod
860531
# what it's imported as
860531
%global libname %{srcname}
860531
# name of egg info directory
860531
%global eggname %{srcname}
860531
# package name fragment
860531
%global pkgname %{srcname}
860531
860531
%global common_description %{expand:
860531
Simple, modern file watching and code reload in python.  watchgod is inspired
860531
by watchdog, hence the name, but tries to fix some of the frustrations found
860531
with watchdog.}
860531
860531
860531
%bcond_without  tests
860531
860531
860531
Name:           python-%{pkgname}
860531
Version:        0.7
860531
Release:        1%{?dist}
860531
Summary:        Simple, modern file watching and code reload
860531
License:        MIT
860531
URL:            https://github.com/samuelcolvin/watchgod
860531
# PyPI tarball doesn't have tests
860531
Source0:        %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz
860531
BuildArch:      noarch
860531
860531
860531
%description %{common_description}
860531
860531
860531
%package -n python3-%{pkgname}
860531
Summary:        %{summary}
860531
BuildRequires:  python3-devel
860531
BuildRequires:  %{py3_dist setuptools}
860531
%if %{with tests}
860531
BuildRequires:  %{py3_dist pytest pytest-asyncio pytest-mock pytest-toolbox}
860531
%endif
860531
%{?python_provide:%python_provide python3-%{pkgname}}
860531
860531
860531
%description -n python3-%{pkgname} %{common_description}
860531
860531
860531
%prep
860531
%autosetup -n %{srcname}-%{version}
860531
rm -rf %{eggname}.egg-info
860531
860531
860531
%build
860531
%py3_build
860531
860531
860531
%install
860531
%py3_install
860531
860531
860531
%if %{with tests}
860531
%check
860531
%pytest -v
860531
%endif
860531
860531
860531
%files -n python3-%{pkgname}
860531
%license LICENSE
860531
%doc README.md
860531
%{_bindir}/watchgod
860531
%{python3_sitelib}/%{libname}
860531
%{python3_sitelib}/%{eggname}-%{version}-py%{python3_version}.egg-info
860531
860531
860531
%changelog
860531
* Tue Mar 16 2021 Carl George <carl@george.computer> - 0.7-1
860531
- Latest upstream
860531
- Fixes: rhbz#1922631
860531
- Fixes: rhbz#1928080
860531
860531
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-3
860531
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
860531
860531
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-2
860531
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
860531
860531
* Fri Jun 05 2020 Carl George <carl@george.computer> - 0.6-1
860531
- Initial package