cannot run entropy after update - 23-4-12 [Solved]

Anything that pertains to Entropy, Equo or Sulfur

Moderator: Moderators

Re: cannot run entropy after update - 23-4-12

Postby lxnay » Tue Apr 24, 2012 6:53

The problem has been fixed in repositories 6 hours ago. Sabayon-weekly users are not affected.
Basically, we discovered a bug in Entropy dependencies calculation when disabled USE flags are in use, causing Python to be removed.
In particular, gentoolkit is conflicting with: "!>=dev-lang/python-2.6[-xml]" but the "[-xml]" parsing code had a bug.

Entropy 1.0_rc109 solves this (patch). In addition, older client are automatically patched upon "equo update" through the repository update script hook (commit).

You can fix your system by doing:

amd64
Code: Select all
wget "http://ftp.surfnet.nl/pub/os/Linux/distr/sabayonlinux/entropy/standard/sabayonlinux.org/packages-nonfree/amd64/5/dev-lang:python-2.7.2-r3~3.tbz2" -O /tmp/python.tar.bz2
tar xvjf /tmp/python.tar.bz2 -C /
equo update
equo install dev-lang/python:2.7


x86
Code: Select all
wget "http://ftp.surfnet.nl/pub/os/Linux/distr/sabayonlinux/entropy/standard/sabayonlinux.org/packages-nonfree/x86/5/dev-lang:python-2.7.2-r3~3.tbz2" -O /tmp/python.tar.bz2
tar xvjf /tmp/python.tar.bz2 -C /
equo update
equo install dev-lang/python:2.7


We apologize for the inconvenience.
Image
Join us on IRC (chat.freenode.net #sabayon or WebChat)
Submit bugs to our Bug Tracker
Follow me on Twitter
Add me on Facebook
Add me on Google+
lxnay
Land Owner
 
Posts: 3415
Joined: Thu Oct 13, 2005 23:16
Location: Italy

Re: cannot run entropy after update - 23-4-12

Postby dunsurfin » Tue Apr 24, 2012 7:33

Thank you very much for the quick fix. It worked well for me. :)
Self-righteousness is a loud din raised to drown
the voice of guilt within us - Eric Hoffer
User avatar
dunsurfin
Sagely Hen
 
Posts: 1245
Joined: Sun Jan 07, 2007 21:38
Location: Newcastle upon Tyne UK

Re: cannot run entropy after update - 23-4-12 [Solved]

Postby treborplus » Tue Apr 24, 2012 7:48

Hi,

wget "http://ftp.surfnet.nl/pub/os/Linux/distr/sabayonlinux/entropy/standard/sabayonlinux.org/packages-nonfree/amd64/5/dev-lang:python-2.7.2-r3~3.tbz2" -O /tmp/python.tar.bz2
tar xvjf /tmp/python.tar.bz2 -C /
equo update
equo install dev-lang/python:2.7


tar xvjf /tmp/python.tar.bz2 -C /

usr/share/doc/python-2.7.2-r3/HISTORY.bz2
usr/share/doc/python-2.7.2-r3/NEWS.bz2
usr/share/man/
usr/share/man/man1/
usr/share/man/man1/python2.7.1.bz2

bzip2: (stdin): trailing garbage after EOF ignored
# equo update
Traceback (most recent call last):
File "/usr/bin/equo", line 26, in <module>
from entropy.exceptions import SystemDatabaseError, OnlineMirrorError, \
ImportError: No module named entropy.exceptions

Trebor
treborplus
Baby Hen
 
Posts: 2
Joined: Tue Apr 24, 2012 7:43

Re: cannot run entropy after update - 23-4-12 [Solved]

Postby dunsurfin » Tue Apr 24, 2012 8:17

Is it possible to run
Code: Select all
equo install entropy --relaxed
?
Self-righteousness is a loud din raised to drown
the voice of guilt within us - Eric Hoffer
User avatar
dunsurfin
Sagely Hen
 
Posts: 1245
Joined: Sun Jan 07, 2007 21:38
Location: Newcastle upon Tyne UK

Re: cannot run entropy after update - 23-4-12 [Solved]

Postby treborplus » Tue Apr 24, 2012 8:27

Hi,

equo install entropy --relaxed


# equo install entropy --relaxed
Traceback (most recent call last):
File "/usr/bin/equo", line 26, in <module>
from entropy.exceptions import SystemDatabaseError, OnlineMirrorError, \
ImportError: No module named entropy.exceptions

Thanks
treborplus
Baby Hen
 
Posts: 2
Joined: Tue Apr 24, 2012 7:43

Re: cannot run entropy after update - 23-4-12 [Solved]

Postby dunsurfin » Tue Apr 24, 2012 8:44

If you are able to use portage now, that may be the way to go to get entropy back. (I'm writing it as though you haven't used portage - my apologies if you have. :))
As root;
Code: Select all
emerge --sync

which will take quite a long time if you haven't done it before.
Code: Select all
layman -a sabayon

Code: Select all
emerge -av entropy

and finally
Code: Select all
equo rescue spmsync


If that has worked you should then be able to do equo update
Self-righteousness is a loud din raised to drown
the voice of guilt within us - Eric Hoffer
User avatar
dunsurfin
Sagely Hen
 
Posts: 1245
Joined: Sun Jan 07, 2007 21:38
Location: Newcastle upon Tyne UK

Re: cannot run entropy after update - 23-4-12 [Solved]

Postby joost » Tue Apr 24, 2012 8:59

With my work PC (that didn't get yesterdays updates yet) it is all fine today.

Upgraded it, all fine.
User avatar
joost
Sagely Hen
 
Posts: 2313
Joined: Fri Nov 17, 2006 12:11
Location: The Netherlands

Re: cannot run entropy after update - 23-4-12 [Solved]

Postby lxnay » Tue Apr 24, 2012 9:05

treborplus wrote:Hi,

equo install entropy --relaxed


# equo install entropy --relaxed
Traceback (most recent call last):
File "/usr/bin/equo", line 26, in <module>
from entropy.exceptions import SystemDatabaseError, OnlineMirrorError, \
ImportError: No module named entropy.exceptions

Thanks


As root:
Code: Select all
env-update && . /etc/profile


If it doesn't work, do this:
Code: Select all
export PYTHONPATH=/usr/lib/entropy/lib
equo install <whatever>
Image
Join us on IRC (chat.freenode.net #sabayon or WebChat)
Submit bugs to our Bug Tracker
Follow me on Twitter
Add me on Facebook
Add me on Google+
lxnay
Land Owner
 
Posts: 3415
Joined: Thu Oct 13, 2005 23:16
Location: Italy

Re: cannot run entropy after update - 23-4-12 [Solved]

Postby JohnM48 » Tue Apr 24, 2012 11:32

lxnay wrote:
treborplus wrote:Hi,

equo install entropy --relaxed


# equo install entropy --relaxed
Traceback (most recent call last):
File "/usr/bin/equo", line 26, in <module>
from entropy.exceptions import SystemDatabaseError, OnlineMirrorError, \
ImportError: No module named entropy.exceptions

Thanks


As root:
Code: Select all
env-update && . /etc/profile


If it doesn't work, do this:
Code: Select all
export PYTHONPATH=/usr/lib/entropy/lib
equo install <whatever>


Have tried all suggestions but still the same problem. Portage didn't work, failed to add the sabayon repository.

Any other suggestions?
JohnM48
Baby Hen
 
Posts: 2
Joined: Tue Apr 24, 2012 11:20

Re: cannot run entropy after update - 23-4-12 [Solved]

Postby Deep Red » Tue Apr 24, 2012 15:06

Hello I have had a similar problem which I fixed after re-installing python. But now I can not run the package manager Rigo
and magneto applet:

Code: Select all
$ rigo

(rigo:13624): Gtk-WARNING **: Error loading theme icon 'image-missing' for stock: Unrecognized image file format

(rigo:13624): Gtk-CRITICAL **: render_fallback_image: assertion `pixbuf != NULL' failed
/usr/lib/python2.7/site-packages/gi/types.py:43: Warning: g_object_ref: assertion `G_IS_OBJECT (object)' failed
  return info.invoke(*args, **kwargs)

(rigo:13624): GLib-GIO-CRITICAL **: g_loadable_icon_load: assertion `G_IS_LOADABLE_ICON (icon)' failed

(rigo:13624): Gtk-WARNING **: Error loading theme icon 'image-missing' for stock: Unrecognized image file format

(rigo:13624): Gtk-CRITICAL **: render_fallback_image: assertion `pixbuf != NULL' failed

(rigo:13624): GLib-GIO-CRITICAL **: g_loadable_icon_load: assertion `G_IS_LOADABLE_ICON (icon)' failed

(rigo:13624): Gtk-WARNING **: Error loading theme icon 'image-missing' for stock: Unrecognized image file format

(rigo:13624): Gtk-CRITICAL **: render_fallback_image: assertion `pixbuf != NULL' failed

(rigo:13624): Gtk-WARNING **: Error loading theme icon 'image-missing' for stock: Unrecognized image file format

(rigo:13624): Gtk-CRITICAL **: render_fallback_image: assertion `pixbuf != NULL' failed

(rigo:13624): GLib-GIO-CRITICAL **: g_loadable_icon_load: assertion `G_IS_LOADABLE_ICON (icon)' failed

(rigo:13624): Gtk-WARNING **: Error loading theme icon 'image-missing' for stock: Unrecognized image file format

(rigo:13624): Gtk-CRITICAL **: render_fallback_image: assertion `pixbuf != NULL' failed

(rigo:13624): GLib-GIO-CRITICAL **: g_loadable_icon_load: assertion `G_IS_LOADABLE_ICON (icon)' failed

(rigo:13624): Gtk-WARNING **: Error loading theme icon 'image-missing' for stock: Unrecognized image file format

(rigo:13624): Gtk-CRITICAL **: render_fallback_image: assertion `pixbuf != NULL' failed

(rigo:13624): GLib-GIO-CRITICAL **: g_loadable_icon_load: assertion `G_IS_LOADABLE_ICON (icon)' failed
Traceback (most recent call last):
  File "/usr/bin/rigo", line 785, in _permissions_setup
    self._work_view_c.setup()
  File "/usr/lib/rigo/rigo/ui/gtk3/controllers/work.py", line 179, in setup
    box = self._setup_app_area()
  File "/usr/lib/rigo/rigo/ui/gtk3/controllers/work.py", line 129, in _setup_app_area
    self.APP_IMAGE_SIZE, 0)
  File "/usr/lib/python2.7/site-packages/gi/types.py", line 43, in function
    return info.invoke(*args, **kwargs)
gi._glib.GError: Unrecognized image file format


Code: Select all
$ magneto
Traceback (most recent call last):
  File "/usr/lib/entropy/magneto/magneto.py", line 107, in <module>
    _startup(_unlock_func)
  File "/usr/lib/entropy/magneto/magneto.py", line 71, in _startup
    magneto = Magneto()
  File "/usr/lib/entropy/magneto/magneto/gtk/interfaces.py", line 37, in __init__
    main_loop_class = DBusGMainLoop)
  File "/usr/lib/entropy/magneto/magneto/core/interfaces.py", line 148, in __init__
    self.icons.add_file("okay", "applet-okay.png")
  File "/usr/lib/entropy/magneto/magneto/gtk/components.py", line 39, in add_file
    pixbuf = gtk.gdk.pixbuf_new_from_file(filename)
glib.GError: Couldn't recognize the image file format for file '/usr/share/pixmaps/magneto/applet-okay.png'



tried to reinstall glib, glibc, gtk+ and gcc but nothing happened.

my GNOME installation is also broken, I am not able to log in normally, can not see icons and applets, and switch between workspaces or change the wallpaper
but I believe that these bugs rise from the same roots.
Deep Red
Baby Hen
 
Posts: 2
Joined: Tue Apr 24, 2012 10:28

PreviousNext

Return to Entropy|Equo|Rigo Package Managers

Who is online

Users browsing this forum: No registered users and 0 guests

cron