Languages

Menu
Sites
Language
gbs install problem (Depends: depanneur (>= 0.15.4)

Hello Tizen Team, 

I can't install gbs on Ubuntu 16.04 x64.

(my develop env is 

"sj0202cho@sj0202cho:~$ uname -a
Linux sj0202cho 4.10.0-37-generic #41~16.04.1-Ubuntu SMP Fri Oct 6 22:42:59 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux"

And I also finish to add source list  " deb [trusted=yes] http://download.tizen.org/tools/latest-release/Ubuntu_16.04/ / " ,  and apt-get update.

But when I try to install gbs by command "sudo apt-get install gbs" , always occur following error.

 

sj0202cho@sj0202cho:~/Downloads/depanneur-0.15.8$ sudo apt-get install gbs
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: depanneur (>= 0.15.8) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Any idea on how to solve this? 

please help me

Responses

4 Replies
Yasin Ali

Hi,

Check detail discussion about  "Ubuntu 16.04 unmet install dependencies". Link below:

https://developer.tizen.org/forums/general-support/gbs-install-problem-depends-depanneur-0.15.4

I think you need to switch to another more stable version other than 16.04.

Ubuntu 16.04 removes python-support.

Hope it will help.

JunHwan An

Hi,

I had similar problem and fix it as follows.

[Problem]

The following packages have unmet dependencies:
 gbs : Depends: depanneur (>= 0.15.9) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

 

[Fix]

sudo rm -rf /var/lib/apt/lists/*
sudo apt clean
sudo apt update

 

Yasin Ali

I think it will also work with above mentioned develop environment of sungjun.

sungjun please let's know your update.

binary

I have same problem,

I try to install manual one by one Depends packages!

gbs -> depanneur -> build -> qemu-arm-static -> uuid-dev

but uuid-dev : Depends: libuuid1 (= 2.27.1-6ubuntu3) but 2.27.1-6ubuntu3.2 is to be installed

So I try

$ sudo apt-get install libuuid1=2.27.1-6ubuntu3

sudo apt-get install uuid-dev

$ sudo apt-get install qemu-arm-static

$ sudo apt-get install build

$ sudo apt-get install depanneur

$ sudo apt-get install gbs
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  gbs-api gbs-export gbs-remotebuild liblua5.1-0 librpm-tizen osc python-m2crypto
Suggested packages:
  python-gnomekeyring
The following NEW packages will be installed:
  gbs gbs-api gbs-export gbs-remotebuild liblua5.1-0 librpm-tizen osc python-m2crypto
0 upgraded, 8 newly installed, 0 to remove and 0 not upgraded.
Need to get 11,3 MB of archives.
After this operation, 15,2 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
WARNING: The following packages cannot be authenticated!
  librpm-tizen osc gbs-api gbs-export gbs-remotebuild gbs
Install these packages without verification? [y/N] y
Get:1 http://download.tizen.org/tools/latest-release/Ubuntu_16.04  librpm-tizen 4.11.0.1.tizen20140530-tizen20140723 [383 kB]
.....

$ gbs --version
gbs:warning: Created a new config file /home/binary/.gbs.conf. Please check and edit your authentication information.
gbs 0.25.7

 

Hope this help someone ^^v