/srv/irclogs.ubuntu.com/2009/06/07/#launchpad.txt

=== oktay-glatze is now known as oktay-kellkafa
=== asac_ is now known as asac
Gromhello02:02
Gromis possible to make private branch on launchpad?02:02
jmarsdenGrom: Well,   bzr push lp:~grom/+junk/my-private-branch   #  will create your own branch, but it will be visible to others... how "private" do you need?  if 100% private, just keep the repo on your own local machine :)02:08
=== Andre_Gondim is now known as Andre_Gondim-afk
darkvertexHi, I made a translation team called "Launchpad Indonesian Translators" in launchpad a while back. Could it possibly be added to https://translations.launchpad.net/+groups/launchpad-translators/ ? What is the correct procedure?03:00
darkvertexThis id the link: https://launchpad.net/~lp-l10n-id03:01
jmarsdendarkvertex: I would suggest you email rosetta@launchpad.net and ask them to add your team03:05
darkvertexjmarsden: thank you for your prompt reply. will do as you suggested03:06
=== ripps_ is now known as ripps
=== sale_ is now known as sale
didrockshey launchpad guys10:58
didrocksI got some error in staging when using my credential (I don't have this error in edge)10:58
didrocksso, it seems that the launchpad API binding is broken right now on staging10:59
crevettehello13:37
crevetteI've put a package to my ppa, and I don't know why soyuz tries to upload then after, and off course it fails13:39
crevette... a package to build in my ppa ...13:40
cody-somervillecrevette, Its attempting to upload the binary packages not the source package again. Its a known bug in launchpad that occurs intermittently.13:46
crevettehey cody-somerville13:47
cody-somervillecrevette, Can you provide a link to the build results page for the package?13:47
crevetteyep of course,13:47
crevettehttps://edge.launchpad.net/~bmillemathias/+archive/ppa/+build/106418013:47
cody-somervillecrevette, ah13:49
cody-somervillecrevette, This is a different matter.13:49
cody-somervillecrevette, You can't upload an older version of a package to a PPA for a series even if you've deleted the newer version.13:50
crevetteah, is itn't to be superseded by default?13:51
crevettehmmm, I don't have any other bluez package for jaunty13:51
cody-somervillecrevette, You did.13:52
crevetteyeah13:52
crevetteI had one13:52
cody-somervilleYou need to upload a version higher than 4.37-0ubuntu1 for it to be accepted to Jaunty in your PPA.13:53
cody-somervillehttps://edge.launchpad.net/~bmillemathias/+archive/ppa?field.name_filter=bluez&field.status_filter=any&field.series_filter=jaunty13:53
crevettecody-somerville: but I need to test a patch for 4.32, in order to know to be tested by jaunty users13:54
crevetteaaaaaah13:54
crevetteokay understand13:54
cody-somerville:)13:55
cody-somervilleI believe the current workaround is to create a new PPA.13:55
crevetteokay, this is true now I can haz more ppa13:55
crevettethanks cody-somerville13:57
cody-somervillecrevette, My pleasure :)13:57
crevettethanks for the support on sunday13:59
crevette:)13:59
huayrahello I want to upload a totally new branch into an existing project (branch would be "drupal6-devel" and project "spreadubuntu")14:09
huayrashould I just push it as indicated here: https://help.launchpad.net/Code/UploadingABranch#Registering%20your%20branch%20in%20Launchpad14:10
huayra?14:10
cody-somervillehuayra, That should work, yup.14:11
huayrathx :)O14:11
cody-somervillehuayra, If you paste in what command you're going to type before you do I can explain to you where exactly the branch will show up if you're uncertain.14:11
huayraok, I am now putting everything I am going to upload in the directory I want to commit14:13
huayraI'll paste it here before pressing enter :)14:13
=== oktay-kellkafa_ is now known as oktay-glatze
huayrahi cody-somerville myline would be something like: "bzr push lp:~spreadubuntu/spreadubuntu/devel-drupal6 --use-existing-dir14:53
huayra"14:53
huayraam I right?14:53
cody-somervillehuayra, Are you a member of the spreadubuntu team?14:54
huayrayes14:55
cody-somervillehuayra, Looks good14:55
cody-somervillehuayra, You probably don't really need --use-existing-dir unless you registered the branch via the UI first14:55
huayrawhich I did14:55
* cody-somerville nods.14:56
cody-somervilleLooks like you're good to go!14:56
huayrabut how do I mark the files to be pushed?14:56
cody-somerville:)14:56
huayraI have not done anything else than installing bzr where I am developing, login in and now I want to push14:56
huayraI have use SVN, but BZR is practically a total stranger to me14:56
cody-somervillehuayra, Luckily, if you've used SVN then a lot of the commands you learnt for SVN actually work in bzr in the way you might suspect.14:57
cody-somervillehuayra, To get started, you need to type 'bzr init' in the root/top level directory of your project.14:57
huayraok, here we go :)14:58
cody-somervillehuayra, Next you'll do 'bzr add' which will recursively add all your project's files to your new branch.14:59
huayraeven directories?14:59
cody-somervillehuayra, Yes.14:59
huayraadd, just like in svn14:59
huayra:)14:59
huayrait tells me that it ignored 3 files... BUt I can't see which files15:00
Nafallobzr ignored15:01
cody-somerville:)15:01
huayrahehe15:02
cody-somervillehuayra, You can also type 'bzr status' to review all the files it *did* add. If after reviewing 'bzr status' and 'bzr ignored' you're happy, then its time to do your first commit.15:02
huayraI feel like a n00b (still this far easier than git)15:02
cody-somervillehuayra, To do your first commit, type something similar to the following: bzr commit -m "Initial commit"15:03
cody-somervillehuayra, The -m "Initial commit" after bzr commit is just a shortcut to specifying the commit message. If you had just typed 'bzr commit' then bzr would have opened an editor for you to write your commit message.15:04
huayrajust like svn :)15:04
huayraah, ok15:05
huayrabut I do that before pushing, right?15:05
huayradoes commit make the push as well?15:05
Nafallono15:05
Nafallowell15:06
Nafallono unless you have a lightweight branch15:06
huayraok so I write the commit -m message and then do the push as described above, right?15:06
cody-somervillehuayra, Thats correct. :)15:07
Ampelbeinhi. i get an oops (OOPS-1254EB286) trying to add a bugwatch to bug 357761.15:08
ubottuBug 357761 on http://launchpad.net/bugs/357761 is private15:08
huayracody-somerville and Nafallo thank you very much for your help :)15:09
cody-somervillehuayra, No problem! :)15:09
huayrayou guys rock!15:09
Nafallo:-)15:10
cody-somervilleAmpelbein, You've found a bug.15:12
Ampelbeincody-somerville: ok, so i report this on https://bugs.launchpad.net/launchpad ? Or directly to project malone?15:13
cody-somervilleAmpelbein, Directly to project malone15:13
Ampelbeincody-somerville: ok, thanks.15:13
cody-somervilleAmpelbein, If ever in doubt though, file against launchpad. In this case, we're confident enough that its a malone bug.15:15
Ampelbeinthanks again.15:17
Ampelbeincody-somerville: bug 384513 filed. is there anymore information i should include?15:21
ubottuLaunchpad bug 384513 in malone "OOPS-1254EB286 when trying to add bugwatch" [Undecided,New] https://launchpad.net/bugs/38451315:21
cody-somervilleAmpelbein, No, thats great.15:22
cody-somervilleAmpelbein, It appears that the remote bug tracker information for the viking project isn't correct/valid.15:32
=== abentley1 is now known as abentley
hscdudehi18:14
hscdudebugs.launchpad.net uses an invalid security certificate.18:14
hscdudeThe certificate is not trusted because the issuer certificate has expired.18:14
hscdudeThe certificate will not be valid until 05/08/2009 05:05 PM.18:14
hscdudewhat is that18:14
hscdudeit seems to be true only for some people18:15
hscdudeis there some random auto ballancing?18:15
cody-somervillehscdude, I don't get that error.18:15
hscdude\well I get it all the time18:16
hscdudeI was in middle of debugging  wakup using CMOS clock magic.  didnt corrected my clock yet lol. n/m18:21
Ampelbeincody-somerville: re. thanks for looking into bug 384513. After your investigation it now seems to be the same as bug 370117.18:27
ubottuLaunchpad bug 384513 in malone "OOPS-1254EB286 when trying to add bugwatch" [Undecided,Confirmed] https://launchpad.net/bugs/38451318:27
ubottuLaunchpad bug 370117 in malone "Attempting to add "Affects" project to bug report results in OOPS-1216D2336" [Medium,Triaged] https://launchpad.net/bugs/37011718:27
EricHermanCan someone help me break a lock on launchpad?18:34
EricHermanI see this: http://pastebin.com/d12586552 I see a 'bzr suggests wrong URL for break-lock with a LP hosted branch' bug on this ( https://bugs.launchpad.net/bzr/+bug/250451 ) but I don't see how to work around it.18:37
ubottuLaunchpad bug 250451 in bzr "bzr suggests wrong URL for break-lock with a LP hosted branch" [High,Confirmed]18:37
EricHermanoh, geeze, I read *right* past it.18:38
EricHermanilliteracy strikes again18:39
EricHermanthank you.18:39
hggdhheh19:47
=== mwhudson_ is now known as mwhudson
=== Andre_Gondim is now known as Andre_Gondim-afk
zsquareplusci condsider to register a small project on launchpad, but i wonder what the idea is for project docs. launchpad doesn't seem to offer a place where i can publish a readme (with linked images)?22:28
thumperzsquareplusc: not right now22:32
BodsdaHi, how do I add a jey for someones ppa on ubuntu? I looked at the link provided on launchpad and it says (in a terminal) to add the fingerprint that looks like this "B0BE17C2A0C914F086B7B8327D2C7A23BF810CD5" and then gives an example of an awn testing ppa, but I cant find this fingerprint thing anywhere - I can only fin the whole public key block22:44
mwhudsonBodsda: it's on the page for the ppa you're adding, i think?22:46
mwhudsonor rather, it's on the page you get after you click the shorter hash22:48
mwhudsonBodsda: which ppa are you trying to add?22:48
Bodsdamwhudson: this is the ppa im trying to add --  https://launchpad.net/~andrewfenn/+archive/ppa -- the only thin i can find is this:  1024R/6FED7057   but its a link to his whole public key22:48
mwhudsonah right22:48
mwhudsonwell when it says22:48
mwhudsonSearch results for '0xe1ba1ac8f1cea356be76dab5b7a1545c6fed7057'22:48
mwhudsonthe key is e1ba1ac8f1cea356be76dab5b7a1545c6fed705722:48
Bodsdamwhudson: oh, after the 0x -- they didnt mention that22:49
Bodsdamwhudson: brilliant, cheers22:49
mwhudsonit's a bit unclear, yes22:49
mwhudsonBodsda: np22:49
days_of_ruin_http://www.sourcecode.de/content/some-internals#comment-371022:50
days_of_ruin_has anyone gotten this to work on jaunty ;_;22:51

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