[08:01] morning! === zyga is now known as zyga-afk === zyga-afk is now known as zyga [10:11] hi. remove-branch seems to work for local locations only. how do I remove a remote branch? [10:19] don't think bzr has that built in [10:23] m1sc: that works over a smart server in recent versions, but deletes the branch only, any repository is left existing [10:40] mgz: smart http? I use bzr 2.5.1 on client side -- when trying "bzr remove-branch https+urllib://example.com/my/branch", it's doing http authentication but then tries to delete the branch locally.? (bzr: ERROR: Not a branch: "/home/user/foo/https+urllib://example.com/my/branch".) [10:42] that's not smart. [10:43] m1sc: this is what works [10:43] it tries the remove branch first then falls back to locally [10:44] (progress leakage there incidentially) [10:45] falling back to treating it like a filename when it has a scheme seems like a bad idea [10:46] m1sc: what you can do is just remove the directory via any other means [10:48] mgz: yeah [10:49] bob2, mgz, jelmer: thanks, will stick with ssh === zyga is now known as zyga-food === zyga-food is now known as zyga [15:11] hello. I know I can ask bazaar for all commits involving file FOOBAR.txt. Can I show all commit made by a specific developer, too ? [15:19] yup, see `bzr help log` [15:20] note the author(s)/committer distinction [15:22] but generally `bzr log -n0 -m "Your Name"` will be fine [15:27] mgz thanks [15:57] vila, hi, you around? [15:57] james_w: yup [15:58] great [15:58] hi :-) [15:58] vila, what would be the best way of injecting the db configuration values in to the config stack during the tests? [15:58] currently I believe it uses the standard dbs, which isn't great for test isolation [15:58] I'm adding support for postgres to the test suite, so now we need to run against both [15:58] err, no, I think it uses ones under self.test_dir [15:59] I don't want to be adding pkgimport.conf on the fly [15:59] aha! [15:59] * james_w tries to find that [15:59] TestCaseWithConfig does that for you, at least it sets pi.base_dir [16:00] now, I don't know postgres, but given the config you added for it it seems to be using a host:port to reach the db so I you can set that in the config and initialize the db itself [16:00] vila, what's "_set_store_content" [16:01] I mean, what's "store" in that context? [16:01] a trick to add additional content in the config, there are examples... [16:01] let me check [16:01] store as in config store, a physical container, here, a file :) [16:01] ah, I see [16:01] but it's a "set all" interface, rather than an "append" interface? [16:02] look into test_mass_import for how to add stuff [16:02] just calling super() then [16:03] so each subclass can add what it needs [16:03] oh, hmm [16:03] ok [16:03] thanks [16:04] * james_w ponders moving this to fixtures === iBasic is now known as BasicOSX [17:49] hey guys [17:52] hello, I have a bzr branch which I initialized with the source files from Firefox 12. Now, I made some changes to these files, and now there is a Firefox 13 with many many differences with both Firefox 12 or my own fork. My question is, what is the best way to merge all the changes from the files in Firefox 13, while keeping the changes in my own fork. I can see many ways to do that more or less efficiently with diff and bzr diff. But I'd like to know if the [18:07] so what I did is use bzr diff -r1 > diff.txt [18:07] which outputs all the difference with the current version with the first version in which the initial files were present [18:08] and now I'll try to apply it as a patch to the new set of files [18:08] does it make sense or is there a better way to do this with bzr and a special merge [23:13] hello, I asked a question earlier, got no answer, and thought maybe i'd ask it again [23:14] if you have upstream files, you create a branch with them [23:14] make changes to them, [23:14] and then the upstream releases a new version [23:14] what's the best way to merge those new changes from upstream while keeping your own changes [23:14] upstream does not use bzr by the way, i'm just using the tar [23:16] using bzr diff and then patch does the trick, but is there a more elegant way? :-) [23:16] or some documentation worth reading? :-) [23:21] lduros: bzr import can import the tar [23:21] lduros: have one branch representing upstream and one your work, import upstream onto the upstream branch, then merge that to your branch. [23:28] ah [23:29] ok, I see, I'll try this, thanks [23:29] looking into bzr import at the moment [23:31] lifeless: what you are describing is basically what's described in this page, minus the bzr import for the tar >> http://wiki.bazaar.canonical.com/TrackingUpstream -- correct? [23:32] yes [23:32] ok cool [23:32] :-)