Re: List packages from non-default repositories

2023-10-05 Thread Jörg-Volker Peetz
Thanks for the detailed inspection. I'll have a closer look into the apt abilities. Regards, Jörg.

Re: List packages from non-default repositories

2023-10-04 Thread Max Nikulin
On 04/10/2023 15:42, Jörg-Volker Peetz wrote: $ apt list '~i' | grep -v '/testing' and $ apt-show-versions | grep -v '/testing ' show the same packages, correctly, but $ apt list '~i!~Atesting' is missing some packages. It is the reason why I added '?narrow'. Try apt list '?any-version

Re: List packages from non-default repositories

2023-10-04 Thread Jörg-Volker Peetz
Max Nikulin wrote on 04/10/2023 04:22: On 04/10/2023 01:29, Jörg-Volker Peetz wrote: Max Nikulin wrote on 03/10/2023 12:11: apt list '?narrow(~i, !~Astable|~Astable-backports|!~O^Debian$|~o|~c)' In my experience the only tool that gives correct answers, is apt-show-versions in the package of

Re: List packages from non-default repositories

2023-10-04 Thread Max Nikulin
On 04/10/2023 11:58, David Wright wrote: Explanations for these hits: linux-image is the previous kernel, xtoolwait is from squeeze, youtube-dl is the last I found before I started using yt-dlp, and I don't have backports in my sources.list. Besides youtube-dl, these packages should

Re: List packages from non-default repositories

2023-10-03 Thread David Wright
On Wed 04 Oct 2023 at 09:22:06 (+0700), Max Nikulin wrote: > On 04/10/2023 01:29, Jörg-Volker Peetz wrote: > > Max Nikulin wrote on 03/10/2023 12:11: > > > apt list '?narrow(~i, !~Astable|~Astable-backports|!~O^Debian$|~o|~c)' > > > > In my experience the only tool that gives correct answers, is >

Re: List packages from non-default repositories

2023-10-03 Thread Max Nikulin
On 04/10/2023 01:29, Jörg-Volker Peetz wrote: Max Nikulin wrote on 03/10/2023 12:11: apt list '?narrow(~i, !~Astable|~Astable-backports|!~O^Debian$|~o|~c)' In my experience the only tool that gives correct answers, is apt-show-versions in the package of the same name: $ apt-show-versions |

Re: List packages from non-default repositories

2023-10-03 Thread Jörg-Volker Peetz
Max Nikulin wrote on 03/10/2023 12:11: apt list '?narrow(~i, !~Astable|~Astable-backports|!~O^Debian$|~o|~c)' In my experience the only tool that gives correct answers, is apt-show-versions in the package of the same name: $ apt-show-versions | grep -v '/stable ' Beware, that it works with

List packages from non-default repositories

2023-10-03 Thread Max Nikulin
Hi, What is the recommended way to find deb packages installed from repositories other than stable? My current variant is apt list '?narrow(~i, !~Astable|~Astable-backports|!~O^Debian$|~o|~c)' I can not say that I fully understand how apt-patterns(7) work, so I am afraid that I may miss so