Re: Listing packages installed from experimental

2014-06-14 Thread Tom H
On Tue, Jun 10, 2014 at 6:41 PM, Javier Barroso  wrote:
> El 10/06/2014 02:25, "David Glover-Aoki"  escribió:
>>
>> I'm running wheezy but have some packages installed from experimental.
>>
>> How can I list all the packages currently installed from experimental?
>
> After having quickly  read this thread..
>
> I recommend the new command :
>
> apt list | grep experimental

apt list --installed | grep experimental


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAOdo=sz7tnw8h919sfrsp7oa-4oafq43mvh-ph4_dmj8q40...@mail.gmail.com



Re: Listing packages installed from experimental

2014-06-12 Thread Andrei POPESCU
On Ma, 10 iun 14, 15:19:18, David Glover-Aoki wrote:
 
> Here's the output I get from apt-show-versions, for a package I know 
> is from experimental:

Please show the output of 'apt-cache policy deluge-common'.

> deluge-common 1.3.6-1 newer than version in archive

This works fine here:

$ apt-show-versions | grep experimental
light-locker:i386/experimental 1.4.0-1 uptodate

> This is kinda disappointing, it doesn't actually say where it's from, 
> just that it's "newer".
> 
> Is there a way of explicitly listing packages from experimental?

Do you still have experimental in your source.list? Are your package 
lists updated ('apt-get update' or equivalent)?

Kind regards,
Andrei
-- 
http://wiki.debian.org/FAQsFromDebianUser
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic
http://nuvreauspam.ro/gpg-transition.txt


signature.asc
Description: Digital signature


Re: Listing packages installed from experimental

2014-06-10 Thread Javier Barroso
Sorry for html ... ( how can I skip HTML from Gmail Android app?)
El 10/06/2014 02:25, "David Glover-Aoki"  escribió:
>
> I'm running wheezy but have some packages installed from experimental.
>
> How can I list all the packages currently installed from experimental?

After having quickly  read this thread..

I recommend the new command :

apt list | grep experimental

I don't understand your last question!

Regards


Re: Listing packages installed from experimental

2014-06-10 Thread David Glover-Aoki
On Mon Jun 9, 2014, at 8:14 PM, Ralf Mardorf  wrote:

> It can't harm to do some research ;).

Ah, I was waiting for this complaint. Good to get it out of the way, I suppose. 
Had I not done any research, I wouldn't have bothered posting.

All the Google searches I could think of did not reveal the existence of 
"apt-show-versions".

Here's the output I get from apt-show-versions, for a package I know is from 
experimental:

deluge-common 1.3.6-1 newer than version in archive

This is kinda disappointing, it doesn't actually say where it's from, just that 
it's "newer".

Is there a way of explicitly listing packages from experimental?

-- 
David Glover-Aoki | https://david.gloveraoki.net/contact
PGP key 5518C7DE  | Amateur Radio KJ6TLX





signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: Listing packages installed from experimental

2014-06-10 Thread Tom H
On Tue, Jun 10, 2014 at 5:12 AM, Filip  wrote:
> Tom H  writes:
>>
>> aptitude search -F "%p %t %v" "?narrow(?installed,?archive(unstable)"
>
> I added a missing closing brace

Sorry...


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAOdo=swzzsh8ly3hgcxaaeolyih56usqacohusqdxug5_n8...@mail.gmail.com



Re: Listing packages installed from experimental

2014-06-10 Thread Filip
Tom H  writes:

>>
>> When I run:
>>
>> $ aptitude search "~S ~i ~Aunstable"
>>
>> I get a lot more than only the packages that where installed from sid
>> though. The installed packages for which the version in Jessie and Sid
>> is the same are included in the list too.
>>
>> Is it possible to create a query in aptitude that shows the packages are
>> *really* taken from sid ?
>
> You can check from where these packages are coming with:
>
> aptitude search -F "%p %t %v" "~S ~i ~Aunstable"
>
> %p : name of package
> %t : name of archive
> %v : version
>
> Since Sven posted the same search, I have to assume that I haven't
> used the wrong short options. I don't have the time to check the
> documentation but you could try the long options just in case:
>
> aptitude search -F "%p %t %v" "?narrow(?installed,?archive(unstable)"

I added a missing closing brace, and piped the output to grep, and that
gives me the result I want:

$ aptitude search -F "%p %t %v"
"?narrow(?installed,?archive(unstable))"|grep -v testing

As the archive names are now listed in the output, I filter the output
further with grep.


pgpfUQ_7SdcUQ.pgp
Description: PGP signature


Re: Listing packages installed from experimental

2014-06-10 Thread Tom H
On Tue, Jun 10, 2014 at 4:38 AM, Filip  wrote:
> Tom H  writes:
>> On Mon, Jun 9, 2014 at 8:25 PM, David Glover-Aoki  
>> wrote:
>>>
>>> I'm running wheezy but have some packages installed from experimental.
>>>
>>> How can I list all the packages currently installed from experimental?
>>
>> aptitude search "~S ~i ~Aexperimental"
>
> That doesn't work as expected for me.
>
> I am running Jessie, with only one package from Sid, as verified with
> apt-show versions mentioned earlier, and confirmed with apt-cache
> policy.
>
> I have set the pin priority of sid to 1 in /etc/apt/preferences do that
> there is no automatic upgrade to the packages from unstable.
>
> When I run:
>
> $ aptitude search "~S ~i ~Aunstable"
>
> I get a lot more than only the packages that where installed from sid
> though. The installed packages for which the version in Jessie and Sid
> is the same are included in the list too.
>
> Is it possible to create a query in aptitude that shows the packages are
> *really* taken from sid ?

You can check from where these packages are coming with:

aptitude search -F "%p %t %v" "~S ~i ~Aunstable"

%p : name of package
%t : name of archive
%v : version

Since Sven posted the same search, I have to assume that I haven't
used the wrong short options. I don't have the time to check the
documentation but you could try the long options just in case:

aptitude search -F "%p %t %v" "?narrow(?installed,?archive(unstable)"


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAOdo=szqxt+oupbpwf5h2zzyta4kxshxrvqm20qkmai72jr...@mail.gmail.com



Re: Listing packages installed from experimental

2014-06-10 Thread Filip
Tom H  writes:

> On Mon, Jun 9, 2014 at 8:25 PM, David Glover-Aoki  
> wrote:
>> I'm running wheezy but have some packages installed from experimental.
>>
>> How can I list all the packages currently installed from experimental?
>
> aptitude search "~S ~i ~Aexperimental"

That doesn't work as expected for me.

I am running Jessie, with only one package from Sid, as verified with
apt-show versions mentioned earlier, and confirmed with apt-cache
policy.

I have set the pin priority of sid to 1 in /etc/apt/preferences do that
there is no automatic upgrade to the packages from unstable.

When I run:

$ aptitude search "~S ~i ~Aunstable"

I get a lot more than only the packages that where installed from sid
though. The installed packages for which the version in Jessie and Sid
is the same are included in the list too.

Is it possible to create a query in aptitude that shows the packages are
*really* taken from sid ?


pgpdUzaFFZypQ.pgp
Description: PGP signature


Re: Listing packages installed from experimental

2014-06-09 Thread Tom H
On Mon, Jun 9, 2014 at 8:25 PM, David Glover-Aoki  wrote:
> I'm running wheezy but have some packages installed from experimental.
>
> How can I list all the packages currently installed from experimental?

aptitude search "~S ~i ~Aexperimental"


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAOdo=swszmtjzenuyah+7ugcys92k9kq+na1xvlrr_4bzzq...@mail.gmail.com



Re: Listing packages installed from experimental

2014-06-09 Thread Sven Joachim
On 2014-06-10 02:25 +0200, David Glover-Aoki wrote:

> I'm running wheezy but have some packages installed from experimental.
>
> How can I list all the packages currently installed from experimental?

$ aptitude search "~S ~i ~Aexperimental"

HTH,
Sven


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/8738fdwesy@turtle.gmx.de



Re: Listing packages installed from experimental

2014-06-09 Thread Ralf Mardorf
On Tue, 2014-06-10 at 05:14 +0200, Ralf Mardorf wrote:
> On Mon, 2014-06-09 at 17:25 -0700, David Glover-Aoki wrote:
> > I'm running wheezy but have some packages installed from experimental.
> > 
> > How can I list all the packages currently installed from experimental?
> 
> It can't harm to do some research ;).
> 
> https://packages.debian.org/search?keywords=apt-show-versions
> http://man.cx/apt-show-versions
> 
> root@debi386:~# apt-show-versions 
> [snip]
> zip/wheezy uptodate 3.0-6
> zita-ajbridge/jessie uptodate 0.4.0-1
> [snip]
> root@debi386:~# apt-get update
> [snip]
> root@debi386:~# apt-show-versions
> [snip]
> zip/unknown upgradeable from 3.0-6 to 3.0-8
> zita-ajbridge/unknown uptodate 0.4.0-1
> [snip]

PS:

apt-show-versions | grep /wheezy
apt-show-versions | grep /unknown

I suspect packages from experimental are also shown and you can grep for
them.



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/1402370391.813.200.camel@archlinux



Re: Listing packages installed from experimental

2014-06-09 Thread Ralf Mardorf
On Mon, 2014-06-09 at 17:25 -0700, David Glover-Aoki wrote:
> I'm running wheezy but have some packages installed from experimental.
> 
> How can I list all the packages currently installed from experimental?

It can't harm to do some research ;).

https://packages.debian.org/search?keywords=apt-show-versions
http://man.cx/apt-show-versions

root@debi386:~# apt-show-versions 
[snip]
zip/wheezy uptodate 3.0-6
zita-ajbridge/jessie uptodate 0.4.0-1
[snip]
root@debi386:~# apt-get update
[snip]
root@debi386:~# apt-show-versions
[snip]
zip/unknown upgradeable from 3.0-6 to 3.0-8
zita-ajbridge/unknown uptodate 0.4.0-1
[snip]



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/1402370040.813.198.camel@archlinux



Listing packages installed from experimental

2014-06-09 Thread David Glover-Aoki
I'm running wheezy but have some packages installed from experimental.

How can I list all the packages currently installed from experimental?

-- 
David Glover-Aoki | https://david.gloveraoki.net/contact
PGP key 5518C7DE  | Amateur Radio KJ6TLX





signature.asc
Description: Message signed with OpenPGP using GPGMail