Unable to install in latest Ubuntu 9.10 Karmic Koala

General discussion for the Zend Server CE

Unable to install in latest Ubuntu 9.10 Karmic Koala

Postby krav3n on Wed Oct 28, 2009 12:45 am

Package libkrb53 is no longer available in Ubuntu 9.10 Karmic Koala. php-imap-zend-ce needs to be rebuilt without this dependency. Is there somewhere where I can download the source package for php-imap-zend-ce so I can rebuild myself?

Code: Select all
kraven@zs:~$ sudo apt-get install php-imap-zend-ce
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:
  php-imap-zend-ce: Depends: libkrb53 (>= 1.4.2) but it is not installable
E: Broken packages
kraven@zs:~$ ^C
kraven@zs:~$ sudo apt-get install libkrb53
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libkrb53 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  krb5-pkinit libkrb5support0 libkrb5-3 libk5crypto3 libgssapi-krb5-2
E: Package libkrb53 has no installation candidate
krav3n
 
Posts: 14
Joined: Wed Jun 24, 2009 7:49 pm

Re: Unable to install in latest Ubuntu 9.10 Karmic Koala

Postby krav3n on Wed Oct 28, 2009 1:52 am

also problems with php-pdo-pgsql-zend-ce and php-pgsql-zend-ce. Ubuntu 9.10 is at libpq5.

Code: Select all
kraven@zs:~/deb$ sudo apt-get install php-pdo-pgsql-zend-ce
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:
  php-pdo-pgsql-zend-ce: Depends: libpq4 (>= 8.1.4) but it is not going to be installed
E: Broken packages
kraven@zs:~/deb$ sudo apt-get install php-pgsql-zend-ce
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:
  php-pgsql-zend-ce: Depends: libpq4 (>= 8.1.4) but it is not going to be installed
E: Broken packages
krav3n
 
Posts: 14
Joined: Wed Jun 24, 2009 7:49 pm

Re: Unable to install in latest Ubuntu 9.10 Karmic Koala

Postby krav3n on Wed Oct 28, 2009 2:25 am

Rebuilt all 3 debs with updated dependencies for x86_64:

imap deb dependencies changed to libkrb53 (>= 1.4.2) | libkrb5-3 (>= 1.7)
pgsql deb dependencies changed to libpq4 (>= 8.1.4) | libpq5 (>= 8.4.1)

Also need to add a symbolic link in
Code: Select all
ln -s /usr/lib/libpq.so.5.2 /usr/lib/libpq.so.4


I have not tested if imap and pgsql actually works but the modules show loaded fine through the Zend Server GUI.

If you want to rebuild your own use these steps:
Code: Select all
1. dpkg-deb -x foo.deb tmpdir
2. dpkg-deb –-control foo.deb tmpdir/DEBIAN
3. nano tmpdir/DEBIAN/control
4. change dependencies as required
5. dpkg -b tmpdir hacked.deb
6. sudo dpkg -i hacked.deb
7. sudo apt-get install -f
Attachments
zend-karmic-debs.zip
imap deb dependencies changed to libkrb53 (>= 1.4.2) | libkrb5-3 (>= 1.7)
pgsql deb dependencies changed to libpq4 (>= 8.1.4) | libpq5 (>= 8.4.1)
(574.32 KiB) Downloaded 43 times
krav3n
 
Posts: 14
Joined: Wed Jun 24, 2009 7:49 pm

Re: Unable to install in latest Ubuntu 9.10 Karmic Koala

Postby krav3n on Thu Oct 29, 2009 12:23 am

also need fix directory and file permissions for php cli to work:
Code: Select all
chmod 755 /usr/local/zend/conf.d
chmod 755 /usr/local/zend/ext.d
chmod 755 /usr/local/zend/tls
chown root:root /usr/local/zend/lib/php_extensions/*
krav3n
 
Posts: 14
Joined: Wed Jun 24, 2009 7:49 pm

Re: Unable to install in latest Ubuntu 9.10 Karmic Koala

Postby geirhelge on Sat Oct 31, 2009 12:15 am

This is what I did to temporary fix the problem until they fix the dependencies:
  • sudo -i
  • Add these lines to libkrb53_fake.txt:
    Package: libkrb53
    Version: 1.6.dfsg.2+fake1
    Depends: libkrb5-3, libgssapi-krb5-2, libk5crypto3, libkrb5support0
  • equivs-build libkrb53_fake.txt
    (apt-get install equivs if you don't have it installed)
  • dpkg -i libkrb53_1.6.dfsg.2+fake1_all.deb

Thanks to Evan Broder (http://www.mail-archive.com/universe-bugs@lists.ubuntu.com/msg150925.html) for solving this for me :D
geirhelge
 
Posts: 1
Joined: Fri Oct 30, 2009 11:50 pm

Re: Unable to install in latest Ubuntu 9.10 Karmic Koala

Postby jess04 on Mon Nov 02, 2009 3:38 pm

Hello,

Just to confirm that this is solved and will be fixed in the next sync.

Thanks for reporting,
May the source be with you,

Jess Portnoy
jess04
 
Posts: 646
Joined: Thu Jan 15, 2009 3:37 pm

Re: Unable to install in latest Ubuntu 9.10 Karmic Koala

Postby jon_whitcraft on Wed Nov 04, 2009 1:43 am

When is the next sync?
Jon Whitcraft
Zend Certified Engineer
jon_whitcraft
 
Posts: 70
Joined: Wed Jan 14, 2009 3:58 pm
Location: Borwnsburg, IN

Re: Unable to install in latest Ubuntu 9.10 Karmic Koala

Postby jess04 on Wed Nov 04, 2009 8:23 am

Hello,

A few days from now. Cannot commit to a certain day but quite soon :)
May the source be with you,

Jess Portnoy
jess04
 
Posts: 646
Joined: Thu Jan 15, 2009 3:37 pm

Re: Unable to install in latest Ubuntu 9.10 Karmic Koala

Postby jon_whitcraft on Wed Nov 04, 2009 1:37 pm

Ok Thanks for the info.
Jon Whitcraft
Zend Certified Engineer
jon_whitcraft
 
Posts: 70
Joined: Wed Jan 14, 2009 3:58 pm
Location: Borwnsburg, IN

Re: Unable to install in latest Ubuntu 9.10 Karmic Koala

Postby jon_whitcraft on Wed Nov 11, 2009 1:11 pm

Has this been pushed to the repository yet? I'm just trying to finish setting up my new machine and I need ZendServer Installed to complete it.
Jon Whitcraft
Zend Certified Engineer
jon_whitcraft
 
Posts: 70
Joined: Wed Jan 14, 2009 3:58 pm
Location: Borwnsburg, IN

Next

Return to Zend Server Community Edition

Who is online

Users browsing this forum: No registered users and 4 guests

cron