py-flask: add 2.3.2, py-blinker: add 1.6.2, py-werkzeug: add 2.3.4 (#38025)
This commit is contained in:
parent
6f1ed9b2e4
commit
34b8fe827e
@ -9,9 +9,12 @@
|
||||
class PyBlinker(PythonPackage):
|
||||
"""Fast, simple object-to-object and broadcast signaling"""
|
||||
|
||||
homepage = "https://pythonhosted.org/blinker/"
|
||||
homepage = "https://blinker.readthedocs.io"
|
||||
pypi = "blinker/blinker-1.4.tar.gz"
|
||||
git = "https://github.com/pallets-eco/blinker.git"
|
||||
|
||||
version("1.6.2", sha256="4afd3de66ef3a9f8067559fb7a1cbe555c17dcbe15971b05d1b625c3e7abe213")
|
||||
version("1.4", sha256="471aee25f3992bd325afa3772f1063dbdbbca947a041b8b89466dc00d606f8b6")
|
||||
|
||||
depends_on("py-setuptools@61.2:", when="@1.6:", type="build")
|
||||
depends_on("py-setuptools", type="build")
|
||||
|
@ -13,6 +13,7 @@ class PyFlask(PythonPackage):
|
||||
pypi = "Flask/Flask-1.1.1.tar.gz"
|
||||
git = "https://github.com/pallets/flask.git"
|
||||
|
||||
version("2.3.2", sha256="8c2f9abd47a9e8df7f0c3f091ce9497d011dc3b31effcf4c85a6e2b50f4114ef")
|
||||
version("2.2.2", sha256="642c450d19c4ad482f96729bd2a8f6d32554aa1e231f4f6b4e7e5264b16cca2b")
|
||||
version("2.0.2", sha256="7b2fb8e934ddd50731893bdcdb00fc8c0315916f9fcd50d22c7cc1a95ab634e2")
|
||||
version("1.1.2", sha256="4efa1ae2d7c9865af48986de8aeb8504bf32c7f3d6fdc9353d34b21f4b127060")
|
||||
@ -22,19 +23,22 @@ class PyFlask(PythonPackage):
|
||||
version("0.12.1", sha256="9dce4b6bfbb5b062181d3f7da8f727ff70c1156cbb4024351eafd426deb5fb88")
|
||||
version("0.11.1", sha256="b4713f2bfb9ebc2966b8a49903ae0d3984781d5c878591cf2f7b484d28756b0e")
|
||||
|
||||
depends_on("python@3.7:", when="@2.1:", type=("build", "run"))
|
||||
depends_on("python@3.6:", when="@2:", type=("build", "run"))
|
||||
depends_on("python@2.7:2,3.5:", type=("build", "run"))
|
||||
depends_on("python@3.8:", when="@2.3:", type=("build", "run"))
|
||||
depends_on("py-setuptools", type=("build", "run"))
|
||||
|
||||
depends_on("py-werkzeug@2.3.3:", when="@2.3.2:", type=("build", "run"))
|
||||
depends_on("py-werkzeug@2.2.2:", when="@2.2.2:", type=("build", "run"))
|
||||
depends_on("py-werkzeug@2:", when="@2:", type=("build", "run"))
|
||||
depends_on("py-werkzeug@0.15:", type=("build", "run"))
|
||||
depends_on("py-jinja2@3.1.2:", when="@3:", type=("build", "run"))
|
||||
depends_on("py-jinja2@3:", when="@2:", type=("build", "run"))
|
||||
depends_on("py-jinja2@2.10.1:", type=("build", "run"))
|
||||
depends_on("py-itsdangerous@2.1.2:", when="@3:", type=("build", "run"))
|
||||
depends_on("py-itsdangerous@2:", when="@2:", type=("build", "run"))
|
||||
depends_on("py-itsdangerous@0.24:", type=("build", "run"))
|
||||
depends_on("py-click@8.1.3:", when="@3:", type=("build", "run"))
|
||||
depends_on("py-click@8:", when="@2.1:", type=("build", "run"))
|
||||
depends_on("py-click@7.1.2:", when="@2:", type=("build", "run"))
|
||||
depends_on("py-click@5.1:", type=("build", "run"))
|
||||
depends_on("py-blinker@1.6.2:", when="@2.3:", type=("build", "run"))
|
||||
depends_on("py-importlib-metadata@3.6:", when="@2.1: ^python@:3.9", type=("build", "run"))
|
||||
|
@ -13,6 +13,7 @@ class PyWerkzeug(PythonPackage):
|
||||
pypi = "Werkzeug/Werkzeug-0.16.0.tar.gz"
|
||||
git = "https://github.com/pallets/werkzeug.git"
|
||||
|
||||
version("2.3.4", sha256="1d5a58e0377d1fe39d061a5de4469e414e78ccb1e1e59c0f5ad6fa1c36c52b76")
|
||||
version("2.2.2", sha256="7ea2d48322cc7c0f8b3a215ed73eabd7b5d75d0b50e31ab006286ccff9e00b8f")
|
||||
version("2.0.2", sha256="aa2bb6fc8dee8d6c504c0ac1e7f5f7dc5810a9903e793b6f715a9f015bdadb9a")
|
||||
version("0.16.0", sha256="7280924747b5733b246fe23972186c6b348f9ae29724135a6dfc1e53cea433e7")
|
||||
@ -26,8 +27,6 @@ class PyWerkzeug(PythonPackage):
|
||||
version("0.11.15", sha256="455d7798ac263266dbd38d4841f7534dd35ca9c3da4a8df303f8488f38f3bcc0")
|
||||
version("0.11.11", sha256="e72c46bc14405cba7a26bd2ce28df734471bc9016bc8b4cb69466c2c14c2f7e5")
|
||||
|
||||
depends_on("python@3.7:", when="@2.1:", type=("build", "run"))
|
||||
depends_on("python@3.6:", when="@2:", type=("build", "run"))
|
||||
depends_on("python@2.7:2.8,3.4:", type=("build", "run"))
|
||||
depends_on("python@3.8:", when="@2.3:", type=("build", "run"))
|
||||
depends_on("py-setuptools", type="build")
|
||||
depends_on("py-markupsafe@2.1.1:", when="@2.2:", type=("build", "run"))
|
||||
|
Loading…
Reference in New Issue
Block a user