Welcome, Guest. Please login or register.
Did you miss your activation email?

Author Topic: [EN] [Solved] Missing Signed-By  (Read 883 times)

Offline maxxedout

  • User
  • Posts: 5
[EN] [Solved] Missing Signed-By
« 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
« Last Edit: 2025/01/25, 20:41:01 by maxxedout »

Offline eriefisher

  • User
  • Posts: 334
Re: Missing Signed-By
« Reply #1 on: 2025/01/25, 20:04:24 »

Offline maxxedout

  • User
  • Posts: 5
Re: Missing Signed-By
« Reply #2 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.

Offline seasons

  • User
  • Posts: 282
Re: [Solved] Missing Signed-By
« Reply #3 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.

Offline dibl

  • siduction community member
  • Global Moderator
  • User
  • *****
  • Posts: 2.430
    • Land of the Buckeye
Re: [Solved] Missing Signed-By
« Reply #4 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.
System76 Oryx Pro, Intel Core i7-11800H, SSD 970 EVO Plus;  Asus ROG STRIX X299-E, Core i7-7740X, Nvidia GTX-1060, dual monitors, SSD 860 EVO

Offline seasons

  • User
  • Posts: 282
Re: [Solved] Missing Signed-By
« Reply #5 on: 2025/01/26, 17:58:46 »
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.


Offline michaa7

  • User
  • Posts: 2.433
Re: [Solved] Missing Signed-By
« Reply #6 on: 2025/01/27, 12:45:07 »
Hi...

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

Like

Code: [Select]
...
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 ...
Ok, you can't code, but you still might be able to write a bug report for Debian's sake

Offline hendrikL

  • Administrator
  • User
  • *****
  • Gravatar
  • Posts: 1.084
Re: [Solved] Missing Signed-By
« Reply #7 on: 2025/01/27, 13:52:06 »
Hi...

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

Like

Code: [Select]
...
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.
« Last Edit: 2025/01/27, 13:55:58 by hendrikL »

Offline michaa7

  • User
  • Posts: 2.433
Re: [Solved] Missing Signed-By
« Reply #8 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.
Ok, you can't code, but you still might be able to write a bug report for Debian's sake

Offline seasons

  • User
  • Posts: 282
Re: [Solved] Missing Signed-By
« Reply #9 on: 2025/01/27, 19:38:40 »
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:

Code: [Select]
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.