[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-15 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 0.8.16~exp12ubuntu6

---
apt (0.8.16~exp12ubuntu6) precise; urgency=low

  * cherry pick from
http://bzr.debian.org/bzr/bzr/apt/apt/debian-experimental2/:
* apt-pkg/packagemanager.cc:
  - fix bug in predepends handling - ensure that packages that needs
unpackaging are unpacked before they are configured (LP: #927993)
* apt-pkg/packagemanager.cc:
  - do not try to a void a breaks if the broken package pre-depends
on the breaker, but let dpkg auto-deconfigure it
* apt-pkg/packagemanager.cc:
  - recheck all dependencies if we changed a package in SmartConfigure
as this could break an earlier dependency (LP: #940396)
* recheck dependencies in SmartUnpack after a change, too
* add Debug::pkgAcqArchive::NoQueue to disable package downloading
 -- Michael VogtThu, 15 Mar 2012 19:46:08 +0100

** Changed in: apt (Ubuntu Precise)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-14 Thread Steve Langasek
my understanding is that the fix for this is included in the release-
upgrader package currently in lucid-proposed.

** Changed in: apt (Ubuntu Precise)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-13 Thread Launchpad Bug Tracker
** Branch linked: lp:~donkult/apt/experimental

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-13 Thread David Kalnischkies
First A simple workaround for this specific case:
Move the libsmbclient dependency in kde-runtime from somewhere in the middle to 
the end of the dependency list.

The problem:
Imagine a package A depending on B and C. B depends on nothing and C breaks the 
"old" installed B.
In some situations (not many, usually the ordering prevents this, but "loops" 
can trigger this) APT will look at package A first:
Dependency B is satisfied with the version installed. Fine. Next dependency is 
C - this dependency is broken as an old B is installed. We fix this by 
unpacking the new version of B. Dependency C is fine now, too. But hang on a 
minute: The first dependency we checked isn't satisfied anymore, just that APT 
doesn't notice this and tries to configure A now as it thinks all dependencies 
are satisfied…

Michaels hot-fix above works here - as you might guess - as it will
force APT to not only unpack B for C, but also configure it. Problem
solved - but as Michael hinted this isn't side-effect free (it would do
this for dependency D of C, too, even through it's not needed for D and
therefore increases the complexity of the solution - if we are able to
find one with this added).

In a few seconds launchpad should link my branch to this bug. Rev 2229
and 2230 (subject to change after merge/pull) fixes this problem by re-
checking the dependencies in case we have "changed" anything (damn, this
sounds so easy…). This shouldn't have a side-effect, but as this is
quiet a bit of a change source-wise Michael will push it through a few
testcases before we throw that at the general public…

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-13 Thread James Hunt
Re-assigning after discussion with mvo.

** Changed in: apt (Ubuntu Precise)
 Assignee: James Hunt (jamesodhunt) => Michael Vogt (mvo)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-12 Thread Michael Vogt
I can finally reproduce this now with the lp:~mvo/+junk/test-case-
lp940396 branch and the lp:~mvo/apt/debian-experimental2 branch:
"./run.sh /path/to/debian-experimental2/build/bin/apt-get" triggers it
for me.

There are various workaround:
- add versionized dependency of libsmbclient (>= 2:3.6.3) to kde-runtime that 
ensures libsmbclient is unpacked early
- add breaks to kde-runtime against libsmbclient (<= 2:3.6.1) (just like 
libkrb5-3)

But of course those are workaround not fixes.

One fix that works for me is to do:
=== modified file 'apt-pkg/packagemanager.cc'
--- apt-pkg/packagemanager.cc   2012-03-07 08:20:31 +
+++ apt-pkg/packagemanager.cc   2012-03-12 15:08:19 +
@@ -742,7 +742,7 @@
 }
 if (PkgLoop == false)
List->Flag(Pkg,pkgOrderList::Loop);
-SmartUnPack(BrokenPkg, false, Depth + 1);
+SmartUnPack(BrokenPkg, true, Depth + 1);
 if (PkgLoop == false)
List->RmFlag(Pkg,pkgOrderList::Loop);
  }

So essentially calling unpack with immediately configure to ensure that the 
package is fully ready early. But that is
slightly risky as it will have side-effects beyond this one bug. It does work 
for me though.

I'm looking into more possible solutions.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-09 Thread Michael Vogt
I should add that in 1. its unpacked and right after that
SmatConfigured.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-09 Thread Michael Vogt
Some more thoughts on this. The log shows that the following is
happening:

1. kde-runtime is unpacked at line 2454, at this point libsmbclient is 
unchanged so its not unpacked nor configured (as this is not required by the 
kde-runtime dependencies)
2. libsmbclient is unpacked in line 2504 but its not configured (yet)
3. kde-runtime is looked at again in line 2548 but because its already 
configured its skipped
4. libsmbclient is finally configured in line 2654 (when its too late)

So it seems like the bug either in
 (3) that he dependencies are not checked if they are all ok
 (2) when libsmbclient is unpacked (but not configured) it needs to RmFlag() 
its rdependences configured flag

Thoughts?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-09 Thread James Hunt
I'm starting to suspect a multi-arch issue here...

$ dpkg-query -W -f='${Package}\t${Multi-Arch}\n' | sort -k1,1n|\
   egrep 
"libgssapi-krb5-2|libsmbclient|libglib2.0-0|kde-runtime|kdelibs5-plugins"|sort 
-k2,2r|expand
libgssapi-krb5-2same
libsmbclient   same
libglib2.0-0same
kde-runtime  no
kdelibs5-plugins   no

All the dependencies that are missed are "Multi-Arch: same". The method
pkgPackageManager::SmartConfigure() special-cases multi-arch support
right at the end, but it's looking like it should be handled within the
main dependency loop to avoid this scenario.

@slangasek/@mvo: Could you comment?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-07 Thread James Hunt
** Changed in: apt (Ubuntu Precise)
 Assignee: Canonical Foundations Team (canonical-foundations) => James Hunt 
(jamesodhunt)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-07 Thread Michael Vogt
(Build #33 in the jenkins instance shows the failure with the previous
apt backport)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-07 Thread Michael Vogt
Just FYI, the jenkins log show that its both a issue with
0.8.16~exp12ubuntu1~upgrader3 and ~upgrade1 so its not a regression from
the recent changes.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-07 Thread Michael Vogt
I can not currently make the test-case work, but I did verify that the
install/remove/upgrade packages are identical for both the VM and the
test-case apt-get dist-upgrade output (using wdiff on the main.log
extract and the apt-get dist-upgrade output in the testcase).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-06 Thread Michael Vogt
The sources.list needs to be:
deb http://archive.ubuntu.com/ubuntu lucid main restricted


** Attachment added: "A lucid dpkg-status file that is hopefully enough to 
reproduce the error"
   
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+attachment/2823667/+files/status

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-06 Thread Michael Vogt
I can reproduce this on a minimal server install with:
$ ./auto-upgrade-tester profile/lts-server 
--additional-pkgs=libkrb5-3,libsmbclient,kcalc

(the later to get the kde-runtime dependency on upgrade). Same error,
much quicker result.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-06 Thread Michael Vogt
Another data point:

Package: libsmbclient
Depends: libkrb5-3 (>= 1.10+dfsg~)

Package: libkrb5-3
Breaks: libsmbclient (<= 2:3.6.1-2)

Package: kde-runtime
Depends: libsmbclient (>= 2:3.2.0)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-06 Thread Michael Vogt
This looks like a excerpt of the relevant stuff that is going on:
...
  SmartConfigure plasma-dataengines-workspace (4:4.8.0b-0ubuntu6)^M^M
SmartConfigure kdepim-runtime (4:4.8.0a-0ubuntu2)^M^M
Unpacking kde-runtime to avoid loop^M^M
  SmartUnPack kde-runtime (install version 4:4.8.0-0ubuntu1)^M^M
Unpacking kdebase-runtime to avoid break^M^M
SmartUnPack kdebase-runtime (replace version 4:4.4.5-0ubuntu1.1 with 
4:4.8.0-0ubuntu1)^M^M
SmartConfigure kde-runtime (4:4.8.0-0ubuntu1)^M^M
...
Unpacking kdelibs5-plugins to avoid loop^M^M
  SmartUnPack kdelibs5-plugins (install version 4:4.8.0-0ubuntu2)^M^M
SmartConfigure kdelibs5-plugins (4:4.8.0-0ubuntu2)^M^M
  SmartConfigure libgssapi-krb5-2 (1.10+dfsg~beta1-2)^M^M
SmartConfigure kdelibs5-plugins (4:4.8.0-0ubuntu2)^M^M
  SmartConfigure libgssapi-krb5-2 (1.10+dfsg~beta1-2)^M^M
SmartConfigure libk5crypto3 (1.10+dfsg~beta1-2)^M^M
  SmartConfigure libkrb5support0 (1.10+dfsg~beta1-2)^M^M
  Unpacking libkrb5-3 to avoid loop^M^M
SmartUnPack libkrb5-3 (replace version 1.8.1+dfsg-2ubuntu0.10 
with 1.10+dfsg~beta1-2)^M^M
PreDepends order for libkrb5-3^M^M
  Unpacking libsmbclient to avoid break^M^M
  SmartUnPack libsmbclient (replace version 
2:3.4.7~dfsg-1ubuntu3.8 with 2:3.6.3-1ubuntu1)^M^M
  PreDepends order for libsmbclient^M^M
  SmartConfigure libkrb5-3 (1.10+dfsg~beta1-2)^M^M
...
much later (l. 2631)
...
  SmartConfigure libsmbclient (2:3.6.3-1ubuntu1)^M^M

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-06 Thread Michael Vogt
It appears there is a loop here also in kde-runtime,kdelibs5-plugins
,libgssapi-krb5-2,libsmbclient that is not broken quite right.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-06 Thread Michael Vogt
In a log with Debug::pkgPackageManager=1 I can see:

around lines 1576:
  SmartConfigure plasma-dataengines-workspace (4:4.8.0b-0ubuntu6)^M^M
SmartConfigure kdepim-runtime (4:4.8.0a-0ubuntu2)^M^M
Unpacking kde-runtime to avoid loop^M^M
  SmartUnPack kde-runtime (install version 4:4.8.0-0ubuntu1)^M^M
Unpacking kdebase-runtime to avoid break^M^M
SmartUnPack kdebase-runtime (replace version 4:4.4.5-0ubuntu1.1 with 
4:4.8.0-0ubuntu1)^M^M
Unpacking plasma-scriptengine-javascript to avoid break^M^M
SmartUnPack plasma-scriptengine-javascript (replace version 
4:4.4.5-0ubuntu1.1 with 4:4.8.0-0ubuntu1)^M^M
SmartConfigure kde-runtime (4:4.8.0-0ubuntu1)^M^M
Unpacking libattica0.3 to avoid loop^M^M
...
but quite a bit later (l 1707):
PreDepends order for libkrb5-3^M^M
  Unpacking libsmbclient to avoid break^M^M
  SmartUnPack libsmbclient (replace version 
2:3.4.7~dfsg-1ubuntu3.8 with 2:3.6.3-1ubuntu1)^M^M
  PreDepends order for libsmbclient^M^M
  SmartConfigure libkrb5-3 (1.10+dfsg~beta1-2)^M^M
and then in l 2631:
  SmartConfigure libsmbclient (2:3.6.3-1ubuntu1)^M^M

So it appears that the first "SmartConfigure" for kde-runtime misses the 
smbclient requirement most likely because
at the point it was run the package did not need anything. But then the later 
libkrb5-3 pre-depends caused smbclient
to get unpacked at a bad time.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-06 Thread Martin Pitt
Confirmed by bug 892630, which was an user report (not an auto-test),
where libglib2.0-0 was forgotten to be configured before its reverse
dependencies.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-06 Thread Martin Pitt
For the record, bug 927993 marks packages for configuration before
unpack. This one is trying to configure a package before its
dependencies are configured, so they are distinct (Michael confirmed).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-06 Thread Jean-Baptiste Lallement
** Also affects: apt (Ubuntu Precise)
   Importance: Critical
 Assignee: Canonical Foundations Team (canonical-foundations)
   Status: Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-06 Thread Michael Vogt
** This bug is no longer a duplicate of bug 927993
   ordering code may mark a package for configure before its unpacked

** Package changed: update-manager (Ubuntu) => apt (Ubuntu)

** Changed in: apt (Ubuntu)
   Importance: High => Critical

** Changed in: apt (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-03-01 Thread Steve Langasek
*** This bug is a duplicate of bug 927993 ***
https://bugs.launchpad.net/bugs/927993

This seems to be fallout from the recent reorganization of the kubuntu
seed.  However, the fact that configuration is attempted out of order is
definitely an apt bug.  Since the backported upgrader apt is meant to
address precisely these problems, I suspect this has the same underlying
cause as bug #927993.  Marking as a duplicate.

** This bug has been marked a duplicate of bug 927993
   distribution upgrade from lucid to precise failed with :  package dpkg is 
already installed and configured

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-02-28 Thread Steve Langasek
This is a bug with out-of-order configuration of packages on upgrade and
as such is not feasible to fix for beta-1 as it requires an update to
the apt in lucid-updates to address.

** Changed in: update-manager (Ubuntu)
Milestone: ubuntu-12.04-beta-1 => ubuntu-12.04-beta-2

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-02-27 Thread Brian Murray
** Changed in: update-manager (Ubuntu)
 Assignee: (unassigned) => Canonical Foundations Team 
(canonical-foundations)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-02-27 Thread Brian Murray
** Changed in: update-manager (Ubuntu)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-02-24 Thread Jean-Baptiste Lallement
** Attachment added: "apt-clone_system_state.tar.gz"
   
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+attachment/2779172/+files/apt-clone_system_state.tar.gz

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-02-24 Thread Jonathan Riddell
** Tags added: kubuntu

** Changed in: update-manager (Ubuntu)
Milestone: None => ubuntu-12.04-beta-1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-02-24 Thread Jean-Baptiste Lallement
** Attachment added: "main.log"
   
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+attachment/2779191/+files/main.log

** Tags added: rls-mgr-p-tracking

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-02-24 Thread Jean-Baptiste Lallement
** Attachment added: "apt-term.log"
   
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+attachment/2779190/+files/apt-term.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940396] Re: lucid -> precise main all failed to upgrade: dpkg: dependency problems prevent configuration of kde-runtime

2012-02-24 Thread Jean-Baptiste Lallement
** Attachment added: "apt.log"
   
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+attachment/2779171/+files/apt.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940396

Title:
  lucid -> precise main all failed to upgrade: dpkg: dependency problems
  prevent configuration of kde-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/940396/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs