/srv/irclogs.ubuntu.com/2016/02/17/#launchpad.txt

loolAhoy, I forgot how to remotely clone a git repo on the Launchpad side00:50
loolI'd like to setup a linux git repo with a patch on top, doing the initial git repo clone on the Launchpad side00:51
loolwgrant: ^ would you be able to help?01:12
wgrantlool: In general you can just push to a new repo, and if the project/package already has a default it will just work. But Linux can be set up a bit specially. Do you have a particular repo that you've cloned?01:56
loolwgrant: it was //git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/trusty02:43
loolwgrant: I havent cloned it in launchpad yet02:43
loolwgrant: I need to drop off for the day, but will read whatever you send here tomorrow02:43
wgrantlool: Pushing to lp:~lool/ubuntu/+source/linux will work fine.02:44
=== maclin1 is now known as maclin
=== maclin1 is now known as maclin
=== kickinz1|afk is now known as kickinz1
stubI'm having trouble with https://code.launchpad.net/postgresql-charm08:39
stubMy git repos seem to end up in my ~stub namespace rather than the project namespace08:39
stub(I don't want to pollute the master repo with my development branches, but I'd like my development branches backed up on Launchpad)08:40
stubDo I need a team?08:41
wgrantstub: Git repositories work very similarly to Bazaar branches in terms of ownership and aliases.09:13
wgrantThat is, no Git repository exists solely in the project namespace.09:13
wgrantAh, it looks like you worked out to push to lp:postgresql-charm09:14
wgrantJust after you asked?09:14
stubI know how to push it (and now I have two repos in ~stub). I was just wondering how to get the ~stub removed, which from what you are saying needs me to add a team and use a team repo?09:15
wgrantRight, just like Bazaar all repos have an owner and may be official for the project.09:15
wgrantYou probably want a team here.09:15
stubIts somewhat hidden with bazaar, since you are dealing with branches rather than repos.09:16
wgrantHm, how do you mean?09:16
wgrantThey're still just "lp:postgresql-charm"09:16
stubRight. The difference is, with bzr my main branch would be lp:postgresql-charm and I can push a bazillion other branches to ~stub/postgresql-charm/foo and not pollute anything.09:17
wgrantAh, right.09:17
wgrantYou've managed to make them separate now, though.09:17
wgrantlp:~stub/postgresql-charm was created first, and is https://code.launchpad.net/~stub/postgresql-charm/+git/postgresql-charm09:18
wgrantThen you pushed to lp:postgresql-charm, which created https://code.launchpad.net/~stub/postgresql-charm/+git/postgresql-charm-109:18
stubYeah, just might work on a less sucky repo name than -1 ;)09:18
wgrantYou probably want to take the second one, give it to a team, and rename it to something less silly.09:18
=== kickinz1 is now known as kickinz1|afk
=== teran_ is now known as teran
=== Michaela is now known as Ciblia
=== Ursinha_ is now known as Ursinha
jgdxI'm getting some oopses (timeout) on bug reporting. Known issue? OOPS-60e35dd598b2c114c1f2b7c3d3791011 OOPS-766de5f046ed07479d376ca647bacb5514:54
ubot5https://oops.canonical.com/?oopsid=OOPS-60e35dd598b2c114c1f2b7c3d379101114:54
ubot5https://oops.canonical.com/?oopsid=OOPS-766de5f046ed07479d376ca647bacb5514:54
dobeyjgdx: new bug, or creating a task on a bug with lots of tasks already?14:56
jgdxdobey, brand spankin' new14:56
dobeyjgdx: ah. maybe some continuation of the high load issues LP was having yesterday?14:57
dobeyi haven't hit any timeouts today yet, though14:57
jgdxdobey, ah—there were issues yesterday? OKay, I'll be a bit more patient.14:58
dobeyjgdx: yeah. maybe check with webops internally? there could be new issues of course :)15:02
jgdxdobey, it went through now, so I'll just assume all is back to normal :p15:09
dobeywell, you know what they say about assumption :P15:10
=== Guest91003 is now known as karstensrage
rudolfsDoes git repo allow to push changes from another team member?19:32
Saviqthis build looks stuck https://launchpad.net/~ci-train-ppa-service/+archive/ubuntu/landing-019/+build/9023705 - can anyone do something about it or will it time out on its own?20:32
dobeySaviq: i think you're supposed to ask trainguards for those; robru can cancel the job for example20:42
dobeyi guess it probably won't time out20:43
dobeyat least, probably not for at least another 15 hours anyway; there are some things that do legitimately take a very long time to build, so i'm not sure if there is a timeout set20:44
robruSaviq: dobey: cancelled20:45
robruwas gonna say "seems like an ordinary failure to me" but then I saw "started 10 hours ago"20:45
dobeyyeah20:46
Saviqrobru, dobey ack, tx20:46
robruSaviq: need me to retry or will you rebuild the silo anyway?20:47
Saviqrobru, s390 doesn't build anyway20:47
robruah20:47
robruperfect then20:47
Saviqyup20:47
tewardit's not possible to issue a rebuild for the ppas without uploading a new version number, right?23:20
xnoxteward, only if it failed to build. if the build succeeded, one cannot "rebuild" it, as there is unique binary name constraint.23:21
tewardthat's what i thought23:21
tewardi'll pull the packages down and upload 'rebuild' numbered ones23:22
xnoxteward, dch --rebuild '' && debuild -S && dput ../*.changes -> is something i have never scripted together, nor like ever use, when like rebuilding 100s of packages for boost.23:22
tewardxnox: heh23:23
tewardi'll just upload the changes, for the PPA.  shouldn't be too hard since i already have automated workflow scripts which do most of the stuff I need23:28
tewarddo the PPAs need the full source tarball upload each time, or does it only need the .changes if the tarball is already present there (i.e. the version hasn't changed, it's just a rebuild)23:47
wgrantteward: You don't need to reupload the orig.tar.* if it already exists in the PPA or Ubuntu's primary archive. "debuild -S -sd" will exclude it, while -sa will include it.23:49
tewardjust making sure :)23:51
tewardwgrant: based on the changelog here, though `debuild -S` in my devscripts doesn't define -sa, so it's not including the source because the version number doesn't imply it needs one; i've had to -sa before for a clean buildtests repository in the past, though, for an Ubuntu merge, but it's atypical in most of the cases I've had :)23:56
tewardthanks though for confirming what I thought - that PPAs operate almost exactly like the standard repos would23:56
teward(with regards to whether the .changes or the .changes + orig.tar.* is needed :)23:57

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