Skip to content

Commit f2f2c3f

Browse files
moto-timokraj
authored andcommitted
python3-typing-extensions: upgrade 4.3.0 -> 4.4.0
https://github.com/python/typing_extensions/blob/main/CHANGELOG.md#release-440-october-6-2022 Release 4.4.0 (October 6, 2022) * Add typing_extensions.Any a backport of python 3.11's Any class which is subclassable at runtime. (backport from python/cpython#31841, by Shantanu and Jelle Zijlstra). Patch by James Hilton-Balfe (@Gobot1234). * Add initial support for TypeVarLike default parameter, PEP 696. Patch by Marc Mueller (@cdce8p). * Runtime support for PEP 698, adding typing_extensions.override. Patch by Jelle Zijlstra. * Add the infer_variance parameter to TypeVar, as specified in PEP 695. Patch by Jelle Zijlstra. (From OE-Core rev: 0b8f212744f8de7e6b33ab02d042009eba462241) Signed-off-by: Tim Orling <[email protected]> Signed-off-by: Alexandre Belloni <[email protected]>
1 parent 388228b commit f2f2c3f

File tree

2 files changed

+69
-14
lines changed

2 files changed

+69
-14
lines changed

meta/recipes-devtools/python/python3-typing-extensions_4.3.0.bb

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
2+
# The following is the difference between the old and the new license text.
3+
# Please update the LICENSE value if needed, and summarize the changes in
4+
# the commit message via 'License-Update:' tag.
5+
# (example: 'License-Update: copyright years updated.')
6+
#
7+
# The changes:
8+
#
9+
# --- LICENSE
10+
# +++ LICENSE
11+
# @@ -13,12 +13,11 @@
12+
#
13+
# In May 2000, Guido and the Python core development team moved to
14+
# BeOpen.com to form the BeOpen PythonLabs team. In October of the same
15+
# -year, the PythonLabs team moved to Digital Creations (now Zope
16+
# -Corporation, see http://www.zope.com). In 2001, the Python Software
17+
# -Foundation (PSF, see http://www.python.org/psf/) was formed, a
18+
# -non-profit organization created specifically to own Python-related
19+
# -Intellectual Property. Zope Corporation is a sponsoring member of
20+
# -the PSF.
21+
# +year, the PythonLabs team moved to Digital Creations, which became
22+
# +Zope Corporation. In 2001, the Python Software Foundation (PSF, see
23+
# +https://www.python.org/psf/) was formed, a non-profit organization
24+
# +created specifically to own Python-related Intellectual Property.
25+
# +Zope Corporation was a sponsoring member of the PSF.
26+
#
27+
# All Python releases are Open Source (see http://www.opensource.org for
28+
# the Open Source Definition). Historically, most, but not all, Python
29+
# @@ -74,8 +73,9 @@
30+
# distribute, and otherwise use Python alone or in any derivative version,
31+
# provided, however, that PSF's License Agreement and PSF's notice of copyright,
32+
# i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
33+
# -2011, 2012, 2013, 2014 Python Software Foundation; All Rights Reserved" are
34+
# -retained in Python alone or in any derivative version prepared by Licensee.
35+
# +2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation;
36+
# +All Rights Reserved" are retained in Python alone or in any derivative version
37+
# +prepared by Licensee.
38+
#
39+
# 3. In the event Licensee prepares a derivative work that is based on
40+
# or incorporates Python or any part thereof, and wants to make
41+
# @@ -180,9 +180,9 @@
42+
# Agreement, Licensee may substitute the following text (omitting the
43+
# quotes): "Python 1.6.1 is made available subject to the terms and
44+
# conditions in CNRI's License Agreement. This Agreement together with
45+
# -Python 1.6.1 may be located on the Internet using the following
46+
# +Python 1.6.1 may be located on the internet using the following
47+
# unique, persistent identifier (known as a handle): 1895.22/1013. This
48+
# -Agreement may also be obtained from a proxy server on the Internet
49+
# +Agreement may also be obtained from a proxy server on the internet
50+
# using the following URL: http://hdl.handle.net/1895.22/1013".
51+
#
52+
# 3. In the event Licensee prepares a derivative work that is based on
53+
#
54+
#
55+
56+
HOMEPAGE = "https://github.com/python/typing"
57+
LICENSE = "PSF-2.0"
58+
LIC_FILES_CHKSUM = "file://LICENSE;md5=f16b323917992e0f8a6f0071bc9913e2"
59+
60+
# The name on PyPi is slightly different.
61+
PYPI_PACKAGE = "typing_extensions"
62+
63+
SRC_URI[sha256sum] = "1511434bb92bf8dd198c12b1cc812e800d4181cfcb867674e0f8279cc93087aa"
64+
65+
inherit pypi python_flit_core
66+
67+
BBCLASSEXTEND = "native nativesdk"
68+
69+
UPSTREAM_CHECK_REGEX = "/typing-extensions/(?P<pver>(\d+[\.\-_]*)+)/"

0 commit comments

Comments
 (0)