From 5ddb3d793626f630aa46726c1d80c9d4cb80c3f2 Mon Sep 17 00:00:00 2001 From: Johannes Segitz Date: Thu, 5 Mar 2026 09:35:42 +0100 Subject: [PATCH 1/3] get chrome repos via https --- opi/plugins/chrome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opi/plugins/chrome.py b/opi/plugins/chrome.py index 34bc65b..62f15aa 100644 --- a/opi/plugins/chrome.py +++ b/opi/plugins/chrome.py @@ -22,7 +22,7 @@ def run(cls, query): opi.add_repo( filename = 'google-chrome', name = 'google-chrome', - url = 'http://dl.google.com/linux/chrome/rpm/stable/x86_64', + url = 'https://dl.google.com/linux/chrome/rpm/stable/x86_64', gpgkey = 'https://dl.google.com/linux/linux_signing_key.pub' ) From eb2d46faf30bc64fd624bed05a78c0fb257d77dd Mon Sep 17 00:00:00 2001 From: Johannes Segitz Date: Thu, 5 Mar 2026 09:36:48 +0100 Subject: [PATCH 2/3] get anydesk repo via https --- opi/plugins/anydesk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opi/plugins/anydesk.py b/opi/plugins/anydesk.py index 503a9af..dc297f4 100644 --- a/opi/plugins/anydesk.py +++ b/opi/plugins/anydesk.py @@ -14,7 +14,7 @@ def run(cls, query): opi.add_repo( filename = 'anydesk', name = 'anydesk', - url = 'http://rpm.anydesk.com/opensuse/$basearch/', + url = 'https://rpm.anydesk.com/opensuse/$basearch/', gpgkey = 'https://keys.anydesk.com/repos/RPM-GPG-KEY' ) From afadb2eb87679b44fb54709a9ff09f54ffc13d34 Mon Sep 17 00:00:00 2001 From: Johannes Segitz Date: Thu, 5 Mar 2026 09:41:48 +0100 Subject: [PATCH 3/3] fetch openh264 repos via https --- opi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opi/__init__.py b/opi/__init__.py index 2e8957e..42b3780 100644 --- a/opi/__init__.py +++ b/opi/__init__.py @@ -154,7 +154,7 @@ def add_openh264_repo(dup=False): project = project.replace('openSUSE Leap', 'openSUSE Leap 16') project = project.replace(':', '_').replace(' ', '_') - url = f'http://codecs.opensuse.org/openh264/{project}/' + url = f'https://codecs.opensuse.org/openh264/{project}/' existing_repo = get_enabled_repo_by_url(url) if existing_repo: print(f"Installing from existing repo '{existing_repo.name_expanded()}'")