14
0
Files
python-py-vapid/python-py-vapid.spec
Dirk Mueller 7ba91871df Accepting request 1042738 from home:yarunachalam:branches:devel:languages:python
- Update to v1.9.0 
  * chore: Jul 2022 update
    Now that this is one of the Critical Projects (thanks?) I should
    update it to be more modern, clean up some of the crap, and
    run it through flake8 at least.
  * Add a rst version of the README
  * update rust version to 0.6.0

OBS-URL: https://build.opensuse.org/request/show/1042738
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-py-vapid?expand=0&rev=6
2022-12-14 10:08:01 +00:00

71 lines
2.0 KiB
RPMSpec

#
# spec file for package python-py-vapid
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-py-vapid
Version: 1.9.0
Release: 0
Summary: VAPID header generation library
License: MPL-2.0
URL: https://github.com/mozilla-services/vapid
Source: https://files.pythonhosted.org/packages/source/p/py-vapid/py-vapid-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-cryptography >= 2.5
Requires(post): update-alternatives
Requires(postun):update-alternatives
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module cryptography >= 2.5}
BuildRequires: %{python_module pytest}
# /SECTION
%python_subpackages
%description
VAPID header generation library.
%prep
%setup -q -n py-vapid-%{version}
sed -i 's/from mock import/from unittest.mock import/' py_vapid/tests/test_vapid.py
%build
%python_build
%install
%python_install
%python_clone -a %{buildroot}%{_bindir}/vapid
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%post
%python_install_alternative vapid
%postun
%python_uninstall_alternative vapid
%files %{python_files}
%doc README.md README.rst
%license LICENSE
%python_alternative %{_bindir}/vapid
%{python_sitelib}/*
%changelog