From: Detlef W. <det...@gm...> - 2017-04-03 18:34:09
|
Hi, if I try to install a fresh checked out git/master with rake it fails on rake gem:install with the following message > $ rake gem:install > /usr/bin/ruby2.3 -S gem install --local --user-install glib2/pkg/glib2-3.1.2.gem > Building native extensions. This could take a while... > Successfully installed glib2-3.1.2 > Parsing documentation for glib2-3.1.2 > Installing ri documentation for glib2-3.1.2 > Done installing documentation for glib2 after 2 seconds > 1 gem installed > /usr/bin/ruby2.3 -S gem install --local --user-install gobject-introspection/pkg/gobject-introspection-3.1.2.gem > Building native extensions. This could take a while... > Successfully installed gobject-introspection-3.1.2 > Parsing documentation for gobject-introspection-3.1.2 > Installing ri documentation for gobject-introspection-3.1.2 > Done installing documentation for gobject-introspection after 1 seconds > 1 gem installed > /usr/bin/ruby2.3 -S gem install --local --user-install gio2/pkg/gio2-3.1.2.gem > Building native extensions. This could take a while... > Successfully installed gio2-3.1.2 > Parsing documentation for gio2-3.1.2 > Installing ri documentation for gio2-3.1.2 > Done installing documentation for gio2 after 0 seconds > 1 gem installed > /usr/bin/ruby2.3 -S gem install --local --user-install atk/pkg/atk-3.1.2.gem > Successfully installed atk-3.1.2 > Parsing documentation for atk-3.1.2 > Installing ri documentation for atk-3.1.2 > Done installing documentation for atk after 0 seconds > 1 gem installed > /usr/bin/ruby2.3 -S gem install --local --user-install pango/pkg/pango-3.1.2.gem > ERROR: Could not find a valid gem 'cairo-gobject' (= 3.1.2) in any repository > rake aborted! > Command failed with status (2): [/usr/bin/ruby2.3 -S gem install --local --...] > /home/det/Schreibtisch/soft/ruby-gnome-neuste/Rakefile:392:in `block (3 levels) in <top (required)>' > /home/det/Schreibtisch/soft/ruby-gnome-neuste/Rakefile:391:in `each' > /home/det/Schreibtisch/soft/ruby-gnome-neuste/Rakefile:391:in `block (2 levels) in <top (required)>' > Tasks: TOP => gem:install > (See full trace by running task with --trace) This is because in the top level Rakefile pango should be build before cairo-gobject is build. But pango has cairo-gobject as it's dependency. Greetings, detlef |