Blame SPECS/python-mujson.spec

7293ea
%global srcname mujson
7293ea
%global common_description %{expand:
7293ea
mujson lets python libraries make use of the most performant JSON functions
7293ea
available at import time.  It is small, and does not itself implement any
7293ea
encoding or decoding functionality.}
7293ea
7293ea
7293ea
Name:           python-%{srcname}
7293ea
Version:        1.4
7293ea
Release:        1%{?dist}
7293ea
Summary:        Use the fastest JSON functions available at import time
7293ea
License:        MIT
7293ea
URL:            https://github.com/mattgiles/mujson
7293ea
# PyPI tarball is missing license
7293ea
# https://github.com/mattgiles/mujson/issues/8
7293ea
Source0:        %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz
7293ea
BuildArch:      noarch
7293ea
7293ea
7293ea
%description %{common_description}
7293ea
7293ea
7293ea
%package -n python3-%{srcname}
7293ea
Summary:        %{summary}
7293ea
BuildRequires:  python3-devel
7293ea
BuildRequires:  %{py3_dist setuptools}
7293ea
7293ea
7293ea
%description -n python3-%{srcname} %{common_description}
7293ea
7293ea
7293ea
%prep
7293ea
%autosetup -n %{srcname}-%{version}
7293ea
7293ea
7293ea
%build
7293ea
%py3_build
7293ea
7293ea
7293ea
%install
7293ea
%py3_install
7293ea
7293ea
7293ea
%files -n python3-%{srcname}
7293ea
%license LICENSE
7293ea
%doc README.md
7293ea
%{python3_sitelib}/%{srcname}
7293ea
%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info
7293ea
7293ea
7293ea
%changelog
7293ea
* Tue Apr 13 2021 Carl George <carl@george.computer> - 1.4-1
7293ea
- Initial package rhbz#1948882