From patchwork Sun Apr 10 11:18:19 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 5490 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4KbqLh4g8lz3x1Y for ; Sun, 10 Apr 2022 11:21:32 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4KbqLg6KB1z5Xk; Sun, 10 Apr 2022 11:21:31 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4KbqLg5nZdz2ylJ; Sun, 10 Apr 2022 11:21:31 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4KbqLf58Gnz2xSn for ; Sun, 10 Apr 2022 11:21:30 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4KbqLf3r1dz5Lr; Sun, 10 Apr 2022 11:21:30 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1649589690; 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: in-reply-to:in-reply-to:references:references; bh=I5bbXnNu14aknFflJHQYlrMUp3W392V9m13t7m1/1C0=; b=yF7w9JSEo2DZ5CZsGsypSDFWnRbkCbAogyWhkM3qYWqJdmDjHuV41ThmnRaWwFv105L8cs HR8RhBIm0RrTS2Dw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1649589690; 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: in-reply-to:in-reply-to:references:references; bh=I5bbXnNu14aknFflJHQYlrMUp3W392V9m13t7m1/1C0=; b=NF1BPBKKE8S0/XyQ+ugQen+FM6ezwzJgPXU7qIYzvRKyI3U6g8Ob/165r2/OsjW/JVRgXB BBkbPqP/ziYQOYYyVpGday/iM2LfqOvEZIDEAZlnJu2rNh9MIaPaXXXNyA/YTF6We3oKfW L72LhQ0sZdqpyyRwbtfJDWryuusnjDCzkkeIQtqRMDdX4xGzMa2ILmtOcRpF0Tzu27+FuM WMnxGqsCKQ0qRDAUDX1HxsriKDmJ/yDaGZ/0JBKMYxQLLrtOTimQQbG5HtjEs3qCopbX1O HS5itZJOFFLBp/C1IPqqUHBnaBm41kyj4gKH/Fzp7pEAhmv2ulmoGANgifYwOw== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] python3-typing-extensions: Update to version 4.1.1 Date: Sun, 10 Apr 2022 13:18:19 +0200 Message-Id: <20220410111821.3479488-13-adolf.belka@ipfire.org> In-Reply-To: <20220410111821.3479488-1-adolf.belka@ipfire.org> References: <20220410111821.3479488-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Update from 4.0.1 to 4.1.1 - Update of rootfile - Changelog # Release 4.1.1 (February 13, 2022) - Fix importing `typing_extensions` on Python 3.7.0 and 3.7.1. Original patch by Nikita Sobolev (@sobolevn). # Release 4.1.0 (February 12, 2022) - Runtime support for PEP 646, adding `typing_extensions.TypeVarTuple` and `typing_extensions.Unpack`. - Add interaction of `Required` and `NotRequired` with `__required_keys__`, `__optional_keys__` and `get_type_hints()`. Patch by David Cabot (@d-k-bo). - Runtime support for PEP 675 and `typing_extensions.LiteralString`. - Add `Never` and `assert_never`. Backport from bpo-46475. - `ParamSpec` args and kwargs are now equal to themselves. Backport from bpo-46676. Patch by Gregory Beauregard (@GBeauregard). - Add `reveal_type`. Backport from bpo-46414. - Runtime support for PEP 681 and `typing_extensions.dataclass_transform`. - `Annotated` can now wrap `ClassVar` and `Final`. Backport from bpo-46491. Patch by Gregory Beauregard (@GBeauregard). - Add missed `Required` and `NotRequired` to `__all__`. Patch by Yuri Karabas (@uriyyo). - The `@final` decorator now sets the `__final__` attribute on the decorated object to allow runtime introspection. Backport from bpo-46342. - Add `is_typeddict`. Patch by Chris Moradi (@chrismoradi) and James Hilton-Balfe (@Gobot1234). Signed-off-by: Adolf Belka --- config/rootfiles/packages/python3-typing-extensions | 10 +++++----- lfs/python3-typing-extensions | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/config/rootfiles/packages/python3-typing-extensions b/config/rootfiles/packages/python3-typing-extensions index 3cf68834d..fb11f5a4c 100644 --- a/config/rootfiles/packages/python3-typing-extensions +++ b/config/rootfiles/packages/python3-typing-extensions @@ -1,6 +1,6 @@ -#usr/lib/python3.10/site-packages/typing_extensions-4.0.1.dist-info -#usr/lib/python3.10/site-packages/typing_extensions-4.0.1.dist-info/LICENSE -#usr/lib/python3.10/site-packages/typing_extensions-4.0.1.dist-info/METADATA -#usr/lib/python3.10/site-packages/typing_extensions-4.0.1.dist-info/RECORD -#usr/lib/python3.10/site-packages/typing_extensions-4.0.1.dist-info/WHEEL +#usr/lib/python3.10/site-packages/typing_extensions-4.1.1.dist-info +#usr/lib/python3.10/site-packages/typing_extensions-4.1.1.dist-info/LICENSE +#usr/lib/python3.10/site-packages/typing_extensions-4.1.1.dist-info/METADATA +#usr/lib/python3.10/site-packages/typing_extensions-4.1.1.dist-info/RECORD +#usr/lib/python3.10/site-packages/typing_extensions-4.1.1.dist-info/WHEEL usr/lib/python3.10/site-packages/typing_extensions.py diff --git a/lfs/python3-typing-extensions b/lfs/python3-typing-extensions index a7686547a..c3b306097 100644 --- a/lfs/python3-typing-extensions +++ b/lfs/python3-typing-extensions @@ -24,7 +24,7 @@ include Config -VER = 4.0.1 +VER = 4.1.1 THISAPP = typing_extensions-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = python3-typing-extensions -PAK_VER = 1 +PAK_VER = 2 ############################################################################### # Top-level Rules @@ -42,7 +42,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 66fb0fdb73d434333347b953b6ffb982247f3869a4678f6f6ac6a95cec51bccd2d1109d6e9d9f611786bd3ef144175a1b21a43b5346d5a88c1eb99ad31246528 +$(DL_FILE)_BLAKE2 = 18953565f4181d648faf780db8594963813d0b26d479e5235cd75d262490b479e957f55734bb6d6d22c31fe2ccec1ac5490e7a64a469528d386e5de2751c6b1a install : $(TARGET)