python-rfc3986/python-rfc3986.spec
Thomas Bechtold 8d46b8e0e8 - update to 1.2.0:
* Update abnf_regexp.py
  * Update uri.py
  * Add test cases for 933d429f
  * Allow percent-encoded bytes in host
  * Remove unnecessary whitespace
  * Correct name throughout the project
  * Percent-encode % chars
  * Minor tweak for cleaner logic
  * Add test cases specifically for % detection
  * Make package building Windows-friendly
  * Tack on changes for #35
  * Drop Python 3.3, add Python 3.6 and 3.7
  * Update for new organization home
  * Bump version to 1.2.0
  * Use the encoding param in to_str and to_bytes

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rfc3986?expand=0&rev=13
2019-03-05 15:04:18 +00:00

52 lines
1.6 KiB
RPMSpec

#
# spec file for package python-rfc3986
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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-rfc3986
Version: 1.2.0
Release: 0
Summary: Python module for validating URI references per RFC 3986
License: Apache-2.0
Group: Development/Languages/Python
URL: https://rfc3986.rtfd.org
Source: https://files.pythonhosted.org/packages/source/r/rfc3986/rfc3986-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
A Python implementation of `RFC 3986`_ including validation and authority
parsing. Coming soon: `Reference Resolution <http://tools.ietf.org/html/rfc3986#section-5>`_.
%prep
%setup -q -n rfc3986-%{version}
%build
%python_build
%install
%python_install
%files %{python_files}
%license LICENSE
%doc AUTHORS.rst README.rst
%{python_sitelib}/*
%changelog