From patchwork Mon Jul 29 13:37:41 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Leitner X-Patchwork-Id: 47000 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1BB81C3DA4A for ; Mon, 29 Jul 2024 13:38:38 +0000 (UTC) Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) by mx.groups.io with SMTP id smtpd.web10.56240.1722260312036315667 for ; Mon, 29 Jul 2024 06:38:32 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@g0hl1n.net header.s=key1 header.b=UEYS+6g6; spf=pass (domain: g0hl1n.net, ip: 91.218.175.172, mailfrom: dev@g0hl1n.net) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=g0hl1n.net; s=key1; t=1722260309; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=2xuHRe5ubgmQ2T+eUi/JitOV51Abhq2JxqkWxPU5wWc=; b=UEYS+6g6dAgO6OKivloXmcjAUJythCqu76c46bFBD6QG3dIcEj0o+X1PpgvVxvl59NmrVJ TBhS2oSJtvlpvJDfsxpnRbBUCZDTcf7VygBgmskqYNz+dXsf0hxbsjKHb+Gb7fTo75qrEt D+vYtD6u0UNmuk8d/eMCg8h6MArsPto= From: Richard Leitner To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu , Khem Raj , Richard Leitner Subject: [meta-python][scarthgap][PATCH] python3-email-validator: upgrade 2.1.0 -> 2.1.1 Date: Mon, 29 Jul 2024 15:37:41 +0200 Message-ID: <20240729133741.166233-1-dev@g0hl1n.net> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Mon, 29 Jul 2024 13:38:38 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/111457 From: Wang Mingyu Changelog: ========== - Fixed typo 'marking' instead of 'marketing' in case-insensitive mailbox name list. - When DNS-based deliverability checks fail, in some cases exceptions are now thrown with raise ... from for better nested exception tracking. - Fixed tests to work when no local resolver can be configured. - This project is now licensed under the Unlicense (instead of CC0). - Minor improvements to tests. - Minor improvements to code style. License-Update: Relicense under the Unlicense (instead of CC0) Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj (cherry picked from commit 0dd1264a9499b213ff9edd3618ea2a3e8fae9c56) Signed-off-by: Richard Leitner --- ...il-validator_2.1.0.bb => python3-email-validator_2.1.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-email-validator_2.1.0.bb => python3-email-validator_2.1.1.bb} (59%) diff --git a/meta-python/recipes-devtools/python/python3-email-validator_2.1.0.bb b/meta-python/recipes-devtools/python/python3-email-validator_2.1.1.bb similarity index 59% rename from meta-python/recipes-devtools/python/python3-email-validator_2.1.0.bb rename to meta-python/recipes-devtools/python/python3-email-validator_2.1.1.bb index 7daf548cb..90a22e5a0 100644 --- a/meta-python/recipes-devtools/python/python3-email-validator_2.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-email-validator_2.1.1.bb @@ -1,9 +1,9 @@ SUMMARY = "A robust email address syntax and deliverability validation library." SECTION = "devel/python" LICENSE = "CC0-1.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=65d3616852dbf7b1a6d4b53b00626032" +LIC_FILES_CHKSUM = "file://LICENSE;md5=2890aee62bd2a4c3197e2059016a397e" -SRC_URI[sha256sum] = "5f511cca8856bb03251d6292ba59e7f98978aae13fa5823ddd8bf885c56a6260" +SRC_URI[sha256sum] = "200a70680ba08904be6d1eef729205cc0d687634399a5924d842533efb824b84" PYPI_PACKAGE = "email_validator"