1
0

10 Commits

Author SHA256 Message Date
9e3a29a161 Accepting request 1324626 from devel:languages:python
- Update to 5.3.1:
Bugfixes
  * Drop support for EOL Python 3.9
    #gh/john-kurkowski/tldextract#359
  * Support Python 3.14 + PyPy 3.11
    #gh/john-kurkowski/tldextract#358
  * Speed up IP address search space with isdecimal() instead of
    isdigit()
    #gh/john-kurkowski/tldextract#352
Docs
  * Reorganize, dedupe, and shorten README
    #gh/john-kurkowski/tldextract#349

OBS-URL: https://build.opensuse.org/request/show/1324626
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tldextract?expand=0&rev=29
2025-12-29 14:17:15 +00:00
a05d73ad1d - Update to 5.3.1:
Bugfixes
  * Drop support for EOL Python 3.9
    #gh/john-kurkowski/tldextract#359
  * Support Python 3.14 + PyPy 3.11
    #gh/john-kurkowski/tldextract#358
  * Speed up IP address search space with isdecimal() instead of
    isdigit()
    #gh/john-kurkowski/tldextract#352
Docs
  * Reorganize, dedupe, and shorten README
    #gh/john-kurkowski/tldextract#349

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tldextract?expand=0&rev=59
2025-12-29 02:41:25 +00:00
8dd0012210 Accepting request 1272260 from devel:languages:python
- Update to 5.3.0:
Features
  * Add result field registry_suffix
    To complement the existing public suffix field suffix
    #gh/john-kurkowski/tldextract#344
  * Add result property top_domain_under_public_suffix
    #gh/john-kurkowski/tldextract#344
  * Add result property top_domain_under_registry_suffix
    #gh/john-kurkowski/tldextract#344
  * Deprecate registered_domain property
    Use top_domain_under_public_suffix instead, which has the same
    behavior but a more accurate name
Bugfixes
  * Fix missing reverse_domain_name property in CLI --json output
Misc
  * Expand internal suffix_index return type to be richer than
    bools, and include the registry suffix during trie traversal
    #gh/john-kurkowski/tldextract#344

OBS-URL: https://build.opensuse.org/request/show/1272260
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tldextract?expand=0&rev=28
2025-04-24 15:25:44 +00:00
716c699b9c - Update to 5.3.0:
Features
  * Add result field registry_suffix
    To complement the existing public suffix field suffix
    #gh/john-kurkowski/tldextract#344
  * Add result property top_domain_under_public_suffix
    #gh/john-kurkowski/tldextract#344
  * Add result property top_domain_under_registry_suffix
    #gh/john-kurkowski/tldextract#344
  * Deprecate registered_domain property
    Use top_domain_under_public_suffix instead, which has the same
    behavior but a more accurate name
Bugfixes
  * Fix missing reverse_domain_name property in CLI --json output
Misc
  * Expand internal suffix_index return type to be richer than
    bools, and include the registry suffix during trie traversal
    #gh/john-kurkowski/tldextract#344

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tldextract?expand=0&rev=57
2025-04-23 19:24:55 +00:00
6779af1880 Accepting request 1267941 from devel:languages:python
- Update to 5.2.0:
Features
  * Add `reverse_domain_name` result property
    #gh/john-kurkowski/tldextract#342
Bugfixes
  * Extend exported public interface with `ExtractResult` and
    `update`
    These were always meant to be public. Eases user import.
Docs
  * Document result fields
  * Note all return values
  * Colocate usage in the usage section
  * Link to private domain docs

OBS-URL: https://build.opensuse.org/request/show/1267941
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tldextract?expand=0&rev=27
2025-04-10 19:58:34 +00:00
30944689d8 - Update to 5.2.0:
Features
  * Add `reverse_domain_name` result property
    #gh/john-kurkowski/tldextract#342
Bugfixes
  * Extend exported public interface with `ExtractResult` and
    `update`
    These were always meant to be public. Eases user import.
Docs
  * Document result fields
  * Note all return values
  * Colocate usage in the usage section
  * Link to private domain docs

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tldextract?expand=0&rev=55
2025-04-08 15:22:32 +00:00
38640b9167 Accepting request 1239691 from devel:languages:python
- Drop unneeded BuildRequires on six.
- Specify dist-info directory in %files.

OBS-URL: https://build.opensuse.org/request/show/1239691
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tldextract?expand=0&rev=26
2025-01-23 17:03:27 +00:00
651a0537ef - Drop unneeded BuildRequires on six.
- Specify dist-info directory in %files.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tldextract?expand=0&rev=53
2025-01-23 04:43:04 +00:00
c745775e62 Accepting request 1222993 from devel:languages:python
- update to 5.1.3:
  * Reduce logging errors (`921a825`)
  * Drop support for EOL Python 3.8
  * Support Python 3.13
  * Update bundled snapshot

OBS-URL: https://build.opensuse.org/request/show/1222993
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tldextract?expand=0&rev=25
2024-11-09 19:59:13 +00:00
43e936dd40 - update to 5.1.3:
* Reduce logging errors (`921a825`)
  * Drop support for EOL Python 3.8
  * Support Python 3.13
  * Update bundled snapshot

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tldextract?expand=0&rev=51
2024-11-09 16:18:12 +00:00
4 changed files with 78 additions and 8 deletions

View File

@@ -1,3 +1,73 @@
-------------------------------------------------------------------
Mon Dec 29 02:30:15 UTC 2025 - Mia Herkt <mia@0x0.st>
- Update to 5.3.1:
Bugfixes
* Drop support for EOL Python 3.9
#gh/john-kurkowski/tldextract#359
* Support Python 3.14 + PyPy 3.11
#gh/john-kurkowski/tldextract#358
* Speed up IP address search space with isdecimal() instead of
isdigit()
#gh/john-kurkowski/tldextract#352
Docs
* Reorganize, dedupe, and shorten README
#gh/john-kurkowski/tldextract#349
-------------------------------------------------------------------
Wed Apr 23 19:17:24 UTC 2025 - Mia Herkt <mia@0x0.st>
- Update to 5.3.0:
Features
* Add result field registry_suffix
To complement the existing public suffix field suffix
#gh/john-kurkowski/tldextract#344
* Add result property top_domain_under_public_suffix
#gh/john-kurkowski/tldextract#344
* Add result property top_domain_under_registry_suffix
#gh/john-kurkowski/tldextract#344
* Deprecate registered_domain property
Use top_domain_under_public_suffix instead, which has the same
behavior but a more accurate name
Bugfixes
* Fix missing reverse_domain_name property in CLI --json output
Misc
* Expand internal suffix_index return type to be richer than
bools, and include the registry suffix during trie traversal
#gh/john-kurkowski/tldextract#344
-------------------------------------------------------------------
Tue Apr 8 15:06:55 UTC 2025 - Mia Herkt <mia@0x0.st>
- Update to 5.2.0:
Features
* Add `reverse_domain_name` result property
#gh/john-kurkowski/tldextract#342
Bugfixes
* Extend exported public interface with `ExtractResult` and
`update`
These were always meant to be public. Eases user import.
Docs
* Document result fields
* Note all return values
* Colocate usage in the usage section
* Link to private domain docs
-------------------------------------------------------------------
Thu Jan 23 04:42:21 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Drop unneeded BuildRequires on six.
- Specify dist-info directory in %files.
-------------------------------------------------------------------
Sat Nov 9 16:17:54 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 5.1.3:
* Reduce logging errors (`921a825`)
* Drop support for EOL Python 3.8
* Support Python 3.13
* Update bundled snapshot
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 28 16:29:56 UTC 2024 - Mia Herkt <mia@0x0.st> Thu Mar 28 16:29:56 UTC 2024 - Mia Herkt <mia@0x0.st>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-tldextract # spec file for package python-tldextract
# #
# Copyright (c) 2024 SUSE LLC # Copyright (c) 2025 SUSE LLC and contributors
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -19,14 +19,14 @@
%define oldpython python %define oldpython python
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-tldextract Name: python-tldextract
Version: 5.1.2 Version: 5.3.1
Release: 0 Release: 0
Summary: Python module to separate the TLD of a URL Summary: Python module to separate the TLD of a URL
License: BSD-3-Clause License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/john-kurkowski/tldextract URL: https://github.com/john-kurkowski/tldextract
Source: https://files.pythonhosted.org/packages/source/t/tldextract/tldextract-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/t/tldextract/tldextract-%{version}.tar.gz
Source1: %{name}-rpmlintrc Source1: %{name}-rpmlintrc
BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module filelock >= 3.0.8} BuildRequires: %{python_module filelock >= 3.0.8}
BuildRequires: %{python_module idna >= 2.1.0} BuildRequires: %{python_module idna >= 2.1.0}
BuildRequires: %{python_module pip} BuildRequires: %{python_module pip}
@@ -37,7 +37,6 @@ BuildRequires: %{python_module requests-file >= 1.4}
BuildRequires: %{python_module responses} BuildRequires: %{python_module responses}
BuildRequires: %{python_module setuptools_scm} BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
BuildRequires: %{python_module syrupy} BuildRequires: %{python_module syrupy}
BuildRequires: %{python_module wheel} BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
@@ -82,7 +81,8 @@ as well.
%files %{python_files} %files %{python_files}
%license LICENSE %license LICENSE
%doc README.md %doc README.md
%{python_sitelib}/tldextract* %{python_sitelib}/tldextract
%{python_sitelib}/tldextract-%{version}.dist-info
%python_alternative %{_bindir}/tldextract %python_alternative %{_bindir}/tldextract
%changelog %changelog

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c9e17f756f05afb5abac04fe8f766e7e70f9fe387adb1859f0f52408ee060200
size 116825

3
tldextract-5.3.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a72756ca170b2510315076383ea2993478f7da6f897eef1f4a5400735d5057fb
size 126105