[Dovecot] dovecot 1.2 ubuntu horde xi.rename-it.nl
Hi, i used to use
http://xi.rename-it.nl/debian/ experimental-auto main to update dovecot 1.2 with ubuntu horde
didnt done for a time now i get broken deps with apt
like
--
dovecot-common: Hängt ab: libgssapi-krb5-2 (>= 1.6.dfsg.2) ist aber nicht installierbar Hängt ab: libk5crypto3 (>= 1.6.dfsg.2) ist aber nicht installierbar Hängt ab: libkrb5-3 (>= 1.6.dfsg.2) ist aber nicht installierbar
( sorry german *g )
i updated libkrb53 from jaunty but this doesnt fix it
any idea what to upgrade to get dovecot 1.2 updated again its a test server so i am free for unstable packs etc no pruduction services running
-- Best Regards
MfG Robert Schetterer
Germany/Munich/Bavaria
Robert Schetterer schrieb:
Hi, i used to use
http://xi.rename-it.nl/debian/ experimental-auto main to update dovecot 1.2 with ubuntu horde
uff, i mean ubuntu hardy
didnt done for a time now i get broken deps with apt
like
--
dovecot-common: Hängt ab: libgssapi-krb5-2 (>= 1.6.dfsg.2) ist aber nicht installierbar Hängt ab: libk5crypto3 (>= 1.6.dfsg.2) ist aber nicht installierbar Hängt ab: libkrb5-3 (>= 1.6.dfsg.2) ist aber nicht installierbar
( sorry german *g )
i updated libkrb53 from jaunty but this doesnt fix it
any idea what to upgrade to get dovecot 1.2 updated again its a test server so i am free for unstable packs etc no pruduction services running
-- Best Regards
MfG Robert Schetterer
Germany/Munich/Bavaria
Robert Schetterer robert@schetterer.org writes:
Hi, i used to use
Hello,
http://xi.rename-it.nl/debian/ experimental-auto main to update dovecot 1.2 with ubuntu horde
didnt done for a time now i get broken deps with apt
I encountered the same problem with Debian Lenny, so I now recompile the package myself. It works well.
-- Nicolas
I encountered the same problem with Debian Lenny, so I now recompile the package myself. It works well.
Same here on Ubuntu 8.10. However it doesn't compile out of the box. I use the following patch for the debian rules file to make it work. diff -upr dovecot-1.2.beta4.orig/debian/rules dovecot-1.2.beta4/debian/rules --- dovecot-1.2.beta4.orig/debian/rules 2009-03-29 11:12:32.000000000 +0200 +++ dovecot-1.2.beta4/debian/rules 2009-03-29 11:13:24.000000000 +0200 @@ -24,8 +24,16 @@ config.status: patch-stamp configure cp -f /usr/share/misc/config.sub config.sub -test -r /usr/share/misc/config.guess && \ cp -f /usr/share/misc/config.guess config.guess - aclocal-1.9 && automake-1.9 --add-missing --copy && libtoolize -f -c && aclocal-1.9 && autoconf - # Add here commands to configure the package. +# aclocal-1.9; automake-1.9 --add-missing --copy; libtoolize -f -c; aclocal-1.9; autoconf + aclocal-1.9 + automake-1.9 --add-missing --copy + libtoolize -f -c + -test -r /usr/share/misc/config.sub && \ + cp -f /usr/share/misc/config.sub config.sub + -test -r /usr/share/misc/config.guess && \ + cp -f /usr/share/misc/config.guess config.guess + aclocal-1.9 + autoconf ./configure --with-ldap \ --with-ssl=openssl \ --with-db \ @@ -47,23 +55,29 @@ config.status: patch-stamp configure --infodir=\$${prefix}/share/info \ --with-moduledir=\$${prefix}/lib/dovecot/modules \ --disable-static + # dovecot-sieve plugin - -test -r /usr/share/misc/config.sub && \ - mv dovecot-sieve/config.sub dovecot-sieve/config.sub.orig && \ - cp -f /usr/share/misc/config.sub dovecot-sieve/config.sub - -test -r /usr/share/misc/config.guess && \ - mv dovecot-sieve/config.guess dovecot-sieve/config.guess.orig && \ - cp -f /usr/share/misc/config.guess dovecot-sieve/config.guess - (cd dovecot-sieve/ && aclocal-1.9 && automake-1.9 --add-missing --copy && libtoolize -f -c && aclocal-1.9 && autoconf) + ( \ + cd dovecot-sieve/ && aclocal-1.9; \ + automake-1.9 --add-missing; libtoolize -f -c; \ + test -r /usr/share/misc/config.sub && \ + cp -f /usr/share/misc/config.sub config.sub; \ + test -r /usr/share/misc/config.guess && \ + cp -f /usr/share/misc/config.guess config.guess; \ + aclocal-1.9; autoconf \ + ) + # dovecot-managesieve module - -test -r /usr/share/misc/config.sub && \ - mv dovecot-managesieve/config.sub dovecot-managesieve/config.sub.orig && \ - cp -f /usr/share/misc/config.sub dovecot-managesieve/config.sub - -test -r /usr/share/misc/config.guess && \ - mv dovecot-managesieve/config.guess dovecot-managesieve/config.guess.orig && \ - cp -f /usr/share/misc/config.guess dovecot-managesieve/config.guess + ( \ + cd dovecot-managesieve/ && aclocal-1.9; \ + automake-1.9 --add-missing; libtoolize -f -c; \ + test -r /usr/share/misc/config.sub && \ + cp -f /usr/share/misc/config.sub config.sub; \ + test -r /usr/share/misc/config.guess && \ + cp -f /usr/share/misc/config.guess config.guess; \ + aclocal-1.9; autoconf \ + ) cp dovecot-managesieve/README dovecot-managesieve/managesieve.README - (cd dovecot-managesieve/ && aclocal-1.9 && automake-1.9 --add-missing --copy && libtoolize -f -c && aclocal-1.9 && autoconf) build: build-stamp build-stamp: config.status
Nicolas KOWALSKI niko@petole.demisel.net writes:
Robert Schetterer robert@schetterer.org writes:
http://xi.rename-it.nl/debian/ experimental-auto main
Oops, I am not using experimental-auto source package, but the testing-auto one in my /etc/apt/sources.list:
deb-src http://xi.rename-it.nl/debian/ testing-auto main
-- Nicolas
Nicolas KOWALSKI schreef:
Robert Schetterer robert@schetterer.org writes:
Hi, i used to use
Hello,
http://xi.rename-it.nl/debian/ experimental-auto main to update dovecot 1.2 with ubuntu horde
didnt done for a time now i get broken deps with apt
I encountered the same problem with Debian Lenny, so I now recompile the package myself. It works well. Yep, that's the current status unfortunately. The build server runs Debian testing and that won't install directly on stable.
I'll give the ubuntu problems a look.
Eventually I should build an automated sbuild environment to make the binaries available to more Debian/Ubuntu releases.
Regards,
-- Stephan Bosch stephan@rename-it.nl
Stephan Bosch schrieb:
Nicolas KOWALSKI schreef:
Robert Schetterer robert@schetterer.org writes:
Hi, i used to use
Hello,
http://xi.rename-it.nl/debian/ experimental-auto main to update dovecot 1.2 with ubuntu horde
didnt done for a time now i get broken deps with apt
I encountered the same problem with Debian Lenny, so I now recompile the package myself. It works well. Yep, that's the current status unfortunately. The build server runs Debian testing and that won't install directly on stable.
I'll give the ubuntu problems a look.
Eventually I should build an automated sbuild environment to make the binaries available to more Debian/Ubuntu releases.
Regards,
Hi Stephan, will be nice to have hardy debs anyway its lts an dovecot 1.2 should go into backports until it gets stable
i am not clear which exact packs relate to the broken dependencies on my testserver i might will use some of debian unstable too, if i get stuff for sources.list and package name
Best Regards Robert
Robert Schetterer schrieb:
Stephan Bosch schrieb:
Nicolas KOWALSKI schreef:
Robert Schetterer robert@schetterer.org writes:
Hi, i used to use Hello,
http://xi.rename-it.nl/debian/ experimental-auto main to update dovecot 1.2 with ubuntu horde
didnt done for a time now i get broken deps with apt I encountered the same problem with Debian Lenny, so I now recompile the package myself. It works well. Yep, that's the current status unfortunately. The build server runs Debian testing and that won't install directly on stable.
I'll give the ubuntu problems a look.
Eventually I should build an automated sbuild environment to make the binaries available to more Debian/Ubuntu releases.
Regards,
Hi Stephan, will be nice to have hardy debs anyway its lts an dovecot 1.2 should go into backports until it gets stable
i am not clear which exact packs relate to the broken dependencies on my testserver i might will use some of debian unstable too, if i get stuff for sources.list and package name
Best Regards Robert
managed it with deb http://http.us.debian.org/debian/ testing main contrib non-free now it installs , that right form me just for testing
Stephan Bosch stephan@rename-it.nl writes:
Yep, that's the current status unfortunately. The build server runs Debian testing and that won't install directly on stable.
[...]
Eventually I should build an automated sbuild environment to make the binaries available to more Debian/Ubuntu releases.
If you have this possibility, it would be great!
Thanks for your reply,
Nicolas
participants (4)
-
e-frog
-
Nicolas KOWALSKI
-
Robert Schetterer
-
Stephan Bosch