jubany fixups relating to misplaced tags (AssertionError:<module>:main:find_unimported_versions:check)

Bug #795703 reported by Max Bowsher
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Ubuntu Distributed Development
Fix Released
Undecided
Max Bowsher

Bug Description

A number of failures having the same signature as bug 714622 relate to the package version tags in the Ubuntu branches having shifted incorrectly.

In some cases it appears that a package has been synced from Debian discarding Ubuntu changes, and the importer has correctly merged the debian revision into the Ubuntu branch, but has then inherited the tag value from Debian, failed to move it to the revision corresponding to the Ubuntu publication, but recorded in its database the correct revision. (Or at least that is my conjecture) Based on the failure count for this traceback signature not increasing in recent times, I suggest we treat this as remnants from an importer bug which appears to no longer be an issue, and focus just on cleaning up the existing failures, unless new failures of this kind arrive to disprove that.

In some other cases, tags are just oddly misplaced in ways I think we should just fix.

I will be posting commands on this bug to request tag movements be applied to the official branches. In order to save myself some typing and make these requests easier to read, I shall now define some bash shell functions which I will use in the per-package requests:

removetag() {
  local dist multiseries package version
  dist=$1
  multiseries=$2
  package=$3
  version=$4

  for series in $multiseries; do
    bzr tag --delete -d "bzr+ssh://bazaar.launchpad.net/+branch/$dist/$series/$package" "$tag"
  done
}

changetag() {
  local dist multiseries package version revisionid
  dist=$1
  multiseries=$2
  package=$3
  version=$4
  revisionid=$5

  for series in $multiseries; do
    bzr tag --force -d "bzr+ssh://bazaar.launchpad.net/+branch/$dist/$series/$package" "$tag" -r "$revisionid"
  done
}

requeue() {
  /srv/package-import.canonical.com/new/scripts/requeue_package.py "$@"
}

Revision history for this message
Max Bowsher (maxb) wrote :

removetag ubuntu maverick adun.app 0.81-4
changetag ubuntu "natty oneiric" adun.app 0.81-4 <email address hidden>
requeue adun.app

changetag ubuntu "lucid maverick natty oneiric" agtl 0.5.1-2 <email address hidden>
requeue agtl

removetag debian "lenny sid squeeze wheezy" albatross 1.10-9ubuntu1
removetag ubuntu "breezy dapper edgy feisty gutsy hardy hoary intrepid jaunty karmic lucid maverick natty oneiric" albatross 1.10-9ubuntu1
changetag ubuntu warty albatross 1.10-9ubuntu1 <email address hidden>
requeue albatross

Revision history for this message
Max Bowsher (maxb) wrote :

changetag ubuntu "lucid maverick natty oneiric" bootcd 3.18 <email address hidden>
requeue bootcd

changetag ubuntu "lucid maverick natty oneiric" bsdgames 2.17-19 <email address hidden>
requeue bsdgames

Revision history for this message
Max Bowsher (maxb) wrote :

changetag ubuntu "natty oneiric" clutter-gtk 0.91.8-1 <email address hidden>
requeue clutter-gtk

removetag ubuntu "breezy dapper edgy feisty gutsy hardy intrepid jaunty karmic lucid maverick natty" ubuntu commons-daemon 1.0.5-1
changetag ubuntu oneiric commons-daemon 1.0.5-1 <email address hidden>
requeue commons-daemon

Revision history for this message
Max Bowsher (maxb) wrote :

changetag ubuntu "natty oneiric" 0.1.12-1 d-feet <email address hidden>
requeue d-feet

Revision history for this message
Max Bowsher (maxb) wrote :

Whoops, I swapped the parameter order in the above. Should say:

changetag ubuntu "natty oneiric" d-feet 0.1.12-1 <email address hidden>
requeue d-feet

Revision history for this message
Max Bowsher (maxb) wrote :

changetag ubuntu "maverick natty oneiric" elilo 3.10-1ubuntu1 <email address hidden>
requeue elilo

changetag ubuntu "maverick natty oneiric" exiv2 0.20-2 <email address hidden>
requeue exiv2

Max Bowsher (maxb)
Changed in udd:
assignee: nobody → canonical-bazaar (canonical-bazaar)
Revision history for this message
Vincent Ladeuil (vila) wrote :

@maxb: Sorry for not acting sooner on this but basically I felt uncomfortable using shell commands defined only in a bug report :-/

Could you find a way to include these commands (with a minimal documentation) in the udd branch itself ?

I will feel vastly more comfortable if that was the case :)

Revision history for this message
Max Bowsher (maxb) wrote :

Hmm. I'm not sure it makes sense to do so. The point of my shell functions was to make it *easier* to understand what I was requesting, by minimizing boilerplate and repetition. Also, I'm not sure that we will ever have an occasion for bulk manipulation of tags outside of this bug. Also, each of removetag and changetag is nothing more than a single set of invocations of "bzr tag" varying a single parameter.

If I've not convinced you with the above, then I would be happy to reformat each of the above requests into the form:

for series in maverick natty oneiric; do
  bzr tag --force \
    -d "bzr+ssh://bazaar.launchpad.net/+branch/ubuntu/$series/exiv2" \
    "0.20-2" \
    -r "<email address hidden>"
done
/srv/package-import.canonical.com/new/scripts/requeue_package.py exiv2

Revision history for this message
Vincent Ladeuil (vila) wrote :

"I'm not sure that we will ever have"... famous last words ? :)

My point is that we should collect any and all sequence of commands used to workaround or fix problems in the package importer.

It will be far easier to remove the useless ones than to remember the useful ones.

Also, issuing these commands on jubany requires some magic runes which are error prone, capturing them will also reduce the potential for human errors.

IMHO, the threshold to capture such commands is ~3/4 uses. There are ~4 removetag and ~10 changetag in this bug report only.

I will be hugely surprised if we don't need to change or remove any tag in the future.

Let's try to chat about that on IRC, I'll have a mp shortly to illustrate.

Revision history for this message
Max Bowsher (maxb) wrote :

All of the above, converted to the fixit.sh syntax that landed.

delete_tag 0.81-4 adun.app ubuntu "maverick"
force_tag 0.81-4 <email address hidden> adun.app ubuntu "natty oneiric"
requeue adun.app
force_tag 0.5.1-2 <email address hidden> agtl ubuntu "lucid maverick natty oneiric"
requeue agtl
delete_tag 1.10-9ubuntu1 albatross debian "lenny sid squeeze wheezy"
delete_tag 1.10-9ubuntu1 albatross ubuntu "breezy dapper edgy feisty gutsy hardy hoary intrepid jaunty karmic lucid maverick natty oneiric"
force_tag 1.10-9ubuntu1 <email address hidden> albatross ubuntu "warty"
requeue albatross
force_tag 3.18 <email address hidden> bootcd ubuntu "lucid maverick natty oneiric"
requeue bootcd
force_tag 2.17-19 <email address hidden> bsdgames ubuntu "lucid maverick natty oneiric"
requeue bsdgames
force_tag 0.91.8-1 <email address hidden> clutter-gtk ubuntu "natty oneiric"
requeue clutter-gtk
delete_tag commons-daemon ubuntu ubuntu "breezy dapper edgy feisty gutsy hardy intrepid jaunty karmic lucid maverick natty"
force_tag 1.0.5-1 <email address hidden> commons-daemon ubuntu "oneiric"
requeue commons-daemon
force_tag 0.1.12-1 <email address hidden> d-feet ubuntu "natty oneiric"
requeue d-feet
force_tag 3.10-1ubuntu1 <email address hidden> elilo ubuntu "maverick natty oneiric"
requeue elilo
force_tag 0.20-2 <email address hidden> exiv2 ubuntu "maverick natty oneiric"
requeue exiv2

Revision history for this message
Vincent Ladeuil (vila) wrote :
Download full text (17.5 KiB)

pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ delete_tag 0.81-4 adun.app ubuntu "maverick"
delete tag 0.81-4 for adun.app in ubuntu maverick
Deleted tag 0.81-4.
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 0.81-4 <email address hidden> adun.app ubuntu "natty oneiric"
force 0.81-4 to <email address hidden> for adun.app in ubuntu natty
Created tag 0.81-4.
force 0.81-4 to <email address hidden> for adun.app in ubuntu oneiric
Created tag 0.81-4.

pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue adun.app
adun.app requeued
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 0.5.1-2 <email address hidden> agtl ubuntu "lucid maverick natty oneiric"
force 0.5.1-2 to <email address hidden> for agtl in ubuntu lucid
Created tag 0.5.1-2.
force 0.5.1-2 to <email address hidden> for agtl in ubuntu maverick
Created tag 0.5.1-2.
force 0.5.1-2 to <email address hidden> for agtl in ubuntu natty
Created tag 0.5.1-2.
force 0.5.1-2 to <email address hidden> for agtl in ubuntu oneiric
Created tag 0.5.1-2.
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue agtl
agtl requeued
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ delete_tag 1.10-9ubuntu1 albatross debian "lenny sid squeeze wheezy"
delete tag 1.10-9ubuntu1 for albatross in debian lenny
Deleted tag 1.10-9ubuntu1.
delete tag 1.10-9ubuntu1 for albatross in debian sid
Deleted tag 1.10-9ubuntu1.
delete tag 1.10-9ubuntu1 for albatross in debian squeeze
Deleted tag 1.10-9ubuntu1.
delete tag 1.10-9ubuntu1 for albatross in debian wheezy
Deleted tag 1.10-9ubuntu1. ...

Max Bowsher (maxb)
summary: jubany fixups relating to misplaced tags
- (AssertionError:<module>:main:find_unimported_versions:check)
+ (AssertionError:<module>:main:find_unimported_versions:check) [package
+ names A through E]
Max Bowsher (maxb)
Changed in udd:
status: New → Fix Released
Vincent Ladeuil (vila)
Changed in udd:
status: Fix Released → In Progress
Max Bowsher (maxb)
summary: jubany fixups relating to misplaced tags
- (AssertionError:<module>:main:find_unimported_versions:check) [package
- names A through E]
+ (AssertionError:<module>:main:find_unimported_versions:check)
Changed in udd:
assignee: canonical-bazaar (canonical-bazaar) → Max Bowsher (maxb)
Revision history for this message
Max Bowsher (maxb) wrote :

force_tag 0.5.7 <email address hidden> git-buildpackage ubuntu "maverick natty oneiric"
requeue git-buildpackage

force_tag 0.3+zgit2872572a-1 <email address hidden> gnome-mousetrap ubuntu "lucid maverick natty oneiric"
requeue gnome-mousetrap

force_tag 1.5.90-1ubuntu2 <email address hidden> gnumeric ubuntu breezy
requeue gnumeric

force_tag 2.4.10-1 <email address hidden> gphoto2 ubuntu "natty oneiric"
requeue gphoto2

delete_tag 1.4.2-2 gpsbabel ubuntu natty
force_tag 1.4.2-2 <email address hidden> gpsbabel ubuntu oneiric
requeue gpsbabel

force_tag 0.10.31.3-1 <email address hidden> gst-plugins-base0.10 ubuntu "natty oneiric"
requeue gst-plugins-base0.10

force_tag 0.10.31.3-1 <email address hidden> gstreamer0.10 ubuntu "natty oneiric"
requeue gstreamer0.10

force_tag 3:2.13.1-1 <email address hidden> gthumb ubuntu "natty oneiric"
requeue gthumb

Revision history for this message
Max Bowsher (maxb) wrote :

force_tag 0.6.0~rc1-5 <email address hidden> iodine ubuntu "natty oneiric"
requeue iodine

force_tag 0.50+cvs20100122-1 <email address hidden> irssi-plugin-xmpp ubuntu "lucid maverick natty oneiric"
requeue irssi-plugin-xmpp

Revision history for this message
Max Bowsher (maxb) wrote :

force_tag 5.11.4-1 <email address hidden> kanyremote ubuntu "maverick natty oneiric"
requeue kanyremote

force_tag 1.8.4-1 <email address hidden> kde-style-qtcurve ubuntu "natty oneiric"
requeue kde-style-qtcurve

Revision history for this message
Vincent Ladeuil (vila) wrote :
Download full text (8.0 KiB)

pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 0.5.7 <email address hidden> git-buildpackage ubuntu "maverick natty oneiric"
force 0.5.7 to <email address hidden> for git-buildpackage in ubuntu maverick
Created tag 0.5.7.
force 0.5.7 to <email address hidden> for git-buildpackage in ubuntu natty
Created tag 0.5.7.
force 0.5.7 to <email address hidden> for git-buildpackage in ubuntu oneiric
Created tag 0.5.7.
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue git-buildpackage
git-buildpackage requeued
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 0.3+zgit2872572a-1 <email address hidden> gnome-mousetrap ubuntu "lucid maverick natty oneiric"
force 0.3+zgit2872572a-1 to <email address hidden> for gnome-mousetrap in ubuntu lucid
bzr: ERROR: Requested revision: '<email address hidden>' does not exist in branch: bzr+ssh://bazaar.launchpad.net/%2Bbranch/ubuntu/lucid/gnome-mousetrap/
force 0.3+zgit2872572a-1 to <email address hidden> for gnome-mousetrap in ubuntu maverick
bzr: ERROR: Requested revision: '<email address hidden>' does not exist in branch: bzr+ssh://bazaar.launchpad.net/%2Bbranch/ubuntu/maverick/gnome-mousetrap/
force 0.3+zgit2872572a-1 to <email address hidden> for gnome-mousetrap in ubuntu natty
bzr: ERROR: Requested revision: '<email address hidden>' does not exist in branch: bzr+ssh://bazaar.launchpad.net/%2Bbranch/ubuntu/natty/gnome-mousetrap/
force 0.3+zgit2872572a-1 to <email address hidden> for gnome-mousetrap in ubuntu oneiric
bzr: ERROR: Requested revision: '<email address hidden>' does not exist in branch: bzr+ssh://bazaar.launchpad.net/%2Bbranch/ubuntu/oneiric/gnome-mousetrap/
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue gnome-mousetrap
gnome-mousetrap requeued
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 1.5.90-1ubuntu2 <email address hidden> gnumeric ubuntu breezy
force 1.5.90-1ubuntu2 to <email address hidden> for gnumeric in ubuntu breezy
Created tag 1.5.90-1ubuntu2. ...

Read more...

Revision history for this message
Max Bowsher (maxb) wrote :

FIxed copy/paste failure in the gnome-mousetrap revid:

force_tag 0.3+zgit2872572a-1 <email address hidden> gnome-mousetrap ubuntu "lucid maverick natty oneiric"
requeue gnome-mousetrap

Revision history for this message
Vincent Ladeuil (vila) wrote :

pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 0.3+zgit2872572a-1 <email address hidden> gnome-mousetrap ubuntu "lucid maverick natty oneiric"
force 0.3+zgit2872572a-1 to <email address hidden> for gnome-mousetrap in ubuntu lucid
Created tag 0.3+zgit2872572a-1.
force 0.3+zgit2872572a-1 to <email address hidden> for gnome-mousetrap in ubuntu maverick
Created tag 0.3+zgit2872572a-1.
force 0.3+zgit2872572a-1 to <email address hidden> for gnome-mousetrap in ubuntu natty
Created tag 0.3+zgit2872572a-1.
force 0.3+zgit2872572a-1 to <email address hidden> for gnome-mousetrap in ubuntu oneiric
Created tag 0.3+zgit2872572a-1.

Revision history for this message
Vincent Ladeuil (vila) wrote :

pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 0.6.0~rc1-5 <email address hidden> iodine ubuntu "natty oneiric"
force 0.6.0~rc1-5 to <email address hidden> for iodine in ubuntu natty
Created tag 0.6.0~rc1-5.
force 0.6.0~rc1-5 to <email address hidden> for iodine in ubuntu oneiric
Created tag 0.6.0~rc1-5.
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue iodine
iodine requeued
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 0.50+cvs20100122-1 <email address hidden> irssi-plugin-xmpp ubuntu "lucid maverick natty oneiric"
force 0.50+cvs20100122-1 to <email address hidden> for irssi-plugin-xmpp in ubuntu lucid
Created tag 0.50+cvs20100122-1.
force 0.50+cvs20100122-1 to <email address hidden> for irssi-plugin-xmpp in ubuntu maverick
Created tag 0.50+cvs20100122-1.
force 0.50+cvs20100122-1 to <email address hidden> for irssi-plugin-xmpp in ubuntu natty
Created tag 0.50+cvs20100122-1.
force 0.50+cvs20100122-1 to <email address hidden> for irssi-plugin-xmpp in ubuntu oneiric
Created tag 0.50+cvs20100122-1.
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue irssi-plugin-xmpp
irssi-plugin-xmpp requeued

Revision history for this message
Vincent Ladeuil (vila) wrote :

pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 5.11.4-1 <email address hidden> kanyremote ubuntu "maverick natty oneiric"
force 5.11.4-1 to <email address hidden> for kanyremote in ubuntu maverick
Created tag 5.11.4-1.
force 5.11.4-1 to <email address hidden> for kanyremote in ubuntu natty
Created tag 5.11.4-1.
force 5.11.4-1 to <email address hidden> for kanyremote in ubuntu oneiric
Created tag 5.11.4-1.
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue kanyremote
kanyremote requeued
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 1.8.4-1 <email address hidden> kde-style-qtcurve ubuntu "natty oneiric"
force 1.8.4-1 to <email address hidden> for kde-style-qtcurve in ubuntu natty
Created tag 1.8.4-1.
force 1.8.4-1 to <email address hidden> for kde-style-qtcurve in ubuntu oneiric
Created tag 1.8.4-1.
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue kde-style-qtcurve
kde-style-qtcurve requeued

Revision history for this message
Max Bowsher (maxb) wrote :

And the rest of the copy paste fails :-/

force_tag 2.4.10-1 <email address hidden> gphoto2 ubuntu "natty oneiric"
requeue gphoto2

force_tag 0.10.31.3-1 <email address hidden> gst-plugins-base0.10 ubuntu "natty oneiric"
requeue gst-plugins-base0.10

Revision history for this message
Vincent Ladeuil (vila) wrote :

pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 2.4.10-1 <email address hidden> gphoto2 ubuntu "natty oneiric"
force 2.4.10-1 to <email address hidden> for gphoto2 in ubuntu natty
Created tag 2.4.10-1.
force 2.4.10-1 to <email address hidden> for gphoto2 in ubuntu oneiric
Created tag 2.4.10-1.
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue gphoto2
gphoto2 requeued
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ force_tag 0.10.31.3-1 <email address hidden> gst-plugins-base0.10 ubuntu "natty oneiric"
force 0.10.31.3-1 to <email address hidden> for gst-plugins-base0.10 in ubuntu natty
Created tag 0.10.31.3-1.
force 0.10.31.3-1 to <email address hidden> for gst-plugins-base0.10 in ubuntu oneiric
Created tag 0.10.31.3-1.
pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue gst-plugins-base0.10
gst-plugins-base0.10 requeued

Revision history for this message
Vincent Ladeuil (vila) wrote :

pkg_import@jubany:/srv/package-import.canonical.com/new/scripts$ requeue gnome-mousetrap
gnome-mousetrap requeued

Revision history for this message
Max Bowsher (maxb) wrote :
Download full text (4.0 KiB)

force_tag 0.6.0~rc2-1 <email address hidden> lash ubuntu "maverick natty oneiric"
requeue lash

force_tag 1.9-2 <email address hidden> lcov ubuntu "natty oneiric"
requeue lcov

force_tag 4.2.3-1 <email address hidden> libaqbanking ubuntu "lucid maverick natty oneiric"
requeue libaqbanking

force_tag 1:2.19-3 <email address hidden> libcap2 ubuntu "natty oneiric"
requeue libcap2

force_tag 0.19.D001-1 <email address hidden> libexplain ubuntu "lucid maverick natty oneiric"
requeue libexplain

force_tag 0.280202-2 <email address hidden> libextutils-cbuilder-perl ubuntu oneiric
requeue libextutils-cbuilder-perl

force_tag 0.0.9+svn4142-4 <email address hidden> libtinymail ubuntu "natty oneiric"
requeue libtinymail

force_tag 1.54-1 <email address hidden> libtm-perl ubuntu "natty oneiric"
requeue libtm-perl

force_tag 1.1.6-2 <email address hidden> libunique ubuntu oneiric
requeue libunique

force_tag 0.9.1-2 <email address hidden> libwpd ubuntu oneiric
requeue libwpd

force_tag 0.2.0-3 <email address hidden> libwps ubuntu oneiric
requeue libwps

force_tag 2.8.8dev.8-1 <email address hidden> lynx-cur ubuntu oneiric
requeue lynx-cur

force_tag 0.9.5.1-1 <email address hidden> mirage ubuntu "natty oneiric"
requeue mirage

force_tag 0.7.0-2 <email address hidden> mlt ubuntu oneiric
requeue mlt

force_tag 1.9.9.dfsg2-2.1 <email address hidden> moodle ubuntu oneiric
requeue moodle

force_tag 0.19-2 <email address hidden> mpc ubuntu "lucid maverick natty oneiric"
requeue mpc

force_tag 0.8.11-3 <email address hidden> muine ubuntu "maverick natty oneiric"
requeue muine

force_tag 1.2.1-3 <email address hidden> mumble ubuntu "lucid maverick natty oneiric"
requeue mumble

force_tag 2.3.1-2 <email address hidden> octave-nan ubuntu "natty oneiric"
requeue octave-nan

force_tag 1.1.5-3 <email address hidden> octave-octgpr ubuntu "maverick natty oneiric"
requeue octave-octgpr

force_tag 1.4.0-2~breezy1 <email address hidden> openafs ubuntu breezy-backports
force_tag 1.4.4-1~edgy1 <email address hidden> openafs ubuntu edgy-backports
requeue openafs

force_tag 1:0.4.14-1 <email address hidden> orc ubuntu oneiric
requeue orc

force_tag 20100124-3 <email address hidden> otrs2-doc ubuntu oneiric
requeue otrs2-doc

force_tag 0.61.ds1-1 <email address hidden> padre debian squeeze
requeue padre

force_tag 8.4.5-1 <email address hidden>...

Read more...

Revision history for this message
Max Bowsher (maxb) wrote :

force_tag 1.0.12-1 <email address hidden> redland ubuntu "natty oneiric"
requeue redland

force_tag 0.4~beta5-1 <email address hidden> roaraudio ubuntu oneiric
requeue roaraudio

force_tag 4.9.0-2 <email address hidden> rpm ubuntu oneiric
requeue rpm

force_tag 0.3.2-1 <email address hidden> rquantlib ubuntu "maverick natty oneiric"
requeue rquantlib

force_tag 2.32.1+20110330-1 <email address hidden> sound-juicer ubuntu oneiric
requeue sound-juicer

force_tag 3.1.3+git20100110.dfsg.1-1 <email address hidden> speakup ubuntu "lucid maverick natty oneiric"
requeue speakup

force_tag 0.5.8-1 <email address hidden> sqlalchemy ubuntu "lucid maverick natty oneiric"
requeue sqlalchemy

force_tag 0.10.5-1 <email address hidden> stellarium ubuntu "natty oneiric"
requeue stellarium

force_tag 2.11-1 <email address hidden> tilecache ubuntu "natty oneiric"
requeue tilecache

force_tag 20100818-2 <email address hidden> ttf-vlgothic ubuntu "natty oneiric"
requeue ttf-vlgothic

force_tag 2010m-1 <email address hidden> tzdata ubuntu "natty oneiric"
requeue tzdata

force_tag 3.1.0-1 <email address hidden> xerces-c ubuntu "lucid maverick natty oneiric"
requeue xerces-c

force_tag 1:0.3.4-2 <email address hidden> xserver-xorg-video-dummy ubuntu oneiric
requeue xserver-xorg-video-dummy

Revision history for this message
Max Bowsher (maxb) wrote :

Whew. Once #23 and #24 are processed, I believe that's all of the backlog of this particular sub-kind of failure repaired.

There are still issues in the importer which can cause this issue to re-occur, but now we can keep on top of new occurrences whilst we fix the underlying issues.

Revision history for this message
James Westby (james-w) wrote : Re: [Bug 795703] Re: jubany fixups relating to misplaced tags (AssertionError:<module>:main:find_unimported_versions:check)

On Fri, 24 Jun 2011 18:29:16 -0000, Max Bowsher <email address hidden> wrote:
> Whew. Once #23 and #24 are processed, I believe that's all of the
> backlog of this particular sub-kind of failure repaired.

These have all been done.

Thanks,

James

Revision history for this message
Max Bowsher (maxb) wrote :

Thanks!

openafs failed again, revealing additional fixups needed:

force_tag 1.4.7.dfsg1-6+ubuntu0.2 <email address hidden> openafs ubuntu intrepid-proposed

delete_tag 1.4.7.dfsg1-6+ubuntu0.2 openafs ubuntu intrepid-security intrepid-updates jaunty

requeue openafs

Revision history for this message
James Westby (james-w) wrote :

On Fri, 24 Jun 2011 20:05:41 -0000, Max Bowsher <email address hidden> wrote:
> Thanks!
>
> openafs failed again, revealing additional fixups needed:

Also done.

Thanks,

James

Revision history for this message
Max Bowsher (maxb) wrote :

Great! I think we can call this bug done now. There are a few of these requeued imports still running, but it looks safe to say that the particular nature of problem that we've been handling in this bug is now all fixed.

Changed in udd:
status: In Progress → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.