idna: Add versions 2.9 for sierrapy #23768 and 3.2(current) (#26616)

py-sierrapy was merged accidentally and pins its versions to exact
numbers. Add 2.9 as the version for sierrapy and the current 3.2
This commit is contained in:
Bernhard Kaindl 2021-10-09 18:31:11 +02:00 committed by GitHub
parent e6cc92554d
commit 9194ca1e2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,10 +11,13 @@ class PyIdna(PythonPackage):
"""Internationalized Domain Names for Python (IDNA 2008 and UTS #46) """
homepage = "https://github.com/kjd/idna"
pypi = "idna/idna-2.8.tar.gz"
pypi = "idna/idna-3.2.tar.gz"
version('3.2', sha256='467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3')
version('2.9', sha256='7588d1c14ae4c77d74036e8c22ff447b26d0fde8f007354fd48a7814db15b7cb')
version('2.8', sha256='c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407')
version('2.5', sha256='3cb5ce08046c4e3a560fc02f138d0ac63e00f8ce5901a56b32ec8b7994082aab')
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
depends_on('python@3.5:', type=('build', 'run'), when='@3.2')
depends_on('py-setuptools', type=('build', 'link'))