Languages

Menu
Sites
Language
Issue installing GBS in Ubuntu 16.04

Hi to all!

I am trying to install GBS in Ubuntu 16.04, and as the Tizen tutorial says I add this line in sources.list "deb http://download.tizen.org/tools/latest-release/Ubuntu_16.04 /" And...:

 

apt-get install gbs mic
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 gbs : Depends: python-support (>= 0.90.0) but it is not installable
       Depends: gbs-api (= 0.24.1) but it is not going to be installed
       Depends: gbs-export (= 0.24.1) but it is not going to be installed
       Depends: gbs-remotebuild (= 0.24.1) but it is not going to be installed
       Recommends: librpm-tizen (>= 4.11.0.1.tizen20130618-tizen20131001) but it is not going to be installed
 mic : Depends: python-support (>= 0.90.0) but it is not installable
E: Unable to correct problems, you have held broken packages.

 

Any idea????

Thanks

 

 

Responses

2 Replies
Armaan-Ul- Islam

Hello,

Most probably the issue here is :

python-support is removed from Ubuntu 16.04 and no longer supported.

Link: https://wiki.ubuntu.com/Python

Anyways, You can try downloading python-support from http://launchpadlibrarian.net/109052632/python-support_1.0.15_all.deb

First downloaded and installed this. You may use the command like:

wget http://launchpadlibrarian.net/109052632/python-support_1.0.15_all.deb
sudo dpkg --force-all -i python-support_1.0.15_all.deb

After that try installing gbs

sudo apt-get install -f gbs mic

Or download the package and install it using dpkg with the option --ignore-depends
 

Thank you.

Armaan-Ul- Islam

Hello,

Most probably the issue here is :

python-support is removed from Ubuntu 16.04 and no longer supported.

Link: https://wiki.ubuntu.com/Python

Anyways, You can try downloading python-support from http://launchpadlibrarian.net/109052632/python-support_1.0.15_all.deb

First downloaded and installed this. You may use the command like:

wget http://launchpadlibrarian.net/109052632/python-support_1.0.15_all.deb
sudo dpkg --force-all -i python-support_1.0.15_all.deb

After that try installing gbs

sudo apt-get install -f gbs mic

Or download the package and install it using dpkg with the option --ignore-depends
 

Thank you.