Mailing List Archive

system wants to emerge unstable package
In: package.mask
...
>net-misc/asterisk-20


current stable versions are;
asterisk-18.18.1

but : emerge -avq asterisk
wants to pull 'net-misc/asterisk-18.20.2" (which is marked as unstable, why?)
Re: system wants to emerge unstable package [ In reply to ]
syscon edm wrote:
> In: package.mask
> ...
>> net-misc/asterisk-20
>
> current stable versions are;
> asterisk-18.18.1
>
> but : emerge -avq asterisk
> wants to pull 'net-misc/asterisk-18.20.2" (which is marked as unstable, why?)
>
>


If you add the -t option to emerge, it should show what is pulling it
in.  Worth a try at least.  That would be 'emerge -atvq asterisk' and
check the output.

Dale

:-)  :-) 
Re: system wants to emerge unstable package [ In reply to ]
Hm..., it still wants to emerge unstable version:

emerge -atvq asterisk
[ebuild U ] net-misc/asterisk-18.20.2

On Sun, Jan 21, 2024 at 8:19?PM Dale <rdalek1967@gmail.com> wrote:
>
> syscon edm wrote:
> > In: package.mask
> > ...
> >> net-misc/asterisk-20
> >
> > current stable versions are;
> > asterisk-18.18.1
> >
> > but : emerge -avq asterisk
> > wants to pull 'net-misc/asterisk-18.20.2" (which is marked as unstable, why?)
> >
> >
>
>
> If you add the -t option to emerge, it should show what is pulling it
> in. Worth a try at least. That would be 'emerge -atvq asterisk' and
> check the output.
>
> Dale
>
> :-) :-)
>
Re: system wants to emerge unstable package [ In reply to ]
Le 21/01/24 à 20:23, syscon edm a tapoté :
> Hm..., it still wants to emerge unstable version:
>
> emerge -atvq asterisk
> [ebuild U ] net-misc/asterisk-18.20.2
>

Please post the output of :
> $ emerge -pvt asterisk
Re: system wants to emerge unstable package [ In reply to ]
On Monday, 22 January 2024 10:20:56 GMT netfab wrote:
> Le 21/01/24 à 20:23, syscon edm a tapoté :
> > Hm..., it still wants to emerge unstable version:
> >
> > emerge -atvq asterisk
> > [ebuild U ] net-misc/asterisk-18.20.2
>
> Please post the output of :
> > $ emerge -pvt asterisk

After you change your asterisk package mask to:

=net-misc/asterisk-20.*

or,

=net-misc/asterisk:0/20

please show the output of

emerge --info | grep ACCEPT_KEYWORDS

grep asterisk -r /etc/portage

NOTE: On a stable amd64 arch, emerge will pull in the latest stable package.
Re: system wants to emerge unstable package [ In reply to ]
On Mon, Jan 22, 2024 at 4:58?AM netfab <netbox253@netc.eu> wrote:
>
> Le 21/01/24 à 20:23, syscon edm a tapoté :
> > Hm..., it still wants to emerge unstable version:
> >
> > emerge -atvq asterisk
> > [ebuild U ] net-misc/asterisk-18.20.2
> >
>
> Please post the output of :
> > $ emerge -pvt asterisk

emerge -pvt asterisk

These are the packages that would be merged, in reverse order:

Calculating dependencies... done!
Dependency resolution took 7.21 s (backtrack: 0/20).

[ebuild U ~] net-misc/asterisk-18.20.2:0/18::gentoo
[16.30.1:0/16::gentoo] USE="alsa bluetooth caps iconv mysql ssl vorbis
-blocks -calendar -cluster -codec2 -curl (-dahdi) -debug -deprecated
-doc -freetds -gtalk -http -ilbc -ldap -lua -newt -odbc -oss
-pjproject -portaudio -postgres -radius (-selinux) -snmp -span -speex
-srtp -static -statsd -syslog -systemd -unbound -xmpp"
LUA_SINGLE_TARGET="lua5-1 -lua5-3 -lua5-4" VOICEMAIL_STORAGE="-imap
-odbc (-file%*)" 27,782 KiB
Re: system wants to emerge unstable package [ In reply to ]
On Mon, Jan 22, 2024 at 6:34?AM Michael <confabulate@kintzios.com> wrote:
>
> On Monday, 22 January 2024 10:20:56 GMT netfab wrote:
> > Le 21/01/24 à 20:23, syscon edm a tapoté :
> > > Hm..., it still wants to emerge unstable version:
> > >
> > > emerge -atvq asterisk
> > > [ebuild U ] net-misc/asterisk-18.20.2
> >
> > Please post the output of :
> > > $ emerge -pvt asterisk
>
> After you change your asterisk package mask to:
>
> =net-misc/asterisk-20.*
>
> or,
>
> =net-misc/asterisk:0/20

Package: cat /etc/portage/package.mask has: >net-misc/asterisk-20

> please show the output of
>
> emerge --info | grep ACCEPT_KEYWORDS

emerge --info | grep ACCEPT_KEYWORDS
ACCEPT_KEYWORDS="amd64"

> grep asterisk -r /etc/portage
> NOTE: On a stable amd64 arch, emerge will pull in the latest stable package.

Huh, that was it,
grep asterisk -r /etc/portage
/etc/portage/package.mask:>net-misc/asterisk-20
/etc/portage/package.accept_keywords:net-misc/asterisk ~amd64

Thank you!