handlers/rubygems: stop using mirrors

* https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65850a10f84e1b7a2cdf55392fa1d1f0717193c1

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2024-03-03 19:59:34 +02:00
parent 656f8e155e
commit 5da26b0719
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
2 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ BLACKLIST_PACKAGES = [
]
SCANDIR_BLACKLIST_URLS = [
"mirror://rubygems/(.*)", # Not browsable
"https://rubygems.org/(.*)", # Not browsable
"mirror://gentoo/(.*)", # Directory too big
"https://dev.gentoo.org/(.*)", # There shouldn't be releases here
# Waste of time to go through

View File

@ -1,5 +1,5 @@
# Copyright 2011 Corentin Chary <corentin.chary@gmail.com>
# Copyright 2020-2023 src_prepare group
# Copyright 2020-2024 src_prepare group
# Distributed under the terms of the GNU General Public License v2
import json
@ -18,11 +18,11 @@ PRIORITY = 90
def can_handle(pkg, url=None):
return url and url.startswith("mirror://rubygems/")
return url and url.startswith("https://rubygems.org/")
def guess_gem(cpv, url):
match = re.search("mirror://rubygems/(.*).gem", url)
match = re.search("https://rubygems.org/gems/(.*).gem", url)
if match:
cpv = "fake/%s" % match.group(1)