[00:22] Is it on purpose there's only one amd64 builder and i386 has seven? [00:27] ScottK: Someone Ubuntuish probably moved them across to take care of the langpacks. [00:27] wgrant: Hmmm. Probably. Can they be put back? [00:28] Indeed, just doing so now. [00:28] Cool. Thanks. [00:28] Much better. [00:28] I don't suppose you can give ross a kick too? [00:29] ross or rothera? [00:29] Oh, I see it's better now. [00:29] ross was dead a few minutes ago. [00:29] Hm [00:29] I didn't fix it. [00:29] Indeed, kicking rothera wouldn't hurt, but we're not sort on i386 builders. [00:29] It was doing nothing for 12 hours, though, which is a bit odd. [00:30] rothera has hardware issues. [00:30] I checked ~5 minutes ago and ross had a big red X next to it on the builder page. [00:30] Maybe when you reconfigured the others something got reset? [00:31] Nope. Someone else must be playing with them. [00:31] * ScottK suspects infinity. [00:31] Indeed. [00:33] hloeung got ross fixed [00:34] Ah [00:34] Too many IS channels. [00:40] wgrant: 6-7 isn't "too many!!! [00:40] 67 is [00:41] Does staging.launchpad.net get reset every so often, or is it something I could create a sprint on to use for testing for a week with Summit? [00:43] yes, weekends [00:43] lifeless: every weekend? so if I set up a sprint on Monday, I would have ~Friday to do testing and whatnot? [00:43] cjohnston: Right. [00:43] yah [00:44] sweet [00:44] thanks [01:33] Hi there. Is there a HTTP URL for https://launchpad.net/gcc-linaro/4.6/4.6-2012.03/+download/gcc-linaro-4.6-2012.03.tar.bz2? [01:33] I want to point to it from an auto builder, but want to put a HTTP proxy in the middle to cut the download time. [01:36] It should redirect to the librarian [01:45] StevenK: yip, which serves over HTTPS [01:45] You can go to http://launchpad.net/*, get redirected to https://launchadlibrarian/*, hit Ctrl-C, then go to http://launchpadlibrarian/* and it will work [01:45] But that's not automatic or documented. [01:46] michaelh1: librarian is http too [01:46] just take of the 's' [01:47] I'm using an existing tool that takes an URL and then internally does a wget. I'd have to hack it quite a bit to handle the http -> https redirect. [01:54] wget should easily handle downloading it over https, so what's the real problem? === \u03b5 is now known as \uO3b5 === \uO3b5 is now known as \u03b5 [01:56] michaelh1: echo $url|sed -e "s/^https/http/"|wget [01:57] But that won't work either, since you need to redirect and then change the URI scheme. [01:57] michaelh1: although it shouldn't matter. the proxy is not the connection to the outside server. the proxy server should still be able to let you connect to https outside [01:57] dobey: yes, but only after I've found out what the redirect is [01:57] Is there any way to copy base ubuntu packages into a PPA? [01:58] This is an auto builder. I don't want to hit Launchpad with each build due to speed and download count issues [01:58] rmk: no, and there isn't any need to unless you want to change it, which means you download the source, make changes, and upload to ppa [01:59] michaelh1: auto-builder to build packages? [01:59] No, this uses crosstool-NG to build a binary toolchain from the Linaro toolchain source [01:59] So the build scripts change but the aunchpad hosted tarball doesn't. [01:59] dobey: Yeah I wanted to try a rebuild of the same package for oneiric [02:00] It would be nice if a http://launchpad.net URL redirected to http://launchpadlibrarian [02:01] rmk: backporting things often requires a lot more work than just copying things over and rebuilding. and the version in debian/changelog should be changed to append ~oneiric1 for example, so that the actual precise version is still newer, if one were to install from the ppa, then upgrade [02:02] michaelh1: i don't understand why the non-ssl url matters. [02:03] Because I want to cache the file in a local proxy. HTTPS will go through the proxy but then I'll end up re-downloading ~70 MB each time the build script changes [02:03] why? the proxy should still cache it [02:03] A proxy can't cache HTTPS as it would have to decrypt it [02:04] s/can't/isn't supposed to/ :) [02:05] dobey: afraid not unless you do HTTP to the proxy and then HTTPs past that. You can cache it as an end user, but not in a proxy [02:06] dobey: Fair enough. These particular packages tend to work across distros but your point is valid. [02:06] michaelh1: i presume you're sticking this url inside a script or conf file said script reads? [02:06] I'll do a rebuild and submit it to the PPA. [02:06] Thanks. [02:07] dobey: yip. [02:07] michaelh1: Generally that sort of caching should be done locally. [02:07] michaelh1: why not just stick the http://lauanchpadlibrarian.net/ url there instead? [02:07] dobey: it's hard to maintain and bypasses the download count [02:07] We used to serve that over HTTP, but the world has now come to its senses. [02:07] And HTTPS can be used pretty much universally. [02:08] dobey: Does not bypass the download count. [02:08] er, michaelh1 ^^ [02:08] wgrant: OK. It seems that a proxy using existing tools would be much easier then implementing a new type of caching in the client [02:09] I understand that HTTPS everywhere is a good goal [02:09] if [ ! -f $localcopy ]; then weget $remoteurl -O $localcopy; fi ? [02:09] michaelh1: It would be easier, but it is also a rather bad idea to download stuff for an autobuilder without verifying it... [02:10] wgrant: true, but GPG and md5sums can help there. [02:10] right; so add a sha256sum check to that [02:10] Having https doesn't authenticate the package [02:10] It doesn't, no. [02:11] nor does having a proxy cache it [02:12] Sure, but you could verify it against a trusted signature afterwards. [02:13] Yip. And having a proxy means nothing to manage, faster downloads, and no change or hacks to the tool set. [02:13] Anyway, we will not serve things over HTTP. [02:14] If you don't want to implement local caching (like most build tools do), you'll need to intercept the redirect and rewrite it to HTTP. [02:14] except for having to manage a proxy. :) [02:27] Re above.... actually you can copy Ubuntu primary archive packages into a PPA [02:27] Which is actually really handy at times [02:28] https://launchpad.net/~maxb/+archive/preserved for example [02:32] and *how* do you do that exactly? [02:33] with the API [02:33] right [02:33] see Archive.syncSource [02:33] so in other words, you can't do it on the web site. [02:33] not reliably [02:33] and most people don't want to write a program to do it [02:34] ISTR soren writing a tool for that [02:34] the kind of people who want to do it are the kind of people who can write some code to do it [02:34] Where 'some code' == 1 line in lp-shell [02:34] it's like three lines total [02:34] i don't see why anyone would want to do that [02:35] well, feel free to fix the timeouts on the archive page if you want to do it in the UI [02:35] i don't want to do it :) [02:36] "you [02:36] " [02:36] :) [02:36] heh [02:36] it just seems like something that is too easy for people to get wrong and break things [02:36] the PPA page is not designed to handle the 16k+ packages that's in the Ubuntu archive [02:36] sure [02:37] and it's rather trivial too either use the API or download the package and re-upload [02:37] i am very aquainted with launchpad timeouts :) [02:37] s/too/to/ [02:37] yeah; download + dch + debuild + upload, seems like the best option for that [02:38] dget to download [02:38] very easy [02:38] anyway. i am not in oz. so i should probably get off here :) [02:38] can even re-use the orig [02:39] aye; though it gets a bit more complicated if you're pulling from say oneiric, and building on lucid (since updates/proposed/etc might be the right place to pull from, and it's not always obvious) [02:40] anyway. night :) [02:40] I have to admit, I copied all the things to that PPA URL I posted using the web ui [02:40] and some carefully calculated URL hacking [02:41] you're clued in :) [07:45] how to delete packages form the PPA? [08:32] How can I merge my branch with some other branch? [08:33] )/ws 30 === czajkowski changed the topic of #launchpad to: https://launchpad.net/ | Help contact: czajkowski | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | User Guide: https://help.launchpad.net/ | Support: https://answers.launchpad.net/launchpad | For packaging help: join #ubuntu-packaging [09:18] How can I merge my branch with some other branch? [09:20] vivekimsit1: bzr help merge [09:21] I can't find this link :"Click on the Propose for merging into another branch link. " [09:22] vivekimsit1: http://doc.bazaar.canonical.com/beta/en/user-guide/merging_changes.html may be of some use to you [09:34] I not able to find the link "propose for merging the branch "! in the launchpad [09:47] vivekimsit1: it should be on the branch web page [09:48] jelmer: Its not visible on my branch page! you can check it! : https://code.launchpad.net/~vivekimsit/commission/trunk [09:51] vivekimsit1: it doesn't look like there are any other branches in the project [09:51] vivekimsit1: you need at least two branches, as you'd merge one into the other [09:52] jelmer: Ya! Ok! but I want to merge my branch with some other project's branch (They basically the same but with diff names) [09:57] vivekimsit1: I'm not sure if you can do cross-project merge proposals in Launchpad; bzr should support cross-project merges though. [11:03] hi guys! Do I have any chance to change my username with another already existing but unused? Few days ago I've mailed the account owner to ask him if they use this LP account, but no response received. Can you help me? [11:03] DNX: wasn;t that friday I suggested to mail them ? [11:04] yes czajkowski, you remember right [11:05] DNX: yup maybe give it till friday and give the person a chance to reply [11:05] :) [11:06] oook czajkowski, thank you [11:09] czajkowski, because this stops me to contribute more to https://code.launchpad.net/ubuntu-accomplishments-web-editor [11:09] or I'll be able to move my branch later? [11:10] DNX: nothing stops a person contributing :) [11:11] :) "contribute more"... because there are already some pull requests accepted from me. BTW you are right! [11:12] ok, I'll continue with my current nickname... until DNX' owner will respond [11:12] thank you for your time [11:47] can anyone tell me why these packages weren't deleted yet? https://launchpad.net/~renatosilva/+archive/ppa/+packages?field.name_filter=&field.status_filter=&field.series_filter= [11:47] the non-date and 20120311 were a mistake, only 20120315 should be there === Pikkachu1 is now known as Pikkachu === Pikkachu is now known as PikkachuAway [13:18] Hi, I am trying to rebuild xserver for ARM + one patch on LP, armhf build is OK, unfortunately armel build is failing with strange error: "qemu: uncaught target signal 11 (Segmentation fault) - core dumped" - https://launchpad.net/~tiomap-dev/+archive/omap-trunk/+build/3293012 [13:19] This was OK with previous xserver version: https://launchpad.net/~tiomap-dev/+archive/omap-trunk/+build/3254321 [13:19] Is it a known issue? [13:38] lool: did you see question from XavB ^^^. looks like there are qemu builders now? [14:08] ndec_: that's right [14:08] XavB: Hey [14:09] so now there are new bugs ;-) [14:09] XavB: There have been two types of errors hitting QEMU based builders really badly in the last weeks [14:09] there was a workaround, but it would cause regressions for other uses [14:09] the workaround was to set QEMU_RESERVED_VA=0 [14:09] the problem occurs on 64-bits host with 32-bits QEMU (our case) [14:10] Then the QEMU mmap implementation would fail [14:10] where to put this WA? [14:10] this is something we patched in the qemu package that gets used there [14:11] now Peter Maydell from Linaro redesigned this upstream starting from the OBS patches and I think we have patches so that it would work in all cases [14:11] but the new qemu release had a regression, so that I'm not sure where it stands [14:11] the next steps would be to merge the latest qemu-linaro release with a patch in precise, then use it for our buildds [14:11] ouch... and how do we reliably build packages on LP then? [14:11] is qemu used for armel only? [14:12] https://bugs.launchpad.net/bugs/956875 seems to be a bug on the topic [14:12] Ubuntu bug 956875 in Linaro QEMU "libecj-java-gcj package installation fails" [Undecided,New] [14:12] the regression preventing the precise update is https://bugs.launchpad.net/bugs/928432 [14:12] Ubuntu bug 928432 in qemu-linaro (Ubuntu) "spice backend fails to build on i386 with -Werror" [Medium,Triaged] [14:13] and the original discussion on the workaround and such is at https://bugs.launchpad.net/bugs/883136 [14:13] Ubuntu bug 883136 in QEMU "qemu on ARM hosts aborts on startup because makecontext() always fails" [Undecided,Fix committed] [14:14] ndec_: I don't know whether it's enabled for armhf too; in fact, I don't know whether it's meant as a replacement for all virtual PPAs, for all non-virtual PPAs, or just for another set of PPAs; I would think Adam Conrad (infinity) would know, it's actually a project lead by buildd admins/sysadmins at Canonical AFAICT [14:14] Nick Moffitt being one of the engineers working on the deployment of qemu binaries in buildd chroots [14:15] slangasek is the person packaging new qemu-linaro updates into precise [14:16] lool: apparently, armhf builds are not using qemu [14:16] In fact, it seems the new release is already in precise https://launchpad.net/ubuntu/+source/qemu-linaro/1.0.50-2012.03-0ubuntu1 [14:17] XavB: indeed, I see e.g. https://launchpad.net/builders/peryton as a PPA buildd which has "QEMU Armel buildd", but the two armhf PPA buildds don't have that [14:18] that said, it would look exactly the same for armhf [14:18] and it should if you ask me :-) [14:19] lool: in fact, the most critical for me is the armhf version that is available even if armel build is KO, so I am happy to have different config for armhf... :D [14:20] hehe [14:20] XavB: You'd have to check with buildd admins as to which PPAs use QEMU buildds vs. real hardware for armel === menesis1 is now known as menesis === PikkachuAway is now known as Pikkachu [15:11] Good morning. [15:12] I'm using launchpadlib on precise, and I get this on login_with [15:12] ssl.SSLError: [Errno 185090050] _ssl.c:340: error:0B084002:x509 certificate routines:X509_load_cert_crl_file:system lib [15:12] have you seen that? any idea? [15:43] elopio: has this onlys tarted to happen today ? [15:43] czajkowski: I noted it yesterday. But I haven't run the launchpadlib scripts for a couple of weeks. [15:44] are you still seeing the issues now if so can you file a bug and I'll get it looked into please? [15:45] czajkowski: sure. One second... [15:45] elopio: thanks [15:57] czajkowski: bug #959429 [15:57] Launchpad bug 959429 in launchpadlib "SSLError on login_with" [Undecided,New] https://launchpad.net/bugs/959429 [15:57] elopio: thanks [16:02] Hi there. I just created a launchpad account. http://s3.imgimg.de/uploads/launchpadad1b471apng.png Is this normal? [16:03] jadoe: what browser are you using ? [16:03] midori and firefox, looks this way in both of them [16:04] jadoe: and what OS ? [16:04] if I upload a new package for some series, are all the old packages (source/binaries) deleted for that series? [16:05] jadoe: also what is the lp ac name please? [16:05] when i add a new GPG key to my account, is it only the current contact address email which is notified ? [16:06] czajkowski: account name = email address? launchpad@maps.rubbldiekatz.de [16:06] czajkowski: Ubuntu 11.10 [16:06] jadoe: user name? [16:06] czajkowski: Alfons Bauer [16:07] apw: yes [16:07] jadoe: I'm not seeing the lp page created under the email address or alfons [16:08] jadoe: on the lp page launchpad.net/~username what is the username ? [16:11] czajkowski: the site I get to, when I click on my name? https://launchpad.net/~78luphr0rnk2nuqimstywepozxn9kl19tqh0tx66b5dki1xxsh5mkz9gl21a5rlwfnr8jn6ln0m3jxne2k9x1oh-90kfclz5t-a811i2i3ytqlsztthjth0svbccw8inm65tmkqp9sarr553jq53in4xm1m8wn3o4rlwaer06ogwvqwv9mrqoku2x [16:12] czajkowski: I don't see a "user name" there, only launchpad id. and launchpad id is that long letter-number-mess [16:12] jadoe: yes that is a bit messy [16:12] what did you want it to be [16:13] czajkowski: i don't remember being asked for it, only name, mail, password. are you about to change it? jadoe [16:13] jadoe: you already have an account set up https://launchpad.net/~jadoe [16:13] shall I remove the other account for you? [16:14] * jadoe is confused now [16:14] one sec [16:14] you've created 2 accounts and the user name Jadoe is one of the them, and the other you seem to have copied some long string into the user name text box [16:14] czajkowski: ok, remove the new on [16:15] done [16:16] clipit says I did not have that string in the clipboard. how could I have copied it in the user name text box? and where was that user name text box? I don't remember seeing it. But never mind, thank you. [16:40] if I upload a new package for some series, are all the old packages (source/binaries) deleted for that series? [16:46] jonrafkind: may be of some use to you https://help.launchpad.net/Packaging/PPA/Uploading#Uploading_with_SFTP === bulldog98_ is now known as bulldog98 [17:04] i dont see my question answered in that section === czajkowski changed the topic of #launchpad to: https://launchpad.net/ | Help contact: | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | User Guide: https://help.launchpad.net/ | Support: https://answers.launchpad.net/launchpad | For packaging help: join #ubuntu-packaging === yofel_ is now known as yofel [21:00] Did LP change it's download URL patters a few months ago? Debian/watch files for my LP hosted projects no longer work. [21:01] This used to work: [21:01] http://launchpad.net/authentication-results-python/+download http://launchpad.net/authentication-results-python/.*/.*/authres-(.*)\.tar\.gz debian uupdate [21:01] What would it be now? [21:05] ScottK: what version are you expecting it to pick up? [21:05] 0.399 now [21:05] It doesn't pick up any version at all anymore. [21:07] https://launchpad.net/authentication-results-python/trunk/0.399/+download/authres-0.399.tar.gz [21:07] It didn't pick up https://launchpad.net/authentication-results-python/0.3/0.3/+download/authres-0.3.tar.gz either when that was the current release. [21:07] hrmm, that's odd [21:08] it seems to also not work when i run uscan in lp:ubuntu/ubuntuone-installer [21:08] or at least, it does something and just exits. doesn't print anything [21:08] Got it. [21:08] and exits with code 1 [21:08] If I change the second one to https:// it works. [21:09] ah [21:10] i guess it did change and broke uscan :( === jayrambhia is now known as jayrambhia|away [22:10] ScottK: We removed direct HTTP access a month or so back, because there was very little justification for it past 2006. [22:11] wgrant: Reasonable. [22:11] It just broke all my watch files ... [22:11] Heh [22:11] mine too :) [22:11] Should have all been HTTPS already, I guess :) [22:12] I rarely examine watch files beyond the point of "it works". [22:12] I cargo culted the format for an LP watch file from somewhere. === wedtm is now known as wedtm|away === wedtm|away is now known as wedtm