/srv/irclogs.ubuntu.com/2012/01/02/#launchpad.txt

jonrafkindI just uploaded my package via dput and got an error on the command line, but I also got an email from launchpad saying it accepted my package00:28
jonrafkindthe error from dput is Changes file must be signed with a valid GPG signature: Verification failed 3 times: ["(7, 1, u'General error')", "(7, 1, u'General error')", "(7, 1, u'General error')"] : Permission denied.00:29
dobeyjonrafkind: it's a known bug00:29
jonrafkindthe package was signed. I have upload this package with the same signature multiple times in the past successfully00:29
jonrafkindis it ignorable?00:29
lifelessyes00:30
mccso i'm not familiar with bzr or launchpad... i'm trying to check out an open source project to make a small change05:03
mccthe repository seems to be over 150 MB... just checking, bzr doesn't have a way to, like, download just the single revision you want, like svn does or anything?05:03
mccalso: I think i'm checking out just one *branch*-- if i want to check out a different branch will i then have to download another 150 MB of files? or is there a way to just "add" a branch to an existing clone and get just the missing revisions? or is it implicit, if i check out lp:inkscape, i've also checked out lp:inkscape/0.48.x?05:05
lifelessmcc: you can indeed share the history you've downloaded09:13
lifelessmcc: 'bzr checkout --lightweight' will download just the tip revision09:14
mcclifeless: thanks09:50
ajf_I have launchpad mirroring a project in subversion on code.google.com. If I switch that repository to git, is it possible to switch launchpad to use that without recreating the launchpad repo?11:15
BerndSchhello, is there someone who could help me with a ppa? I'm trying to create my first ppa but the build fails with the error "You have not informed bzr of your Launchpad ID". How can I fix this?11:19
sorenThis doesn't look right to me: http://paste.ubuntu.com/790403/11:42
czajkowskisoren: breaking things on abank holiday11:43
czajkowski:)11:43
sorenBank holiday? Today?11:43
sorenOh.11:43
czajkowskisoren: yup11:43
sorenNew years fell on a Saturday. Right.11:44
* soren kicks and screams11:44
ajmitchalmost11:44
czajkowskisoren: you can go back to sleep now :_11:44
czajkowski:)11:44
* soren sobs instead11:45
wgrantsoren: http11:46
wgrantNot https11:46
wgrantIt still shouldn't redirect infinitely, though.11:46
sorenOh.11:46
sorenWas it always this way?11:46
soren(http rather than https, I mean)11:48
wgrantsoren: Yes11:57
wgrantsoren: The only thing on https://bazaar.launchpad.net is codebrowse for private branches.11:58
sorenwgrant: Ok. Thanks!12:06
ahasenackhi guys, I'm getting a "General error" when uploading a package to a ppa and the signature is checked, is something wrong in lp or is it me?12:52
ahasenackUploading python-tz_2010b-2~lucid1~ppa1_source.changes: 1k/2k550 Changes file must be signed with a valid GPG signature: Verification failed 3 times: ["(7, 1, u'General error')", "(7, 1, u'General error')", "(7, 1, u'General error')"] : Permission denied.12:52
stgraberahasenack: yeah it happens sometimes, your upload usually still goes through, you'll get the confirmation e-mail in a few minutes12:54
geserahasenack: during dput? you can ignore that if you are sure that you signed it with the right key and wait for the accepted (or rejected) mail12:54
ahasenackstgraber: indeed, I just got it12:55
ahasenackgeser: yeah, during dput, using ftp12:55
stgrabergeser: the annoying thing is when you use dput to push more than one source package, as it'll exit when it gets the error12:55
stgrabergeser: so I had to stop doing that and switch to "for change in *.changes; do dput $change; done" instead12:56
geserstgraber: why not write an wrapper that calls dput in a loop with one argument at a time?12:57
stgrabergeser: yeah, I guess if that error persists, I may end up doing that (also need to touch the .upload file as dput won't create it on failure)12:58
ahasenackis there another way to upload a package to a ppa that doesn't use dput?12:59
geserdput with sftp12:59
ahasenackI was using that, but another bug came up so I switched back to ftp12:59
geserbut I'm not sure if this check is done there too or not12:59
ahasenacka long time ago ftp wouldn't work for large packages (like 90Mb), so I switched to sftp, then I started hitting another bug with sftp, and switched back to ftp13:00
=== JanC_ is now known as JanC
=== yofel_ is now known as yofel
htorquehi everyone! i'm trying to run apport-collect and get the following crash: http://paste.ubuntu.com/790565/ is this a problem with launchpad or apport?14:33
jelmerhtorque: hi14:44
jelmerhtorque: it looks like apport might be trying to set a tag that has an invalid name14:44
jelmerhtorque: the best course of action is probably to file a bug against apport14:45
jelmerthough admittedly the exception from launchpadlib isn't perfect either..14:45
htorquejelmer: thanks, will do15:23
=== Noldorin is now known as Qwerty
=== Qwerty is now known as Noldorin
kamalhi #launchpad (allanap) ...  can I have a spam post removed from a LP bug?  https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/568611/comments/25217:41
ubot5Ubuntu bug 568611 in linux (Ubuntu) "Screen brightness control fails on Dell Studio 1558" [Low,Fix released]17:41
exarkunis there a Twisted-based launchpad api client library?18:25
dobeyi don't think so. launchpadlib, lazr.restfulclient, and wadllib just use urllib2 (maybe httplib2 as well), iirc18:27
exarkunis launchpadlib threadsafe?18:28
exarkunwait, urllib2 isn't even threadsafe18:28
exarkunso...18:28
dobeywell, i use it in a gtk+ app with threads in python18:29
dobeyand it works fine18:29
exarkunexcept when it fails 1% of the time, unreproducably, on client machines? :)18:29
exarkunI guess using it from exactly one non-main thread should be somewhat okay18:30
dobeyno18:30
dobeyit is the main gtk+ thread and the one thread for lp stuff, though; so not crazy like, say, threads in evolution are18:31
exarkunokay, yea, that sounds like what I should do, I guess18:31
exarkunis anyone interested in (as in, willing to pay an expert to write) a twisted-based version of launchpadlib?18:32
dobeythough i'd guess that more threads would be generally fine as long as you do it right.18:32
exarkunurllib2 really isn't threadsafe, I've checked18:34
exarkunit probably would work fine 99.9% of the time, and then break mysteriously.18:34
dobeywell, all software does that anyway18:35
exarkunSo why even try to do any better18:38
exarkunBesides, if anyone ever made a program that worked right, users would suddenly be very angry at everyone else18:38
exarkunThat would be a major disaster :)18:39
exarkunI have more questions about launchpadlib, like how to get all the bugs for a project, but I have to go.  cya.18:39
dobeyok18:43
zookoIs there a bug I can subscribe to in order to be informed about progress/changes in having launchpad watch sf.net and redhat bugzilla?19:20
=== davidcalle_ is now known as davidcalle
zookoFolks: I think https://launchpad.net/zenoss should link to https://bugs.launchpad.net/bugs/bugtrackers/zenoss-trac . I've already written to the email address listed as the maintainer of https://launchpad.net/zenoss, but it bounced.20:18
zookoWhat can I do?20:18
micahgzooko: you can file a request at answers.launchpad.net/launchpad20:20
zookomicahg: thanks!20:26

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!