From 85e740d75a2607671349c1da06524e870e0c75b6 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Sun, 3 Dec 2023 23:41:47 +0600 Subject: [PATCH] Add keys to repositories --- .appveyor.yml | 2 ++ dist_assets/linux/AppImageBuilder.yml | 10 +++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 3a81ab462..50c63b1f3 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -20,6 +20,8 @@ for: - sh: sudo add-apt-repository -y ppa:deadsnakes/ppa - sh: sudo DEBIAN_FRONTEND=noninteractive apt-get -y update - sh: sudo DEBIAN_FRONTEND=noninteractive apt-get -y install python3.11 + # Needed for AppImage builder + - sh: sudo DEBIAN_FRONTEND=noninteractive apt-get -y install libfuse2 # Needed to build binary distribution of wx # - sh: sudo DEBIAN_FRONTEND=noninteractive apt-get -y install libnotify4 libsdl2-2.0-0 libfuse2 before_build: diff --git a/dist_assets/linux/AppImageBuilder.yml b/dist_assets/linux/AppImageBuilder.yml index 856f5813e..d3773f288 100644 --- a/dist_assets/linux/AppImageBuilder.yml +++ b/dist_assets/linux/AppImageBuilder.yml @@ -15,11 +15,15 @@ AppDir: arch: [ amd64 ] sources: - sourceline: 'deb http://us.archive.ubuntu.com/ubuntu jammy main restricted universe multiverse' -# - sourceline: 'deb http://us.archive.ubuntu.com/ubuntu jammy-updates main restricted universe multiverse' -# - sourceline: 'deb http://us.archive.ubuntu.com/ubuntu jammy-backports main restricted universe multiverse' + key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x871920d1991bc93c' + - sourceline: 'deb http://us.archive.ubuntu.com/ubuntu jammy-updates main restricted universe multiverse' + key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x871920d1991bc93c' + - sourceline: 'deb http://us.archive.ubuntu.com/ubuntu jammy-backports main restricted universe multiverse' + key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x871920d1991bc93c' - sourceline: 'deb http://us.archive.ubuntu.com/ubuntu jammy-security main restricted universe multiverse' + key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x871920d1991bc93c' - sourceline: 'deb https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu jammy main' - key_url: 'keyserver.ubuntu.com/pks/lookup?op=get&search=0xf23c5a6cf475977595c89f51ba6932366a755776' + key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0xf23c5a6cf475977595c89f51ba6932366a755776' include: - python3.11