summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2021-08-06 17:20:58 +0200
committerMax Kellermann <max@musicpd.org>2021-08-06 17:22:41 +0200
commit0f56ddb80554e014714b9d0385a0bf175521a61d (patch)
treeafaf2739ae15cd7f927ccc1001727890b7720101
parentdde77ec6bd63414a07d280052e400cedce5197ed (diff)
python/build/libs.py: update OpenSSL to 3.0.0-beta2
-rw-r--r--python/build/libs.py4
-rw-r--r--python/build/project.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/python/build/libs.py b/python/build/libs.py
index a62a0bb67..16ff0cff7 100644
--- a/python/build/libs.py
+++ b/python/build/libs.py
@@ -379,8 +379,8 @@ ffmpeg = FfmpegProject(
)
openssl = OpenSSLProject(
- 'https://www.openssl.org/source/openssl-3.0.0-alpha16.tar.gz',
- '08ce8244b59d75f40f91170dfcb012bf25309cdcb1fef9502e39d694f883d1d1',
+ 'https://www.openssl.org/source/openssl-3.0.0-beta2.tar.gz',
+ 'e76ab22879201b12f014393ee4becec7f264d8f6955b1036839128002868df71',
'include/openssl/ossl_typ.h',
)
diff --git a/python/build/project.py b/python/build/project.py
index 374ccdb14..e0868b27b 100644
--- a/python/build/project.py
+++ b/python/build/project.py
@@ -20,7 +20,7 @@ class Project:
self.base = base
if name is None or version is None:
- m = re.match(r'^([-\w]+)-(\d[\d.]*[a-z]?[\d.]*(?:-alpha\d+)?)(\+.*)?$', self.base)
+ m = re.match(r'^([-\w]+)-(\d[\d.]*[a-z]?[\d.]*(?:-(?:alpha|beta)\d+)?)$', self.base)
if name is None: name = m.group(1)
if version is None: version = m.group(2)