forked from pool/python-tld
submit OBS-URL: https://build.opensuse.org/request/show/806912 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tld?expand=0&rev=33
81 lines
2.5 KiB
RPMSpec
81 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package python-tld
|
|
#
|
|
# Copyright (c) 2020 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-%{**}}
|
|
%define skip_python2 1
|
|
Name: python-tld
|
|
Version: 0.12.1
|
|
Release: 0
|
|
Summary: URL top level domain (TLD) extraction module
|
|
License: MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-only
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/barseghyanartur/tld
|
|
Source: https://files.pythonhosted.org/packages/source/t/tld/tld-%{version}.tar.gz
|
|
# PATCH-FIX-OPENSUSE skip_internet_tests.patch
|
|
Patch0: skip_internet_tests.patch
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-setuptools
|
|
Requires: python-six >= 1.9
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module Faker}
|
|
BuildRequires: %{python_module factory_boy}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module six >= 1.9}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
This module extracts the top level domain (TLD) from the URL given.
|
|
A list of TLD names is taken from Mozillas public suffix list:
|
|
<https://publicsuffix.org/list/effective_tld_names.dat>
|
|
|
|
%prep
|
|
%setup -q -n tld-%{version}
|
|
%patch0 -p1
|
|
# https://github.com/barseghyanartur/tld/issues/75
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/update-tld-names
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%post
|
|
%python_install_alternative update-tld-names
|
|
|
|
%postun
|
|
%python_uninstall_alternative update-tld-names
|
|
|
|
%files %{python_files}
|
|
%doc README.rst CHANGELOG.rst
|
|
%license LICENSE_GPL2.0.txt LICENSE_LGPL_2.1.txt
|
|
%python_alternative %{_bindir}/update-tld-names
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|