Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Portage & Programming
  • Search

Portage output

Problems with emerge or ebuilds? Have a basic programming question about C, PHP, Perl, BASH or something else?
Post Reply
Advanced search
11 posts • Page 1 of 1
Author
Message
oKtosiTe
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 122
Joined: Mon Aug 15, 2005 6:30 pm
Location: Halmstad, Sweden

Portage output

  • Quote

Post by oKtosiTe » Wed Oct 04, 2006 11:54 am

Lately I've been getting some output that I've been unable to solve.

Code: Select all

$ /usr/sbin/regenworld
!!! Invalid atom: null/amule-2*
!!! Invalid atom: dev-lang/php-5*
I don't have either of these in my world file or in any of my /etc/portage/* files.

Next up: [SOLVED]

Code: Select all

$ revdep-rebuild
Configuring search environment for revdep-rebuild

Checking reverse dependencies...

Packages containing binaries and libraries broken by a package update
will be emerged.

Collecting system binaries and libraries... done.
  (/root/.revdep-rebuild.1_files)

Collecting complete LD_LIBRARY_PATH... done.
  (/root/.revdep-rebuild.2_ldpath)

Checking dynamic linking consistency...
  broken /usr/lib/gstreamer-0.8/libgstmodplug.la (requires /usr/lib/libgstreamer -0.8.la)
 done.
  (/root/.revdep-rebuild.3_rebuild)

Assigning files to ebuilds... done.
  (/root/.revdep-rebuild.4_ebuilds)

Evaluating package order... done.
  (/root/.revdep-rebuild.5_order)

Dynamic linking on your system is consistent... All done.
I've been unable to determine what ebuild /usr/lib/gstreamer-0.8/libgstmodplug.la belongs to... I wish to remove all gstreamer related files from my installation.

Both are not big issues, but maybe I can learn something here.
Last edited by oKtosiTe on Wed Oct 11, 2006 2:26 pm, edited 1 time in total.
Ask Ubuntu | Super User
Top
Dammital
Apprentice
Apprentice
Posts: 189
Joined: Fri Nov 05, 2004 8:15 pm

Re: Portage output

  • Quote

Post by Dammital » Wed Oct 04, 2006 1:43 pm

oKtosiTe wrote:Checking dynamic linking consistency...
broken /usr/lib/gstreamer-0.8/libgstmodplug.la (requires /usr/lib/libgstreamer -0.8.la)
done.
I've been unable to determine what ebuild /usr/lib/gstreamer-0.8/libgstmodplug.la belongs to... I wish to remove all gstreamer related files from my installation.
It's okay to delete it.
Top
sonicbhoc
Veteran
Veteran
User avatar
Posts: 1805
Joined: Mon Oct 24, 2005 7:52 pm
Location: In front of the computer screen
Contact:
Contact sonicbhoc
Website

  • Quote

Post by sonicbhoc » Wed Oct 04, 2006 3:14 pm

to fix the first problem, did you try "emerge --sync && emerge portage"?
Top
oKtosiTe
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 122
Joined: Mon Aug 15, 2005 6:30 pm
Location: Halmstad, Sweden

Re: Portage output

  • Quote

Post by oKtosiTe » Wed Oct 04, 2006 11:00 pm

Dammital wrote:
oKtosiTe wrote:Checking dynamic linking consistency...
broken /usr/lib/gstreamer-0.8/libgstmodplug.la (requires /usr/lib/libgstreamer -0.8.la)
done.
I've been unable to determine what ebuild /usr/lib/gstreamer-0.8/libgstmodplug.la belongs to... I wish to remove all gstreamer related files from my installation.
It's okay to delete it.
I wanted a second opinion. Gone.
sonicbhoc wrote:to fix the first problem, did you try "emerge --sync && emerge portage"?
That doesn't seem to help.
Ask Ubuntu | Super User
Top
Dammital
Apprentice
Apprentice
Posts: 189
Joined: Fri Nov 05, 2004 8:15 pm

Re: Portage output

  • Quote

Post by Dammital » Wed Oct 04, 2006 11:21 pm

oKtosiTe wrote:!!! Invalid atom: null/amule-2*
!!! Invalid atom: dev-lang/php-5*
Do either of these appear in your /var/log/emerge.log ?

FWIW, the diagnostic appears to be issued from within /usr/lib/portage/pym/portage_dep.py.
Top
oKtosiTe
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 122
Joined: Mon Aug 15, 2005 6:30 pm
Location: Halmstad, Sweden

Re: Portage output

  • Quote

Post by oKtosiTe » Wed Oct 04, 2006 11:43 pm

Dammital wrote:
oKtosiTe wrote:!!! Invalid atom: null/amule-2*
!!! Invalid atom: dev-lang/php-5*
Do either of these appear in your /var/log/emerge.log ?

FWIW, the diagnostic appears to be issued from within /usr/lib/portage/pym/portage_dep.py.
No, only on stdout.
Ask Ubuntu | Super User
Top
Dammital
Apprentice
Apprentice
Posts: 189
Joined: Fri Nov 05, 2004 8:15 pm

  • Quote

Post by Dammital » Thu Oct 05, 2006 1:13 am

Okay, I looked at portage_dep.py 'cause I'm at loose ends this evening.

The "Invalid atom:" error message is issued when the get_operator internal function fails to find a valid operator on a particular dependency. In your case, the dep:
dev-lang/php-5*
should instead be prefixed with one of =<>. Now where regenworld is picking up these strings without leading =<> is beyond me.

Just for grins, could you do:

Code: Select all

cd /var/db/pkg
grep -R "php-5\*" *
and see whether all occurrences of php-5* have valid operators in your database? I don't know if the portage db functions look in there for dependencies.
Top
oKtosiTe
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 122
Joined: Mon Aug 15, 2005 6:30 pm
Location: Halmstad, Sweden

  • Quote

Post by oKtosiTe » Thu Oct 05, 2006 9:25 am

Dammital wrote:Just for grins, could you do:

Code: Select all

cd /var/db/pkg
grep -R "php-5\*" *
and see whether all occurrences of php-5* have valid operators in your database? I don't know if the portage db functions look in there for dependencies.
Here's my output:

Code: Select all

dev-php5/pecl-zip-1.0/DEPEND:           dev-libs/zziplib =dev-lang/php-5*  !bootstrap? ( sys-devel/patch )
dev-php5/pecl-zip-1.0/DEPEND:           dev-libs/zziplib =dev-lang/php-5*  !bootstrap? ( sys-devel/patch )
dev-php5/pecl-zip-1.0/DEPEND:           dev-libs/zziplib =dev-lang/php-5*  !bootstrap? ( sys-devel/patch )
dev-php5/pecl-zip-1.0/RDEPEND: =dev-lang/php-5*   =dev-lang/php-5*   =dev-lang/php-5*
Ask Ubuntu | Super User
Top
oKtosiTe
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 122
Joined: Mon Aug 15, 2005 6:30 pm
Location: Halmstad, Sweden

!!! Invalid atom:

  • Quote

Post by oKtosiTe » Wed Oct 11, 2006 2:27 pm

So, I'm still getting this:

Code: Select all

$ /usr/sbin/regenworld
!!! Invalid atom: null/amule-2*
!!! Invalid atom: dev-lang/php-5*
Ask Ubuntu | Super User
Top
oKtosiTe
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 122
Joined: Mon Aug 15, 2005 6:30 pm
Location: Halmstad, Sweden

And now...

  • Quote

Post by oKtosiTe » Tue Dec 05, 2006 5:10 pm

Code: Select all

# regenworld
!!! Invalid atom: null/amule-2*
* mysql is an ambigous package name, candidates are:
['dev-db/mysql', 'virtual/mysql']
!!! Invalid atom: dev-lang/php-5*
* >mysql-5.0 is an ambigous package name, candidates are:
['dev-db/mysql', 'virtual/mysql']
Ask Ubuntu | Super User
Top
oKtosiTe
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 122
Joined: Mon Aug 15, 2005 6:30 pm
Location: Halmstad, Sweden

More than a year has passed...

  • Quote

Post by oKtosiTe » Fri Jan 04, 2008 9:31 am

I'm still seeing this:

Code: Select all

>>> Regenerating world
!!! Invalid atom: null/amule-2*
!!! Invalid atom: dev-lang/php-5*
Ask Ubuntu | Super User
Top
Post Reply

11 posts • Page 1 of 1

Return to “Portage & Programming”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic