Siduction Forum

Siduction Forum => Upgrade Warnings => Topic started by: maxxedout on 2025/01/25, 19:43:35

Title: [Solved] Missing Signed-By
Post by: maxxedout on 2025/01/25, 19:43:35
After do a DU today I get this message with apt update on most source lists.
Missing Signed-By in the sources.list(5) entry for 'http://packages.siduction.org/extra'

Can someone please point to info on how to fix this?
Thanks
Title: Re: Missing Signed-By
Post by: eriefisher on 2025/01/25, 20:04:24
Somebody didn't bother to look.

https://forum.siduction.org/index.php?topic=9606.0
Title: Re: Missing Signed-By
Post by: maxxedout on 2025/01/25, 20:37:48
Thanks, that fixed it.

But just because i didn't fine this post doesn't mean i didn't try so solve this on my own.
Title: Re: [Solved] Missing Signed-By
Post by: seasons on 2025/01/26, 01:13:02
Is there any way to tell apt to stop nagging me with these "Notices"? My sources work fine as is and I don't feel like changing them.
Title: Re: [Solved] Missing Signed-By
Post by: dibl on 2025/01/26, 10:42:15
In the official Debian manpages for Buster:

https://manpages.debian.org/buster/apt/sources.list.5.en.html

They wrote "It is intended to make this format gradually the default format, deprecating the previously described one-line-style format ,,,"

To me, that does not indicate that there will be an escape option.
Title: Re: [Solved] Missing Signed-By
Post by: seasons on 2025/01/26, 17:58:46
Quote from: dibl on 2025/01/26, 10:42:15
They wrote "It is intended to make this format gradually the default format, deprecating the previously described one-line-style format"

Okay, you convinced me (thanks for the moral support).
I converted everything but the steam sources. That file is part of the steam-launcher package though, so I don't want to modify it. apt is not complaining about that one anyway (maybe because it's signed?). Hopefully, steam will update it to the new format before the old one becomes unaccepted.

Title: Re: [Solved] Missing Signed-By
Post by: michaa7 on 2025/01/27, 12:45:07
Hi...

How do I configure apt for different suites (experimental, unstable, testing)?

Like

...
suites:  experimental unstable testing
...


within one "block" (don't know a better suitable word) or do I need individual "blocks" for each of them? It's suites, wich suggests there could be more than one ...
Title: Re: [Solved] Missing Signed-By
Post by: hendrikL on 2025/01/27, 13:52:06
Quote from: michaa7 on 2025/01/27, 12:45:07
Hi...

How do I configure apt for different suites (experimental, unstable, testing)?

Like

...
suites:  experimental unstable testing
...


within one "block" (don't know a better suitable word) or do I need individual "blocks" for each of them? It's suites, wich suggests there could be more than one ...

schau mal da  hin:
https://forum.siduction.org/index.php?topic=9606.msg76527#msg76527

And yes, I tested it, and it works.
Title: Re: [Solved] Missing Signed-By
Post by: michaa7 on 2025/01/27, 14:35:03
... sorry for my double posting. I couldn't find the first one this morning and then I thougt I had somehow messed up in the night.

Thanks for pointing me to this posting.
Title: Re: [Solved] Missing Signed-By
Post by: seasons on 2025/01/27, 19:38:40
Quote from: michaa7 on 2025/01/27, 12:45:07
do I need individual "blocks" for each of them?

I had to do multiple blocks for deb-multimedia because not all suites have the same "components" (their experimental suite does not have non-free). A unified block technically works, but apt gives warnings that it couldn't find non-free for experimental.
So I ended up with:

Types: deb deb-src
URIs: https://mirror.csclub.uwaterloo.ca/debian-multimedia/
Suites: unstable
Components: main non-free
Signed-By: /usr/share/keyrings/deb-multimedia-keyring.pgp

Types: deb deb-src
URIs: https://mirror.csclub.uwaterloo.ca/debian-multimedia/
Suites: experimental
Components: main
Signed-By: /usr/share/keyrings/deb-multimedia-keyring.pgp


While I hope this suffices for many years to come, if anyone knows how I can simplify that (and not get apt warnings), it would be an interesting learning exercise for me.