1
0

Accepting request 932383 from devel:languages:python

- Update to version 4.0
  - Added another string to the stop looking strings in the yahoo
    detector.
  - Detectors are now run in a defined order and stop on the
    first detection.
  - Fixed microsoft.py which has been broken forever.
  - Added recognition for yet another non-complaint Yahoo DSN.
  - Added recognition for a non-compliant DSN from an unknown
    MTA.
  - Added recognition for a non-compliant opensmtpd DSN with
    Action: error.
  - Fixed simplmatch.py to not return results that don't resemble
    email addresses. (LP: #1859011)

OBS-URL: https://build.opensuse.org/request/show/932383
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-flufl.bounce?expand=0&rev=3
This commit is contained in:
Dominique Leuenberger 2021-11-20 01:39:07 +00:00 committed by Git OBS Bridge
commit a54f598bba
4 changed files with 26 additions and 8 deletions

View File

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

3
flufl.bounce-4.0.tar.gz Normal file
View File

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

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Wed Nov 17 09:55:03 UTC 2021 - Andreas Schneider <asn@cryptomilk.org>
- Update to version 4.0
- Added another string to the stop looking strings in the yahoo
detector.
- Detectors are now run in a defined order and stop on the
first detection.
- Fixed microsoft.py which has been broken forever.
- Added recognition for yet another non-complaint Yahoo DSN.
- Added recognition for a non-compliant DSN from an unknown
MTA.
- Added recognition for a non-compliant opensmtpd DSN with
Action: error.
- Fixed simplmatch.py to not return results that don't resemble
email addresses. (LP: #1859011)
-------------------------------------------------------------------
Fri Jan 24 12:01:55 UTC 2020 - pgajdos@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package python-flufl.bounce
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,9 +17,9 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
%define pythons python3
Name: python-flufl.bounce
Version: 3.0
Version: 4.0
Release: 0
Summary: Email bounce detectors
License: Apache-2.0
@ -28,16 +28,17 @@ URL: https://fluflbounce.readthedocs.io/en/latest/
Source0: https://files.pythonhosted.org/packages/source/f/flufl.bounce/flufl.bounce-%{version}.tar.gz
Source1: https://gitlab.com/warsaw/flufl.bounce/raw/master/LICENSE
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-atpublic
Requires: python-zope.interface
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module atpublic}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module six}
BuildRequires: %{python_module zope.interface}
# /SECTION
BuildRequires: fdupes
BuildArch: noarch
%python_subpackages
%description