Re: [gentoo-user] emerge world problem with one package

2014-10-26 Thread Daniel Frey

On 26/10/2014 8:58 AM, Jacques Montier wrote:

Hello all,

Since few, when i run emerge -auvDN world, i get hugin to re-emerge 
again and again (with r to force re-install)...


[ebuild  rR   ~] media-gfx/hugin-2014.0.0-r1  USE=python -debug 
-lapack -sift LINGUAS=fr -cs -da -de -en_GB -es -eu -fi -hu -it -ja 
-nl -pl -pt_BR -ro -ru -sk -sv -zh_CN -zh_TW 
PYTHON_SINGLE_TARGET=python2_7 (-python3_2) -python3_3 -python3_4 
PYTHON_TARGETS=python2_7 python3_3 (-python3_2) -python3_4 0 kB


I don't have any PYTHON_SINGLE_TARGET and PYTHON_TARGETS lines in 
make.conf.




This may be a python package problem elsewhere, have you tried running 
`python-updater`?


Dan



Re: [gentoo-user] emerge world problem with one package

2014-10-26 Thread Jacques Montier
2014-10-26 17:43 GMT+01:00 Daniel Frey djqf...@gmail.com:

 On 26/10/2014 8:58 AM, Jacques Montier wrote:

 Hello all,

 Since few, when i run emerge -auvDN world, i get hugin to re-emerge again
 and again (with r to force re-install)...

 [ebuild  rR   ~] media-gfx/hugin-2014.0.0-r1  USE=python -debug -lapack
 -sift LINGUAS=fr -cs -da -de -en_GB -es -eu -fi -hu -it -ja -nl -pl
 -pt_BR -ro -ru -sk -sv -zh_CN -zh_TW PYTHON_SINGLE_TARGET=python2_7
 (-python3_2) -python3_3 -python3_4 PYTHON_TARGETS=python2_7 python3_3
 (-python3_2) -python3_4 0 kB

 I don't have any PYTHON_SINGLE_TARGET and PYTHON_TARGETS lines in
 make.conf.


 This may be a python package problem elsewhere, have you tried running
 `python-updater`?

 Dan



Thanks Dan,

Yes, i tried python-updater, but each time, it compiled the two same
packages : sys-libs/libcap-ng-0.7.3 and net-misc/dropbox-2.10.2.
Then again
# emerge -uvDN world
#[ebuild  rR   ~] media-gfx/hugin-2014.0.0-r1


Re: [gentoo-user] emerge world problem with one package

2014-10-26 Thread Alexander Kapshuk
On Sun, Oct 26, 2014 at 5:58 PM, Jacques Montier jmont...@gmail.com wrote:
 [ebuild  rR   ~] media-gfx/hugin-2014.0.0-r1  USE=python -debug -lapack
 -sift LINGUAS=fr -cs -da -de -en_GB -es -eu -fi -hu -it -ja -nl -pl -pt_BR
 -ro -ru -sk -sv -zh_CN -zh_TW PYTHON_SINGLE_TARGET=python2_7 (-python3_2)
 -python3_3 -python3_4 PYTHON_TARGETS=python2_7 python3_3 (-python3_2)
 -python3_4 0 kB

 I don't have any PYTHON_SINGLE_TARGET and PYTHON_TARGETS lines in make.conf.

Those are defined in your system profile:
grep -i '^python_[st].*' /usr/portage/profiles/base/make.defaults
PYTHON_TARGETS=python2_7 python3_3
PYTHON_SINGLE_TARGET=python2_7

See if this helps, http://forums.gentoo.org/viewtopic-t-949306.html.



Re: [gentoo-user] emerge world problem with one package [solved]

2014-10-26 Thread Jacques Montier
2014-10-26 19:47 GMT+01:00 Alexander Kapshuk alexander.kaps...@gmail.com:

 On Sun, Oct 26, 2014 at 5:58 PM, Jacques Montier jmont...@gmail.com
 wrote:
  [ebuild  rR   ~] media-gfx/hugin-2014.0.0-r1  USE=python -debug -lapack
  -sift LINGUAS=fr -cs -da -de -en_GB -es -eu -fi -hu -it -ja -nl -pl
 -pt_BR
  -ro -ru -sk -sv -zh_CN -zh_TW PYTHON_SINGLE_TARGET=python2_7
 (-python3_2)
  -python3_3 -python3_4 PYTHON_TARGETS=python2_7 python3_3 (-python3_2)
  -python3_4 0 kB
 
  I don't have any PYTHON_SINGLE_TARGET and PYTHON_TARGETS lines in
 make.conf.

 Those are defined in your system profile:
 grep -i '^python_[st].*' /usr/portage/profiles/base/make.defaults
 PYTHON_TARGETS=python2_7 python3_3
 PYTHON_SINGLE_TARGET=python2_7

 See if this helps, http://forums.gentoo.org/viewtopic-t-949306.html.



Hello,

Yes Alexander your link helped me !
So i now understand what happened.
I upgraded hugin and his dependency  libpano13 from stable to ~ by setting
these two packages into package.keywords.
Then i (accidently) removed libpano13 from keywords... :-(
That's why i got the rR (force to be rebuilt Hugin) each time i ran
emerge -uvDN world.
Now everything is ok !

Thanks a lot to Alexander and Dan !

Regards,


Re: [gentoo-user] emerge world problem with one package [solved]

2014-10-26 Thread Alexander Kapshuk
On Sun, Oct 26, 2014 at 10:44 PM, Jacques Montier jmont...@gmail.com wrote:


 2014-10-26 19:47 GMT+01:00 Alexander Kapshuk alexander.kaps...@gmail.com:

 On Sun, Oct 26, 2014 at 5:58 PM, Jacques Montier jmont...@gmail.com
 wrote:
  [ebuild  rR   ~] media-gfx/hugin-2014.0.0-r1  USE=python -debug -lapack
  -sift LINGUAS=fr -cs -da -de -en_GB -es -eu -fi -hu -it -ja -nl -pl
  -pt_BR
  -ro -ru -sk -sv -zh_CN -zh_TW PYTHON_SINGLE_TARGET=python2_7
  (-python3_2)
  -python3_3 -python3_4 PYTHON_TARGETS=python2_7 python3_3 (-python3_2)
  -python3_4 0 kB
 
  I don't have any PYTHON_SINGLE_TARGET and PYTHON_TARGETS lines in
  make.conf.

 Those are defined in your system profile:
 grep -i '^python_[st].*' /usr/portage/profiles/base/make.defaults
 PYTHON_TARGETS=python2_7 python3_3
 PYTHON_SINGLE_TARGET=python2_7

 See if this helps, http://forums.gentoo.org/viewtopic-t-949306.html.



 Hello,

 Yes Alexander your link helped me !
 So i now understand what happened.
 I upgraded hugin and his dependency  libpano13 from stable to ~ by setting
 these two packages into package.keywords.
 Then i (accidently) removed libpano13 from keywords... :-(
 That's why i got the rR (force to be rebuilt Hugin) each time i ran emerge
 -uvDN world.
 Now everything is ok !

 Thanks a lot to Alexander and Dan !

 Regards,




Good to hear. Thanks for letting us know.



Re: [gentoo-user] emerge world problem

2008-03-12 Thread Alan McKinnon
On Wednesday 12 March 2008, Robert Stockdale IV wrote:
 Hello all:
 I have been trying to emerge world and the last 3 times I've been
 getting this error message when Epiphany is in the emerge world list.
 The errror from the out put is:

 make[2]: Nothing to be done for `all-am'.
 make[2]: Leaving directory
 `/var/tmp/portage/www-client/epiphany-2.20.3 /work/epiphany-2.20.3'
 make[1]: Leaving directory
 `/var/tmp/portage/www-client/epiphany-2.20.3 /work/epiphany-2.20.3'

probably same cause as your problem with wine. Fix that, then try again. 
Post back if this problem then still persists



-- 
Alan McKinnon
alan dot mckinnon at gmail dot com

-- 
gentoo-user@lists.gentoo.org mailing list



Re: [gentoo-user] emerge world problem

2006-06-03 Thread Jeremy Teale

On Jun 3, 2006, at 10:31 AM, Roberto Zandonati wrote:


hi at all, i've a problem when I try to do emerge world. I've the
following outpu: (I've gnome 2,14)

---BEGIN OUTPUT--

# emerge -av world

These are the packages that I would merge, in order:

Calculating world dependencies
!!! Packages for the following atoms are either all
!!! masked or don't exist:
sci-misc/boinc media-sound/banshee

-
!!! All ebuilds that could satisfy =gnome-base/libgnome-2.13 have
been masked.
!!! One of the following masked packages is required to complete  
your request:

- gnome-base/libgnome-2.14.0 (masked by: ~x86 keyword)
- gnome-base/libgnome-2.14.1 (masked by: ~x86 keyword)

For more information, see MASKED PACKAGES section in the emerge man  
page or

refer to the Gentoo Handbook.
!!!(dependency required by gnome-base/gnome- 
panel-2.14.1 [ebuild])




!!! Problem resolving dependencies for gnome-base/gnome-panel
!!! Depgraph creation failed.

---END OUTPUT--

I'd recommend reading
http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=3chap=3
and
http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=2chap=1
You're trying to emerge packages that depend on something that has  
not been put into the stable tree yet.
You can try adding the packages to your /etc/portage/package.keywords  
file
(echo ' gnome-base/libgnome-2.14.1 ~x86'   /etc/portage/ 
package.keywords). 
 
--

gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge world problem

2006-06-03 Thread Jeremy Teale


On Jun 3, 2006, at 11:19 AM, Jeremy Teale wrote:

I'd recommend reading
http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=3chap=3
and
http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=2chap=1
You're trying to emerge packages that depend on something that has  
not been put into the stable tree yet.
You can try adding the packages to your /etc/portage/ 
package.keywords file
(echo ' gnome-base/libgnome-2.14.1 ~x86'   /etc/portage/ 
package.keywords).--

gentoo-user@gentoo.org mailing list



Sorry, that should be '=gnome-base/libgnome-2.14.1 ~x86'. Or to do a  
general keywords entry, 'gnome-base/libgnome ~x86' which is version  
independent.

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge world problem

2006-05-31 Thread Teresa and Dale
Roberto Zandonati wrote:

 hi at all, i've a problem when i try to do emerge world, i've the
 follow message:

 [blocks B ] sys-apps/pam-login (is blocking
 sys-apps/shadow-4.0.15-r2)

 what i've to do? remove pam-login?

 bye

From the forums:

 emerge --buildpkgonly --nodeps shadow  emerge -C pam-login  emerge
 --usepkgonly shadow


It worked for me so far.

Dale

:-)  :-)

-- 
gentoo-user@gentoo.org mailing list