| View previous topic :: View next topic |
| Author |
Message |
IvanZD Apprentice

Joined: 04 Jul 2005 Posts: 166
|
Posted: Wed May 09, 2012 7:40 pm Post subject: revdep-rebuild; Warning: Portage cannot rebuild any of... |
|
|
Hello,
I have an issue with revdep-rebuild.
| Code: | # revdep-rebuild -i
* 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
* Generated new 1_files.rr
* Collecting complete LD_LIBRARY_PATH
* Generated new 2_ldpath.rr
* Checking dynamic linking consistency
[ 66% ] * broken /usr/lib64/libgtksourceview-1.0.la (requires -lpng14)
[ 100% ]
* Generated new 3_broken.rr
* Assigning files to packages
* /usr/lib64/libgtksourceview-1.0.la -> x11-libs/gtksourceview
* Generated new 4_raw.rr and 4_owners.rr
* Cleaning list of packages to rebuild
* Generated new 4_pkgs.rr
* Assigning packages to ebuilds
* Generated new 4_ebuilds.rr
* Evaluating package order
* Portage could not find any version of the following packages it could build:
* x11-libs/gtksourceview:1.0
* (Perhaps they are masked, blocked, or removed from portage.)
* Try to emerge them manually.
* Warning: Portage cannot rebuild any of the necessary packages.
|
Any idea how to resolve this?
Thanks _________________ http://www.meteoadriatic.net/ |
|
| Back to top |
|
 |
audiodef Advocate


Joined: 06 Jul 2005 Posts: 4949
|
|
| Back to top |
|
 |
IvanZD Apprentice

Joined: 04 Jul 2005 Posts: 166
|
Posted: Wed May 09, 2012 7:47 pm Post subject: |
|
|
| audiodef wrote: | | Try doing an emerge -e world first. |
Thanks for suggestion, but is there anything faster than this to try? _________________ http://www.meteoadriatic.net/ |
|
| Back to top |
|
 |
FuzzyRay Developer

Joined: 02 Oct 2003 Posts: 76
|
Posted: Wed May 09, 2012 8:11 pm Post subject: |
|
|
The error means that there is no longer a version of x11-libs/gtksourceview in slot 1.0 available in the tree. I suspect that it is a package that got added to your world file and isn't needed by your system anymore. I would do the following:
| Code: | emerge --deselect x11-libs/gtksourceview:1.0
emerge --ask --update --newuse --deep @world
emerge --ask --depclean
revdep-rebuild --verbose -- --ask |
Be careful with the --depclean command and make sure it is not going to remove anything you want. If it wants to remove something that you want then you can add it to the world file with:
| Code: | | emerge --noreplace <package> |
|
|
| Back to top |
|
 |
audiodef Advocate


Joined: 06 Jul 2005 Posts: 4949
|
|
| Back to top |
|
 |
IvanZD Apprentice

Joined: 04 Jul 2005 Posts: 166
|
|
| Back to top |
|
 |
|