[00:17] bdmurray, the gnome-initial-setup SRU failed one of the components due to a change not being included (bug 1768557). Is it OK for the SRU to complete anyway? Any other paperwork required for that? [00:17] bug 1768557 in gnome-initial-setup (Ubuntu Bionic) "Update what's new graphic for Welcome to Ubuntu wizard" [Low,Fix committed] https://launchpad.net/bugs/1768557 === JanC_ is now known as JanC === louis_ changed the topic of #ubuntu-devel to: /!\ THIS CHANNEL HAS MOVED TO #krustykrab /!\ === Unit193 changed the topic of #ubuntu-devel to: Archive: open | 18.04 released | Devel of Ubuntu (not support or app devel) | Build failures: http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of Trusty-Bionic | #ubuntu-app-devel for app development on Ubuntu === Elimin8r is now known as Elimin8er [08:22] doko: the retrigger you did for http://autopkgtest.ubuntu.com/packages/pglogical/cosmic/i386 was that with special triggers? [08:22] or just a retry? [08:22] ahasenack: ^^ [08:23] The test result history on these also doesn't look good in general ... hmm [08:29] hi all [08:31] https://bugs.launchpad.net/ubuntu/+source/gsequencer/+bug/1770324 [08:31] Launchpad bug 1770324 in gsequencer (Ubuntu) "Sync gsequencer 1.4.29-1 (universe) from Debian unstable (main)" [Undecided,Incomplete] [08:31] ^^ I am unsure why it is in state incomplete [08:32] How can I change this? [08:35] juliank: ^- [08:37] juliank: ping [08:37] joelkraehemann_: one sec [08:38] joelkraehemann_: synced [08:39] thank you [08:39] joelkraehemann_: seems I missed your response, I think I forgot to subscribe myself to the bug, sorry [08:40] https://bugs.launchpad.net/ubuntu/+source/gsequencer/+bug/1769958 [08:40] Launchpad bug 1769958 in gsequencer (Ubuntu) "broken clipboard" [Undecided,New] [08:40] ^^ you can close it [08:40] since it is about the same [08:40] ugh, I forgot to add parameters to syncpackage to mark it as sponsored and close the bug, sorry [08:42] joelkraehemann_: We actually should wait until it migrated out of proposed [08:42] but we can still revert it later if it does not leave proposed [08:54] * juliank gets some tea before doing any more uploads or syncs [11:12] https://efail.de/ [11:14] juliank: I actually did sync request for bionic, does it require any additional action? [11:15] joelkraehemann_: For bionic, we'd have to release a stable release update following the procedure in https://wiki.ubuntu.com/StableReleaseUpdates [11:16] too late to sync things into bionic..... one can fakesync with right version numbers; or can sync some -security -stable updates, but it is rare that the versions match up right. [11:17] yeah, I was providing a patch [12:03] joelkraehemann_: I added a bionic task to that bug now [12:04] I'm not sure if it makes sense to just SRU that patch or just SRU the cosmic upload as ~18.04.1 [12:05] the diff from 1.4.24 to 1.4.29 looks tiny [13:15] is there a chance popcon.ubuntu.com will get fixed? [18:58] hey folks, is there any package or module(or magic) to read the changelog from a .deb file directly? [18:59] you could script the process of unarchiving it, then unaraching the control archive [19:00] walbon: debs are ar files containing tar files: https://en.wikipedia.org/wiki/Deb_(file_format)#Design [19:00] wxl: yeah, that's I have done like this : https://github.com/walbon/ubuntu-devtools/blob/walbon/dpkg-changelog [19:01] well, I just looking for a official way in less steps [19:04] odd_Bloke: interesting and complete that post, thx, but I have look for a straightway command. [19:30] walbon: `ar x /path/to/deb control.tar.gz` will get you the control archive and `tar -xO -f control.tar.gz -T <(echo changelog)` will get you the changelog, but unfortunately piping from one to the other (with p instead of x in `ar`) doesn't seem to behave well. [19:31] bsdtar behaves a lot better than ar in many cases; not sure if this is one of them. [19:36] good call Faux [19:37] walbon: bsdtar -xOf /path/to/deb -T <(echo control.tar.gz) | bsdtar -xOf - -T <(echo changelog) [19:37] no temporary anything required (except for subshells............) [19:38] i would have done tar|tar but it seems like only bsdtar can handle ar [19:39] wxl: bsdtar ? I found it and I'm installing it here to test. thx [19:39] walbon: as in not gnutar :) [19:39] As in "oh god you let libarchive do WHAT?". [19:40] XD [19:40] I wrote an even more crazy bsdtar in RUST which supports e.g. recursing into ext4 filesystem images. I should finish that up sometime. [20:11] actually to be fair, gnutar can handle it. you just need to give it a J [20:11] ap p /path/to/deb control.tar.xz | tar -xJOf - -T <(echo changelog) [20:11] s/ap/ar/ [22:47] win 8