AppImageCrafters / appimage-builder

GNU/Linux packaging solution using the AppImage format
MIT License
316 stars 58 forks source link

Problem with key for deb package server #301

Open R0land013 opened 1 year ago

R0land013 commented 1 year ago

Hello. I am a newcomer to Linux and I am trying to build a PyQt5 app, using the recipe which is in the repository. But I get this error while building:

INFO:apt:apt-get update Get:1 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB] Err:1 http://archive.ubuntu.com/ubuntu jammy InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 871920D1991BC93C Reading package lists... W: GPG error: http://archive.ubuntu.com/ubuntu jammy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 871920D1991BC93C E: The repository 'http://archive.ubuntu.com/ubuntu jammy InRelease' is not signed. ERROR:root:"apt-get update" execution failed Traceback (most recent call last): File "/usr/local/bin/appimage-builder", line 8, in <module> sys.exit(__main__()) File "/usr/local/lib/python3.10/dist-packages/appimagebuilder/__main__.py", line 50, in __main__ invoker.execute(commands) File "/usr/local/lib/python3.10/dist-packages/appimagebuilder/invoker.py", line 29, in execute command() File "/usr/local/lib/python3.10/dist-packages/appimagebuilder/commands/apt_deploy.py", line 46, in __call__ deployed_packages = apt_deploy.deploy( File "/usr/local/lib/python3.10/dist-packages/appimagebuilder/modules/deploy/apt/deploy.py", line 39, in deploy self._prepare_apt_venv() File "/usr/local/lib/python3.10/dist-packages/appimagebuilder/modules/deploy/apt/deploy.py", line 48, in _prepare_apt_venv self.apt_venv.update() File "/usr/local/lib/python3.10/dist-packages/appimagebuilder/modules/deploy/apt/venv.py", line 161, in update shell.assert_successful_result(_proc) File "/usr/local/lib/python3.10/dist-packages/appimagebuilder/utils/shell.py", line 35, in assert_successful_result raise RuntimeError( RuntimeError: "apt-get update" execution failed with code 100 Error: Process completed with exit code 1.

This is the part of AppImageBuilder.yml that I am using for getting the deb packages:

`apt:e arch: amd64 sources:

How could I resolve this?