[00:11] good morning spiv, igc, lifeless [00:11] jam, are you still around? [00:14] * Peng_ goes insane. [00:17] Peng_: goes? [00:22] mwhudson: Good point. But now I'm even less sane! [00:23] isn't sanity just a one-trick pony anyway [00:23] Loggerhead is refusing to serve one branch over http. :\ [00:24] Which is kind of annoying when I wanted to use that branch to *test* serving over HTTP. :P [00:24] did bzr push --fixes disappear? [00:24] fullermd: what do you mean by "inability to upgrade from dev formats"? [00:25] Good morning. [00:25] Laney: --fixes is an option on commit, not push. [00:25] Peng_: oh right, tahnks [00:25] thanks [00:32] poolie: % bzr init --development6-rich-root x ; bzr upgrade --development7-rich-root x [00:32] For any permutation of dev6, dev7, 2a in the init/upgrade. [00:32] bzr: ERROR: Cannot convert to format . Does not support nested trees [00:34] I don't know of a filed bug on it. It's come up here and on the ML a few times; I was under the impression that somebody was working on it. [00:34] jelmer, maybe. [00:35] could you search or file one please? [00:36] poolie, fullermd: i think that bug is fixed in bzr.dev, from things i overheard [00:36] Well, the error I just posted is from trying it on my up-to-date bzr.dev... [00:37] (well, OK, I'm missing jam's win32 packaging fix, but I'm guessing that doesn't solve it ;) [00:37] the upgrade bug? [00:37] mwhudson: ping [00:37] Peng_: hi [00:37] mwhudson: Is it just me, or is Loggerhead serving .bzr over HTTP broken? [00:37] Peng_: no idea [00:38] * mwhudson tries [00:38] bzr+http works (I just landed that), but regular old nosmart+http does not. [00:38] Well, nothing in my =bazaar-bugs is jumping out at me, so I guess there isn't one filed... [00:39] Peng_: jelmer said something about the smart server support only working for standalone repositories, i think? [00:39] standalone branches, sigh [00:39] mwhudson: Yeah, thanks to bug #348308, but my issue is HTTP. [00:39] Launchpad bug 348308 in bzr "Smart server jail breaks bzr+http with shared repos" [High,Triaged] https://launchpad.net/bugs/348308 [00:40] It should be possible for Loggerhead to monkeypatch around that bug, but it's probably a bad idea. [00:40] Peng_: yes, seems .bzr requests are 404ing [00:40] mwhudson: Thanks for confirming it. [00:41] you know what would make loggerhead better? [00:41] tests [00:42] I manually test several different things, but I never run the test suite. :P [00:43] Peng_: [00:43] Invalid url supplied to transport: "readonly+file:///home/mwh/canonical/repos/loggerhead/": local urls must start with file:/// [00:43] lalala [00:43] I was just going to say: NotBranchError: Not a branch: "readonly+file:///trunk/.bzr/branch-format/". === afk is now known as mthaddon [00:44] It's also kinda annoying how upgrade moves everything into backup locations BEFORE blowing up in that case... [00:45] bug 388727 [00:45] Launchpad bug 388727 in bzr "upgrade fails between dev formats" [High,Confirmed] https://launchpad.net/bugs/388727 [00:46] mwhudson: Looks like both get_local_path and check_is_a_branch fail, in different ways. I'll file a bug. === afk is now known as mthaddon [00:53] morning === igc1 is now known as igc [00:54] hello igc [00:54] morning poolie [00:55] * Peng_ goes /away to eat. [01:08] Hi poolie. [01:08] poolie: create_by_apply_delta is only available in CHKInventory [01:09] garyvdm: You can also use Repository.add_inventory_by_delta() [01:10] garyvdm: which works on all repositories [01:10] * garyvdm look [01:10] Hi jelmer [01:10] hi Gary [01:10] I ran into the same problem trying to find what function to use for bzr-svn/bzr-git [01:11] jelmer: I want to create a in memory inventory. [01:12] jelmer: won't Repository.add_inventory_by_delta add an inventory to the repository? [01:12] garyvdm: yeah, it'll write out to disk [01:12] i.e. write it to disk? [01:12] garyvdm: You can steal some of its logic though [01:12] garyvdm: which it uses to apply deltas to non-CHKInventory's [01:13] * garyvdm looks :-) [01:16] There's Inventory.apply_delta - I need to test if that just changes the inventory in memory, or to disk. [01:16] garyvdm: it changes in memory [01:17] jelmer: even WorkingTree.inventory? [01:17] garyvdm: yeah, but you'd probably don't want to change that directly since WorkingTree would just return its own copy [01:18] garyvdm: WorkingTree.inventory.apply_delta() will not directly write out to disk, but will probably cause strnage behaviour [01:18] jelmer: is there a way to create my own copy of the inventory? [01:18] garyvdm: you can make an in-memory copy of WorkingTree.inventory though, and apply the delta to that [01:18] garyvdm: in general no. [01:18] garyvdm: you shouldn't be working with Inventory [01:19] s/working with/mutating or modifying/ [01:19] lifeless: Hi [01:19] the only objects that should modify inventories are implementations of Repository or Tree [01:19] ...I just pulled down 1 revision of bzr.dev. It took 100 seconds, nearly all of which was bzr-search indexing. o_O [01:19] lifeless: even a in-memory copy? [01:19] Sorry, _two_ revisions of bzr.dev. [01:20] garyvdm: an in memory copy of a working tree inventory is shared with the tree and will be saved when write lock is released [01:20] garyvdm: it is the trees /internal/ state [01:20] garyvdm: so no, you should *never* modify an inventory unless your code is part of the implementationof the appropriate Tree or Repository subclasss. [01:21] ...Wait a minute, why did Loggerhead work? Shouldn't the ProgressBarStack thing have broken it? [01:21] lifeless: Is there not a way to create a copy that does not affect the internal state? [01:22] garyvdm: there is but its slow and expensive [01:23] garyvdm: and as previously noted Inventory can't represent the concepts you want like unversioned or ignored files. [01:23] lifeless: ok. [01:23] lifeless: btw - I was wrong about iter_changes returning ignored files. It does. [01:24] :) [01:24] That makes things easier for me :-) [01:27] jml: perhaps this channel works for you?... [01:27] lifeless: would it be safe to set a new instance var on a inventory item? e.g. tree.inventory[fileid].status = "modified" [01:29] they use slots; it won't work. [01:29] ok [01:33] jelmer: what does alioth need [01:33] jelmer: in more precise terms than 'another config file' [01:38] jml, as you probably saw, there are some new bugs targeted to 1.16 [01:47] Pulling another revision of bzr.dev took 45 seconds. Again, almost all bzr-search. :\ [01:48] Are bzr.dev's search indices supposed to be 61 MB? [01:48] indexing is hard [01:49] 18 MB is just from the last 2 days. [01:49] lifeless: ping ^ [01:50] Peng_: yes [01:51] Peng_: can it be shrunk? yes. There are several things that can be done. The index contents can be revisited now we have faster facilities for 'what path is this fileid.revisionid at'. [01:51] We got to bit indices rather than int indices [01:51] we can filter extremely common terms[though this is not necessarily a win] [01:52] I don't really mind the index size. What I mind is that 1/3 of it is from the last 2 days, and indexing during pull is taking 40-45 seconds per revision of bzr.dev. [01:52] Maybe it autopacked? [01:52] Peng_: so it autopacks [01:53] I really doubt that 1/3 is new from 2 days of changes [01:53] further, indexing requires extracting much data and we're not in bbc yet. [01:53] Yeah, you're right. I just checked the obsolete directory. ~4.3 MB from the last week. [01:54] No crisis, then, I guess. :) [01:56] * Peng_ /away! [02:04] do we have a way yet to say "Don't stack" even if the remote server suggests a branch to stack on? [02:04] no [02:04] arse [02:05] not exactly a common use casse [02:05] if the server is misconfigured, fix it :) [02:05] the server isn't misconfigured [02:05] sometimes we want to say this [02:05] sure; like I said its not _common_. [02:10] lifeless: somethin that can run as a system service basically [02:10] jelmer: BZR_HOME=/etc/bazaar [02:11] lifeless: something sustainable, not a quick hack [02:11] jelmer: that is sustainable [02:13] lifeless: at the very least it would be nice if that was more easily accessible, e.g. serve-branches --config=foo would do BZR_HOME=foo under the covers [02:13] jelmer: that would be problematic for me [02:13] because it makes BZR_HOME=foo server-branches --config=foo less clear [02:14] lifeless: also, it's a bit redundant to have every variable in a configuration file prefixed with "http_" [02:16] jelmer: that seems unnecessary and likely inaccurate - public_url's etc should be from the stock bzr information [02:17] lifeless: loggerhead prefixes all its variables with http_ in ~/.bazaar/bazaar.conf at the moment [02:19] lifeless: this specifically is about those variables, not about whatever would usually live in .bzr/branch/branch.conf [02:20] jelmer: well, up to beuno etc. I don't think a specific config file is a good idea though. [02:20] Because using the stock stuff lets you use locations.conf to configure different loggerhead servers [02:20] and if a global config is needed, well there is a bug open on bzr to support /etc configuration already. [02:20] lifeless: I don't see how locations.conf is related here, this isn't about branch-specific settings [02:21] I definitely think BZR_HOME will work reliably for alioth [02:23] poolie, yeah, I haven't had a chance to look at them yet today, but I will [02:24] jml: testresources: review requested. [02:24] poolie, I haven't had a chance to do anything other than _react_ [02:24] lifeless, yeah, I saw the email and flagged it for answer. [02:24] with luck & a spare energon cube I'll get it done tonight. [02:26] all jml, you don't need to look at them now, just making you aware [02:27] poolie, cool :) [02:27] lifeless: alioth wants a backport package with init script etc they can use, but I'd like to see loggerhead settle on something first so I don't have to worry about providing an upgrade path in two months [02:27] I see a lot of conversations in Git projects (cairo being the present instance) saying things like "rebase your work to current master" as a long lived branch gets closer to being considered for acceptance into the project. [02:28] Isn't that just "hey, merge current 'mainline' into your branch, please"? Followed by healthy use of things like `bzr diff -r ancestor:....../mainline` ? [02:29] jelmer: I don't see why BZR_HOME would stop working. [02:29] AfC: in bzr we would just merge yes. because that preserves prior testing etc. [02:30] lifeless: (not to mention not creating new revisions that say exactly the same thing). Ok, that's what I thought. [02:30] AfC: rebasing deletes test results :). If it wasn't long lived, and would just a short lived private branch rebase would matter a lot less. [02:31] lifeless: is it because of their "I want to see individual patches building towards a result which are the only thing I'm [to be] looking at" culture? [02:31] yes [02:31] hm [02:31] which is the history presentation aspect of the RFC I put together [02:32] and it *is* easier to review a series of small patches than a single monolith [02:32] So, while I'm over that, I do wonder what on earth we can do to make Bazaar acceptable to that desired workflow [without needing rebase] [02:32] lifeless: granted [02:32] looms [02:32] hm. Yeah, I guess [02:32] thats what they are designed for [02:32] ah [02:32] implementation bugs and polish aside [02:33] I do think we need rebase as a core polished utility [02:33] but we need to have versioned versions of the same tools for when people are collaborating [02:34] lifeless: so taking a slightly different gloss on this, if individual patch or revision {1,more} cherry picking worked in some way that explicitly and strongly said "this «new» revision came from and essentially is _that_ revision" [02:34] lifeless: then rebasing (hypothetically using that) would be a lot less evil to us. [02:34] s/us/our viewpoint/ [02:34] [right?] [02:36] I realize that "what tree state did you test" is very important... but if we can have a dotted line between "what I'm merging" and "what actually was tested by its author" maybe things would be ok [02:36] dunno [02:36] AfC: I think such cherrypicking would be necessary but not sufficient [02:36] merge is the key [02:36] [I do know that I don't think I'm going to be able to work on any Git based projects ... the DVCS culture I've been taught here is too different from what goes on there] [02:37] lifeless: (well, cherrypick as in `bzr merge ../other_branch/.../filename` [02:37] cherrypick is another brutal overload around here [02:37] AfC: merging *after* the cherrypick for people that had merged the original revision [02:37] up there with history editing ^W commit message fixing [02:37] lifeless: If loggerhead started reading settings from some other file, I wouldn't necessarily expect it to also check http_* in BZR_HOME/bazaar.conf [02:37] mwhudson: ^ can you reassure jelmer [02:37] lifeless: yeah, after [02:38] lifeless: that really is the key, isn't it [02:38] its easy to cherrypick [02:38] its relatively easy to record that you did [02:38] lifeless: this hasn't been my work, i have no real opinions [02:38] lifeless: (I would be impressed if I didn't have to because the tool & it's UIs did said recording for me) [02:38] lifeless: Or to put it in a different way, I wouldn't expect apache to read settings from /root/.apache.conf either by default [02:38] its still freaking-hard to merge the cherrypicked thing accurately without security issues or spurious conflicts [02:39] though i prefer reading http_* options from a bazaar.conf to inventing our own formats and locations [02:39] lifeless: and not have an easily disocverable way to override that [02:39] mwhudson: has there been a release of loggerhead that does [02:39] lifeless: so I gather. [02:39] lifeless: no [02:39] Right. Lunch time rush at this cafe. Time to move. [02:39] * mwhudson is not paying attention here any more, sorry [02:40] send me email if you want a conversation on this [02:50] When pulling, what happens after post_change_branch_tip hooks fire? In other words, if the hook throws an exception, what didn't happen? E.g., it looks like the branch updated correctly, but not the working tree. [02:50] * Peng_ randomly goes /away again. [02:51] right [02:51] update to recover [03:10] if I clone a branch, and that branch is updated after I did a few commits on the clone, what should I do to merge the clone with that branch? [03:12] RenatoSilva: Clone? did you do a checkout, or branch? [03:16] RenatoSilva: if you create a checkout, you can do bzr update. If you did a branch, you can do bzr merge. [03:16] by clone I mean bzr branch [03:19] RenatoSilva: you can bzr pull, if no changes were made to the origin branch in the interim, or you can (bzr merge; bzr commit) [03:19] imagine the original branch is at rev 40, then I copy it and commit 5 revisions (my local branch is now rev 45), but in the meatimeremote branch was updated and is now in rev 43. A merge between the branches woulnd't get confused? [03:19] not at all [03:20] its what bzr merge is meant to be used for [03:20] yeah I can do a bzr pull, but what happens if I don't? [03:20] bzr merge will pull the changes before merging? [03:21] You can't do bzr pull (try it), it will tell you it's can't pull because the branches have diverged. [03:22] So you need to bzr merge, because you changes to merge. It won't get confused, because bzr is not CVS :) [03:22] lol [03:22] s/you changes/you have changes/ [03:27] spiv: ok [03:56] * igc lunch and medical appointment - bbl [04:00] can multiple tags point to the same version? [04:05] yes. technically to a revisionid === timchen1` is now known as nasloc__ [04:11] lifeless: how come item.revision for a item from a WorkingTree.inventory is allways none? [04:12] Could it not tell you the revision from the basis tree? [04:19] jml: I'm working on https://bugs.edge.launchpad.net/bzr/+bug/388675, do you want this fix in 1.16? [04:19] Launchpad bug 388675 in bzr "automatic stacking format upgrade doesn't work over the smart server" [High,In progress] [04:19] jml: I have the issue diagnosed and a quick fix, just making proper patch with tests etc now. [04:24] I typed "bzr branch lp:oah/gst-plugins-base", it starts to download, but it only download a directory containing ".bzr", nothing else. Where is the code? [04:28] garyvdm: the working inventory doesn't have that data [04:28] :-( [04:28] I'll just have to hide the revision columns when showing the wt. [04:28] garyvdm: the basis inventory does (but we're looking at getting rid of most of the basis inventory stored in the tree because we don't need to look at it very often, its largely dead weight) [04:29] [###########/ ] http > 2638KB 3KB/s | Copying content texts:Copied [04:29] It looks like it have download a lot things [04:29] ablmf1: it's building a local bzzr branch. Once it has the history it will build the working tree [04:31] lifeless: Should I wait till all the progress bar reach the end [04:31] or should I give up now? [04:31] ablmf1: wait [04:32] ablmf1: its all working normally [04:32] ablmf1: Why do you want to give up? [04:33] Peng_ : because it has been downloading for 20 m but only give me a .bzr ... Quite slow to access lp from here [04:35] ablmf1: it *only* does a .bzr until right at the very end [04:35] ablmf1: thats normal. [04:35] ablmf1: the .blz contains the whole history [04:35] Hmm, that branch is like 25-30 MB. [04:35] s/blz/.bzr [04:36] Is there any quicker way? [04:36] ablmf1: if you're using http, you probably have a broken http proxy, based on the discussion from yesterday. [04:37] lifeless: No. I am the one discussing proxy with you yesterday. [04:37] Toady I stayed at home for downloading the source code I need [04:37] ablmf1: do you mean yes? [04:37] oh, ok. [04:37] so anyhow [04:38] over http bzr has to do many readv operations [04:38] it shouldn't be *that* slow [04:39] svn has a "svn export" command which do not download the history [04:39] does bzr have one? [04:39] It would be nice to download branches as zip files [04:39] RenatoSilva: loggerhead can do that; its just not enabled on launchpads logerhead [04:39] ablmf1: bzr has one, but it works by downloading the history [04:39] lifeless: good to know [04:40] ablmf1: (svn doesn't download history *ever* anyway, svn export isn't as different as you might think) [04:40] Well, I just merged a directive to a branch, and it opened a file with the commit messages of the patch now that I'm trying to commit the directive changes [04:41] -- This line and the following will be ignored --, what should I do? The command is waiting for the text editor. [04:41] You should type in a commit message above the line [04:41] whatever you want to say about the merge. [04:41] was this caused by an empty bzr commit as I did? [04:42] no [04:42] its normal [04:42] if I did, it would be 2 commit messages then? [04:42] if I put a message I mean [04:43] [04:43] i messed up, but i dont know how much damage i caused [04:43] [###########\ ] http > 6861KB 6KB/s | Copying content texts:Copied [04:43] i have a server with a shared repo with a bunch of related branches in it [04:43] It looks like it has download 6MB [04:44] But I only find 200kb in the working directory [04:44] on a development machine i have another shared repo with copies of those "central" branches, plus a bunch of local branches branched from them [04:44] my mistake was: [04:45] i accidentally pushed one of the development branches from the devel machine to the *repo* dir on the central server without specifying a target branch dir [04:45] RenatoSilva: huh? You'll only get one commit message. [04:45] RenatoSilva: I don't really understand what you're asking. [04:46] ablmf1: you could try stracing the process to see what is happening [04:46] ablmf1: as for how much is in the working directory, there are buffers on whats written to disk and so on; I assure you if you let it finish it will have achieved what you want. [04:47] lifeless: bzr commit -m "message 1", then shows text file, then I type in the file "message 2" [04:47] RenatoSilva: You may find it easier to use bzr qcommit - This shows a gui for commit [04:47] garage_seb: I don't think that should break anything. Has it? [04:48] lifeless: the merge will contain all directive commits? Is it smart enough? [04:48] RenatoSilva: it should not have popped up an editor if you used -m [04:48] lifeless: oh, so...was this caused by an empty bzr commit as I did? [04:48] lifeless: the answer is yes [04:49] you had said no and I get confused :) [04:49] empty can mean 'no message' or 'no changes', I thought you meant the latter. [04:49] lifeless: ok sorry, my mistake then :) [04:49] it all makes sense now :) [04:49] cool [04:50] btw, it will never allow empty message? [04:50] I don't think so [04:50] bzr: ERROR: empty commit message specified [04:50] after I just closed the file [04:51] thats right [04:51] if you're doing a merge [04:51] write a message describing what you are merging. You can skip the details as they will still be present in the commits you are merging. [04:51] ok, then it will deny only for merges [04:51] ablmf1: also, there's some overhead in figuring out what content to transfer before it actually transfers the content. [04:52] ablmf1: especially over a dumb transport like http [04:52] ablmf1: so you may well find that the final size on disk is noticeably smaller than the total network traffic. [04:53] spiv: with readv batching it should be 1-2% no more [04:53] for an initial branch [04:54] lifeless, poolie, jelmer: Thanks for the advice. I have achieved what I wanted to (a browse tree widget, that shows unversioned files and change status) [04:54] I think as they're little changes, it makes more sense to aplly them manually, because I just have to reason to give a bout the merge. The reason is just because they were 2 commits at work, and I couldn't push them there :) [04:54] RenatoSilva: if you haven't made local changes you can just pull from the directive [04:54] s/to reason/no reason [04:54] rather than merging [04:54] humm, nice! [04:55] lifeless, poolie, jelmer: If you are intrested in what I have done, the code it here: http://bazaar.launchpad.net/~garyvdm/qbzr/trees/annotate/head:/lib/treewidget.py [04:55] how do I undo the merge? [04:55] bzr revert? [04:55] RenatoSilva: yes [04:55] 'bzr revert' [04:55] ok [04:59] bzr: ERROR: These branches have diverged. Use the missing command to see how. Use the merge command to reconcile them. [04:59] so you do need to merge [04:59] bzr missing > Using saved parent location: bzr+ssh://bazaar.launchpad.net/~renatosilva/bzr-email/mail-customization/ Branches are up to date.zr+ssh > 0KB 0KB/s | [04:59] I would just merge them with -m "Small fixes from work" or some such [05:00] ok but I'm trying to learn :) [05:00] Hummm let me see... [05:00] The work branch is a branch from bzr-mail! [05:01] My branch here is the mail-customization [05:04] You can skip the details as they will still be present in the commits you are merging. --> actually they're not there :( [05:04] After my last commit comment from lp, the next one is from the merge. [05:05] RenatoSilva: run bzr log -n0 [05:06] it is in rev 41 in lp, there were 2 revs in the merge, but when I commited I'd expect the local branch go to rev 43 [05:06] RenatoSilva: try running qlog [05:06] err - bzr qlog [05:07] RenatoSilva: have you tried running log -n0 [05:07] You should be able to expand rev 41 - under it you will see the revisions that you merged. [05:08] lifeless, any words of wisdom on the situation i reported above, in a previous incarnation when i was known as garage_seb? [05:08] bzr log -r40.. [05:08] RenatoSilva: with "-n0" [05:08] so "bzr log -n0 -r40.. [05:08] " [05:09] seb_: did you see wgrant's question? [05:09] oops no that must have been while my dsl modem blinked out :-( [05:10] seb_: nothing should be broken [05:10] seb_: < wgrant> garage_seb: I don't think that should break anything. Has it? [05:10] oh good :-) [05:10] things seem to be working just fine [05:10] seb_: if you want to get rid of the branch you pushed, you can remove the .bzr/branch directory it will have created [05:10] heh, i just did that and things *still* seem fine [05:10] http://pastie.org/515988, http://pastie.org/515990 [05:10] [but be sure to leave .bzr/repository alone, as that is your shared repo :P] [05:11] ok thanks guys :-) [05:11] yes i didnt remove that one [05:11] RenatoSilva: right, in 515990 you can see the messages [05:12] lifeless: so, the merge revisions become sub-revisions? [05:12] jml, mwhudson (and anyone else interested): https://code.edge.launchpad.net/~spiv/bzr/default-stacking-again/+merge/7601 fixes that stacking bug. [05:13] spiv: is it client side or server side? [05:13] RenatoSilva: yes, thats a reasonable way to think about it [05:13] mwhudson: client [05:13] cool [05:13] lifeless: ok thanks [05:13] this is one of the key, critical diferences vs CVS [05:14] spiv, thanks, I'll take a look at it. [05:14] mwhudson: client [05:15] Oh, I'm too slow today :) [05:15] pushed \o/ [05:15] RenatoSilva: have you tried bzr qlog? [05:15] garyvdm: yes [05:16] RenatoSilva: And? did it help? [05:16] spiv, thanks I'll take a look at it. [05:16] spiv, sorry for the lag -- I needed to have a lunch break afk :) [05:16] jml: I understand :) [05:16] garyvdm: now yes, I didn't note the "+" [05:16] jml: I'm actually planning on doing the same shortly :) [05:17] garyvdm: nice view, thanks! btw, Qt for windows? [05:17] RenatoSilva: qt is multi-platform [05:17] RenatoSilva: used by KDE [05:18] garyvdm: oh I didn't know that, the widgets look pretty native [05:19] garyvdm: it's embedded in bzr installer? [05:19] RenatoSilva: yes [05:19] garyvdm: ok, thank you! [05:26] /quit zzzzz === _thumper_ is now known as thumper [05:29] spiv: thanks for fixing that bug so quickly :) [05:30] mwhudson: once I untangled the particular confusions it wasn't too hard. [05:36] * spiv -> lunch [05:40] Does TortoiseBzr use Qt? [05:47] I'm afraidn to install it, because TortoiseCVS was not working well [06:47] lifeless, spiv, the bug editing collisions were i think bug 28459 [06:47] Launchpad bug 28459 in malone "Handle mid-air collisions in bug reports" [Low,Triaged] https://launchpad.net/bugs/28459 [07:04] poolie: our one wasn't, unless you'd had the bug open for 30 minutes or so... I guess that is possible ;) [07:06] poolie: still, its a nice low bug number ;) [07:07] hi all [07:22] i did have it open [07:22] because, probably someone started talking to me [07:23] also i was wondering what the magic number at the start was [07:23] hello vila [07:23] lifeless, re bug 308403, [07:23] Launchpad bug 308403 in bzr "bzr add should optionally fail if explicitly named files are ignored" [Medium,Confirmed] https://launchpad.net/bugs/308403 [07:23] do you in pracitice commonly add files matching ignore patterns? [07:23] hi poolie [07:24] poolie: Its not that I commonly do it; its a design principle I have. [07:24] poolie: which is that its better to do whats asked and make reverting mistakes easy. [07:24] poolie: and we already have that. [07:27] poolie: I don't object to bzr add having a --strict mode or something for people that prefer to have the command fail. [07:28] mm maybe there should be a global --strict [07:29] Stopping on many little things and forcing things to be re-run is just irritating in my experience. Clippy leads down that road ;) [07:29] some people like being irritated. [07:29] perverse creatures that they are [07:30] jml: Whats better for most of our users is the question. [07:31] lifeless, I thought we were talking about an option? [07:31] jml: Yes but: a) An option has its own overhead. b) options have defaults so they need to be chosen. [07:35] so specifically i want some satisfactory solution to bug 322767 [07:35] Bug 322767 on http://launchpad.net/bugs/322767 is private [07:35] which complains about people adding conflict files [07:36] .BASE/.OTHER/.THIS [07:36] blocking adds of ignored files is a somewhat indirect way to stop it [07:37] yes, and .moved [07:37] so [07:37] doesn't commit abort on conflicts? [07:37] yes, of course [07:37] and doesn't resolve delete those files? [07:37] it's kind of user error [07:37] people are apparently just banging harder on it to resolve the conflicts [07:37] well, specifically, I'm confused about *how they manage it* [07:37] because, i guess, they're confused [07:37] how they manage to do it? [07:37] right [07:38] running bzr resolve should delete those files; commit won't work until they have resolved, and then the files should be absent. [07:38] So my first instinct is 'what bug in the resolve->commit cycle is permitting this to happen' [07:38] so [07:38] they may do 'bzr add foo.c.OTHER'; bzr resolve ;bzr commit [07:39] but why wouldn't resolve delete them? [07:39] exactly. [07:40] lifeless, on https://bugs.edge.launchpad.net/bzr/+bug/388727 you suggest that it's not critical for 1.16 because it dev6->2a works, but later it's revealed that it doesn't work. Does that mean it probably should be critical about it? [07:40] Launchpad bug 388727 in bzr "upgrade fails between dev formats" [High,Confirmed] [07:40] s/about it/for 1.16/ [07:41] jml: depends on whether we plan to delete dev6 during 1.17's cycle. [07:41] if so we really have to fix the upgrade for 1.16 [07:41] if not, it would be good but isn't life-ending if we don't, IMO. === mthaddon is now known as afk [07:41] do we plan to delete dev6 during 1.17? [07:41] I think it is reasonably important to make dev6->2a upgrade ok. [07:41] poolie, thoughts? [07:42] jml, i'd be most concerned to know whether it's because of an actual inconsistency in the format [07:42] as the patch seemed to indicate [07:42] it is [07:42] a bug, from when we disabled 'subtrees' for the format [07:43] so is it correct that 2a doesn't have the subtree flag set? [07:43] yes [07:44] the check in CHKFormat* for subtree during is_compatible orwhatever the method is called, is the bug [07:44] what i'm really getting at is, does this reflect any problems in 2a or code that will still be active there [07:44] or only for the dev formats? [07:44] dev and 2a [07:45] EOD time; {actually late, startedearly} [07:45] ring me if you need me [07:45] lifeless, ciao [07:46] lifeless: so why [07:46] do you say this matters only if we're going to delete dev6 in the 1.17 cycle? [07:46] hi [07:47] i have a problem - whenever i do a "push" to a master repository(over sftp), having committed changes, the entire repository is transferred and it takes AGES. [07:47] why can't bzr just push the files that the server DOESNT have? [07:48] spiv, your patch @ https://code.edge.launchpad.net/~spiv/bzr/default-stacking-again/+merge/7601 -- the tests it adds are just the test_bzrdir ones? [07:49] bizarrefish, actually, bzr can be quite good at just pushing things the other side doesn't have [07:49] jml: how do i tell it to do that, then? [07:49] :-/ [07:49] bizarrefish, how exactly do you have things set up? [07:50] jml: i have a master repository, from which i have branches on different machines [07:50] when each machine's repository is modified, i need to be able to push the changes to the master [07:50] bizarrefish, it sounds like there might be other factors at play, but bzr+ssh is a lot faster than sftp -- particularly with bzr 1.15 or 1.16 [07:51] bizarrefish, "bzr push sftp://server/master-branch" ? [07:51] jml: yeah, that's what i'm doing [07:51] the branches were created with: bzr branch sftp://server/master-branch [07:51] and the pushes take place as you have stated [07:52] bizarrefish, is it possible for you to try bzr+ssh? [07:52] bizarrefish, you just need to have bzr installed on the server -- the more recent the better. [07:52] jml: i suppose so, unfortunately the master repo is held on a machine with 32MB of RAM and no swap :-/ [07:52] I see :) [07:52] and svn+ssh didn't take too kindly to being run in such a machine :) [07:52] bizarrefish, don't run bzr+ssh then [07:53] kkl [07:53] *k [07:53] bizarrefish, what makes you think it's sending the whole thing? [07:54] jml: oh...hang on, it seems to be because the branches have diverged [07:55] :-/ [07:55] bizarrefish, that makes sense [07:55] bizarrefish, you need to merge your changes in, rather than simply pushing [07:55] jml: yeah, that would normally have preceeded the push [07:56] ok cool. [07:56] the sync sequence: add -> commit -> merge -> commit -> push -> have a nice day [07:56] jml: yes [07:57] jml: it's a pretty simple patch, despite LP's attempts to make it look more complicated :P [07:57] spiv, right. [07:57] spiv, the reason for the confusion is that lp:bzr is a mirrored branch [07:57] and can be as much as six hours out of date. [07:58] Right. And I made my branch off current bzr.dev. [07:58] of course, bzr's pqm could easily trigger a mirror on commit. [07:58] clearly mirrored branches are only for hippies [07:58] or there could be a post-commit hook [07:58] what is the difference between doing a bzr update and a bzr merge [07:58] ? [07:59] we really should write a post commit hook that launchpadlibs up a requestMirror [07:59] bizarrefish: quite a lot [07:59] mwhudson, yes. [07:59] bizarrefish: though because you say 'up' i guess you're using checkouts? [07:59] mwhudson, my plan at EuroPython is to write awesome launchpadlib/bazaar things [08:00] mwhudson: no, a branch [08:00] or to make it falling-off-a-log easy to write such. [08:00] is there somewhere which actually details what these things do? [08:01] jml: cool [08:01] bizarrefish: then 'up' probably doesn't do anything [08:01] bizarrefish: the difference between pull and merge is that pull maintains a mirror and merge combines lines of development [08:01] bizarrefish, 'bzr help merge' etc [08:01] also... [08:01] (looking...) [08:02] (specifically, looking for the doc link on the wiki with my slow net connection) [08:02] http://doc.bazaar-vcs.org/bzr.dev/en/user-guide/index.html [08:02] http://doc.bazaar-vcs.org/bzr.dev/en/user-reference/bzr_man.html [08:03] hmm... [08:03] This will perform a merge into the working tree, and may generate [08:03] conflicts. [08:03] ^from bzr help update [08:03] so...update == merge?? [08:03] :'( [08:04] if you're not using checkouts, pretend update isn't there [08:04] bizarrefish, "merge" brings in a divergent line of history [08:04] (not a fantastic bit of ui) [08:04] right...ok [08:04] bizarrefish, which can cause conflicts [08:04] bizarrefish, and only changes the working tree -- you still need to commit. [08:04] so update brings in history too?? [08:04] riiight... [08:05] i see [08:05] bizarrefish, 'update' brings a working tree up to date with a branch. [08:06] bizarrefish, rather than combining two divergent lines of history (like merge)... [08:06] anyhow jml i think we should just merge jelmer's patch [08:06] it simply updates a working tree [08:06] poolie, yeah, that's what I was thinking. [08:06] and maybe test it fixes it [08:07] poolie, I'm also going to bring in spiv's patch. [08:08] jml: right, so bzr can work in a non-distributed fashion? [08:08] (using checkouts/updates instead of branches/merges) [08:08] because it's small and stacking bugs have given me a scar so deep it makes me look like a lost a samurai fight. [08:08] bizarrefish, exactly [08:08] i see [08:09] in that case, i think i should be using checkouts.. [08:09] bizarrefish, some people also use checkouts / updates in a distributed fashion, but that's very weird and complex and much easier for you to read about than for me to explain :) [08:09] is "push" still used to update the main branch? [08:10] bizarrefish, it sounds like lightweight checkouts would fit your situation better. [08:10] yeah...it does. [08:10] bizarrefish, if you used lightweight checkouts, i.e. 'bzr checkout --lightweight sftp://server/master-branch' ... [08:10] bizarrefish, then each commit inside that checkout would contact the server and change the master-branch there. [08:11] bizarrefish, just like a subversion commitc. [08:11] poolie, is jelmer's patch in bzr.dev yet? [08:11] igc1: what's your short term plans for bzr explorer? [08:12] hehe this sounds like just what i'm looking for [08:12] bizarrefish, cool. :) [08:12] i've been at this for a couple days [08:12] thanks [08:12] np. [08:13] poolie, jelmer's patch is missing tests [08:14] poolie, should we land it sans tests? [08:14] poolie, or are you willing to write one? [08:14] sans gas [08:14] i mean sin gas [08:15] rock & roll. [08:15] jml: is it really "easy" to make our pqm (via post-commit or whatever) trigger a mirror? If so, we should absolutely do that, please file a bug or something. I'd love that. [08:16] jml: (but first I'd rather you released 1.16 followed by having a pleasant evening's relaxtion basking in the glow of your shiny new release) [08:16] spiv, http://paste.ubuntu.com/198291/ [08:17] My 1st merge proposal: https://code.launchpad.net/~renatosilva/bzr-email/mail-customization/+merge/7606 [08:17] Thanks to you guys! [08:18] jml: somehow that feels like about 2-3 more lines of code than I would expect, but cool nonetheless. [08:18] RenatoSilva: glad it's working out for you :) [08:20] spiv: thanks to all of you so helpful :) [08:20] spiv, actually that also won't work with trunk launchpadlib. [08:20] spiv, I made a branch to reduce the number of lines you need to cache authentication data [08:21] spiv, so uhh if you want to make it work... [08:21] jml: I see :) [08:22] you need to look at https://help.launchpad.net/API and change the load() method to be more like what that page suggests. [08:22] also, that script has the same skeleton as the one I wrote for setting official package branches [08:22] it probably doesn't *need* its own class :) [08:23] the whole idea of dvcs + personal branches + merge proposals is a very interesting approach [08:23] RenatoSilva, it's an awesome approach. [08:23] yeah, I mean awesome :) [08:25] * RenatoSilva gtg [08:25] RenatoSilva, bye :) [08:26] bye, tahnks [08:38] spiv, is your branch merged into trunk? [08:38] spiv, would you mind submitting it to pqm for 1.16? [08:42] jml: It is. I'll submit it. [08:42] spiv, thanks. [08:43] Well, I'll submit the cherrypick I prepared earlier, which is basically the same thing (being a cherrypick). [08:44] :) [09:00] I'm doing a bzr export to another dir, and it's STILL downloading it's up to 200MB now, which is at least twice the size of my checkout [09:00] what is going on? [09:00] what is this extra datas? [09:02] It has to download enough history to reconstruct each file. [09:03] Peng_: but this is only 3 revisions deep [09:03] Maybe they're 3 really epic revisions? :D [09:03] and i have only added a few hundred bytes worth of files in those revisions [09:03] :'( [09:03] well, something is epic [09:04] the -v flag isn't telling me what it's currently exporting [09:04] It may just be that "bzr export" isn't particularly optimised for the network :( [09:04] or there is some killer bug [09:05] With only 3 revisions, it is likely it has to fetch the full history to construct the current state of every file, though. [09:05] i mean, the little "progress bar" isn't even past the first segment at the 200MB mark [09:05] this is only 100MB worth of files heere [09:05] *here [09:05] Yeah, I'd suspect a performance bug. Sorry :( [09:05] you will be! [09:05] Please file a bug at https://bugs.launchpad.net/bzr [09:05] * bizarrefish runs up behind spiv [09:05] * bizarrefish drags him by the eye into the sea [09:05] *filing* [09:06] (Did I just stumble into a role playing channel by mistake?) [09:06] spiv: maybe...whos to say? [09:08] Version Control the Roleplaying Game? [09:09] Peng_: The Repository hits you. The Repository hits you. (more) [09:10] power failures suck [09:16] spiv: I was trying to come up with a joke about a file system or power failure eating your history. [09:37] * igc1 dinner [09:39] Peng_: heh. It was only a short one. But I wish I knew why we're getting them. Or did spiv have a power outage too? [09:45] lifeless: No, it's just that RPGs had come up in the conversation, so I was trying to think of a hoke. [09:45] joke. Wow. [09:45] lifeless: You don't have a UPS? [09:47] Peng_: surge protector only at home [09:50] Oh. You should get one! [09:51] O' course, half of my power failures are *because* of the UPS freaking out, but... :P [09:51] so my theory is 'ext3 is solid' [09:51] and most power failures are longer than a cheap UPS will survive [09:52] A cheap UPS can give you time to whine about it and shut down. [09:52] (depending on how cheap) [09:52] right, but I don't care about that [09:52] the most annoying thing is reconnecting to freenode [09:53] Use a bouncer/irssi. :D [09:53] I do [09:53] to keep up my link during a power failure I need: [09:53] - UPS [09:53] - firewall [09:53] - adsl modem [09:53] - server [09:53] to be kept running during the failure [09:53] assuming the exchange isn't affected [09:54] I mean a remote server. [09:54] it is remote. its in the other room [09:54] :) [09:54] I mean data-canter-with-UPSes remote. :P [10:07] im in ur irc channel releasin ur software [10:10] :) [10:14] heoastuheoashiseo [10:14] wrong submit branch :( === mario_ is now known as pygi [10:39] poolie: hi [10:49] jelmer, g'day [10:50] jml: Hey [10:50] jml: Enjoying life as a RM? [10:53] jelmer, it's certainly keeping me on my toes :) [10:57] :-) [10:57] I saw you submitted my upgrade fix, is a test still necessary for that? [11:03] jelmer, it would be nice :) [11:04] jelmer, but it won't go into 1.16 [11:15] hi, i'm just playing around with bzr, and am currently at revision 6. i deleted "afile" at this revision, so the file existed at revision 5. [11:15] i used this command to retrieve the file from revision 5: http://pastebin.com/m2e6af935 [11:15] unfortunately, that produced an error :'( [11:15] it's a checkout, not a branch, btw [11:21] haha, got it: bzr revert -r5 afile [11:32] doing a --dry-run before this pqm-submit [11:56] lifeless, have you heard of abentley's idea of committing a preview tree? [11:59] jtv: I worked with him on it @ allhands [11:59] lifeless: then you're the person I need [11:59] he had working code [12:00] lifeless: I'm probably missing something silly. [12:00] jtv: If its quick I can give you a hand now, otherwise I suggest we look at it when you start your day tomorrow - its 9pm here [12:00] lifeless: I've got it running without bombing out (believe me, if you know as little as I do about bzrlib that's a lot) [12:01] lifeless: well the problem is I've got changes in my transform, and they seem to be going into my tree, but afterwards I open a new Branch on the same URL and don't see any files. [12:01] Branch's don't have files [12:02] well, I do branch.repository.revision_tree(NULL_REVISION).walkdirs [12:02] (and I cargo-culted that off someone who got it handed down by one of the gurus) [12:03] so [12:04] NULL_REVISION is the empty revision [12:04] it has no content [12:04] I think what you may prefer is 'branch.basis_tree()' [12:04] ahhhh [12:04] I thought it was the starting revision for changes, and passing NULL_REVISION would give me everything from the beginning of time. [12:05] Running updated test. [12:05] tree objects are not deltas [12:05] they are snapshots [12:05] So I want the latest revision there. [12:05] Now I get "no such revision." [12:06] from basis_tree ? [12:06] Oh, wait, basis_tree() is the tree I want to walk. Thank you, duck typing! [12:08] lifeless: bit of delay here... the change is suddenly exercising code that never ran in my test. Which is a good sign. :-) [12:09] * jtv does see certain advantages in a compiler... [12:09] lifeless: more trouble, but I'm sure it's not worth keeping you for. You've helped me a lot though! [12:35] 'make dist'! [12:36] gnight [12:37] lifeless, g'night. [12:50] what do I have to do to get http://doc.bazaar-vcs.org/bzr.1.16/en/release-notes/NEWS.html regenerated? [12:51] hmm. cronjob. [12:52] * jml gives it time. === jml changed the topic of #bzr to: Bazaar version control system | 1.16 released 18th June, 2009 | http://bazaar-vcs.org | http://irclogs.ubuntu.com/ [13:01] Anyone up for another bzrlib question? [13:04] don't ask to ask, just ask. [13:12] jml: ah yes. I'm doing a walkdirs(), and I'm expecting to find a file a/b/c.txt, but I seem to get only the b and c parts. [13:12] jtv, walkdirs on which object? [13:12] jml: on branch.basis_tree() [13:13] jml: Do you know why the md5/sig links for 1.16 are broken? Are they made by you or LP? [13:13] jml: each item in that iteration seems to be (dirname, id): [files] [13:13] jml: but for a/b/c.txt, dirname seems to be 'b'. [13:14] fullermd, the links on which page? [13:14] Might be a bug in my code, but trying to figure out what's normal here. [13:14] jtv, [13:14] jml: https://launchpad.net/bzr/1.16/1.16 [13:15] fullermd, by "broken", do you mean they 404? [13:15] fullermd, the md5 link is made by Launchpad, I uploaded the sig files [13:15] Well, they don't give me a MD5 or a signature ;) [13:16] e18b38e2c4e33203c8f6c9b4029cea7a bzr-1.16.tar.gz [13:16] http://edge.launchpad.net/bzr/1.16/1.16/+download/bzr-1.16.tar.gz/+md5 [13:16] (the rc didn't either) [13:16] that's what I get [13:16] fullermd, what do you get? [13:17] jml: Congrats on the release. [13:18] Peng_: thanks :) [13:18] Hm. Well, I see the md5 on that page, but the links don't go there (even mod the edge thing) [13:18] http://launchpad.net/bzr/1.16/1.16/+download/bzr-1.16.tar.gz/+md5 has the MD5 [13:19] But the link from https://launchpad.net/bzr/1.16/1.16 goes to http://launchpad.net/bzr/+milestone/1.16/+download/bzr-1.16.tar.gz/+md5 [13:19] (which gives Page Not Found) [13:19] (the link on https://edge.launchpad.net/bzr/1.16/1.16 goes to the right place) [13:20] So I guess it's a LP bug. [13:20] if it works on the edge page, then it might well be a fixed lp bug [13:20] * jml checks [13:21] http://launchpad.net/bzr/+milestone/1.16/+download/bzr-1.16.tar.gz/+md5 [13:21] http://edge.launchpad.net/bzr/1.16/1.16/+download/bzr-1.16.tar.gz/+md5 [13:21] Yah. [13:22] fullermd, https://bugs.edge.launchpad.net/launchpad-registry/+bug/383788 [13:22] Launchpad bug 383788 in launchpad-registry "md5 and sig links are broken on the milestone-release page" [High,Fix committed] [13:22] Good enough. === mrevell is now known as mrevell-lunch [13:24] jml: congrats for the release ! [13:24] vila, thank you :) [13:27] Always nice to get an update to the bzr port submitted before breakfast ;) [13:27] :) [13:33] jtv, sorry I got distracted. [13:34] jml: ah, I thought it was some form of IRC "RTFM" that I wasn't aware of. :) [13:34] jtv, I don't know what's going on there, I'm afraid -- I haven't used that API much. [13:34] vila: hi [13:34] jtv, perhaps mucking around with it in a Python interpreter might help figure things out. [13:35] bialix: hi ! [13:35] jml: sort of what I'm doing. [13:35] can you recall what the bug #376582 was about? [13:35] Launchpad bug 376582 in bzr "Authentication prompt goes to standard out" [Undecided,Fix released] https://launchpad.net/bugs/376582 [13:35] jtv, alternatively, it's morning in Toronto soon, so you might be able to get abentley to lend you a hand. [13:35] you've fixed it recently [13:35] jml: yeah, thing is, it's already dark here. :/ [13:36] bialix: yes. If we prompt on stdout, users can't redirect output (think diff or log) or they will not see the prompt [13:36] this is for password prompt? [13:37] for any prompt, including password [13:37] hmm [13:37] I thoiught [13:37] I thought bzr uses direct access to console to get user input [13:38] at least on win32 [13:38] from getpass std module. is not? [13:39] bialix: hooo, now that you mention it... yes, we were passing the prompt to getpass.getpass() [13:40] and *there* there may have been some win32 specific code path [13:40] jml: \o/ figured it out, tests pass [13:41] jtv, yay [13:41] you talk in past time [13:41] jml: just what I was writing into this commit message here... [13:41] vila: so today things are different, that's right? [13:42] g'night all. [13:45] bialix: yes, stderr is used instead, which should be easier to redirect [13:46] it seems like stderr forced to use utf-8 encoding. it's bad and wrong for win32 [13:47] bialix: Are you sure it's not the default stderr behavior instead ? Anyway, AFAIK, stderr is left untouched as far as UIFactory is concerned... [13:48] well, in trace.py [13:49] oh no [13:49] it seems I have false memory [13:49] don't mind [13:49] .bzr.log is utf-8 encoded, it's ok === mrevell-lunch is now known as mrevell [14:08] Hi. I want to writea pre_commit hook which rejects commits if they contain certain words. [14:08] I can't work out how to access the diff though. === visik71 is now known as visik7 === Nafallo_ is now known as Nafallo [15:27] jam: good day [15:27] hi bialix [15:28] there is small problem with bzr.exe and some plugins [15:28] some plugins require standard python modules that absent in lib/library.zip [15:29] do you think it reasonable to add these python modules explicitly? [15:29] add to setup.py [15:30] or just left this problem to plugins [15:40] jam: I'm asking your opinion because 1.16 is out but problem only get worse. Now bzr explorer require additional lib. And I think we should package this plugin into bzr.exe installer. [15:41] s/we/you/ [15:41] if we package bzr-explorer it will bring in the extra libs [15:41] if we don't then they need todo an installer like bzr-xmloutput does [15:41] which installs the deps [15:42] another solution is to explicitly add required libs to the list of includes in setup.py [15:43] and make the life easier for xmloutput too [15:44] I can provide the patch for this, but will be nice to have this patch into bzr.exe 1.16 [15:47] please help me, I am stupid, how can I replace a local branch and working copy with the one from the server? I have loads of shitty changes on my local copy and I want to go to the good version on the central branch [15:52] jam: ok, it seems you're busy. but I'd like to point your attention on my recent answer in ML about selftest for bzr-svn @windows. [15:53] bialix: sorry about that. Anyway, to be "nice" we'd have to bundle every possible library so that every possible plugin could work [15:53] we also don't want to bundle all of GTK if we aren't going to bundle bzr-gtk [15:53] (PyGTK) [15:53] so we *can* bundle things [15:53] but I think it is better to make it easier for plugins to write installers that include dependencies [15:53] jam: currently we know which modules are missing. they are few [15:54] don't need to bundle the whole universe [15:54] * bialix disagrees with jam point [15:54] bialix: we are missing some modules for *certain* plugins [15:54] but there are *lots* of potential plugins that potentially need a lot of dependencies [15:54] I understand your point, ok, thanks [15:55] If the list is obvious and small, that is no big deal [15:55] ha ha [15:55] awilkins just asked about xmloutput [15:55] but it makes more sense to help the plugins do the work themselves [15:56] I know how to work this [15:56] I'm asking because it seems there is needed few of modules [15:57] today: SimpleXMLRPCServer (for xmloutput) and HTMLparser (for explorer) [15:57] this list could grow over the time [15:57] but today it's reasonable small [15:58] sometimes I think hg approach of bundling all plugins and enable them by user is better suited for this kind of issue [16:00] igc1: what are you still doing up === afk is now known as mthaddon [16:10] jam: several hours at the hospital today and again tomorrow so ... [16:11] igc1: sorry to hear that. I'm happy to see your activity, sad to see it so late in the day :) [16:11] then again, it is nice to see you at the same time I'm on [16:11] all you AU guys have been getting up extra late recently [16:11] And I'm on a pretty strict "stop at 5" routine [16:11] jam: :-) also, trying to roll out Explorer 0.3 tonight to coincide will the 1.16 release [16:12] jam: but it can wait till tomorrow afternoon [16:13] hopefully bialix will have a chance to test out the latest changes before then [16:13] igc1: I think I should write installer for bze explorer [16:13] hi bialix - just talking about you :-) [16:13] because explorer require HTNLParser lib that missing in bzr.exe [16:13] hi Ian [16:13] glad to hear you, sad you're busy with hospital [16:14] bialix: you can wrap that import in a try/except - not required for production code yet [16:14] well https://bugs.launchpad.net/bzr-explorer/+bug/389028 [16:14] Launchpad bug 389028 in bzr-explorer "[bzr.exe problem] can't start explorer: bzr: ERROR: No module named HTMLParser " [Undecided,New] [16:15] bialix: tests and appointments - no treatment fortunately [16:15] I have solution for this [16:15] I can do installer for you [16:15] I'm good in writing installers [16:17] bialix: true! but just pulling the branch ought to work if we simply wrap that import [16:17] igc1: if you plan to release 0.3 then setup.py need to fix [16:17] igc1: let me check [16:17] bialix: see http://bazaar-vcs.org/BzrExplorer (and the roadmap link) [16:18] igc1: try-except does not work [16:18] igc1: http://pastebin.com/m46f6a876 [16:18] bialix: yeah, 0.3 either 10-15 hours from now or Monday is the plan [16:19] so we have to provide installer! [16:19] Any easy way to find the current revision number of a directory? [16:19] see file-revision plugin [16:19] or use qbrowse command from QBzr plugin [16:19] bzr revno [16:20] doh [16:20] hexmode: or bzr version-info --all, etc [16:20] bzr revno does the whole branch [16:20] just depends what you are looking for [16:22] jam: ok, so if I do "bzr revert -r 28", I would expect bzr revno to show 28. Instead it shows the version of HEAD [16:22] igc1: I'm eagerly need support for lightweight checkouts+feature branches workflow in bzr explorer [16:22] (which is 29) [16:22] hexmode: you need uncommit [16:22] hexmode: revert doesn't change the current revision [16:22] just the content of files [16:23] ok, well, this will do for now, I think.... [16:24] bialix: try rev 53 [16:25] * bialix pulling [16:25] igc1: IMO acronym BE is already used for Bugs Everywhere [16:26] I thought it meant Build Environment [16:26] ... but I guess that was in the next channel over, #reactos .. [16:26] hmm - maybe I need to start using BEX instead [16:27] or BzrE or whatever [16:27] http://en.wikipedia.org/wiki/Bex [16:27] BEX is shorter, I guess [16:28] or call it something like REALLY COOL BAZAAR FRONT-END!!! [16:28] well, maybe without all this caps [16:29] BzrEx comes up empty enough on google so it will probably do [16:29] so bialix, did that work? [16:29] igc1: yes, ii is [16:29] it is [16:30] it works fine now [16:30] time for me to call it a night [16:30] goodnight [16:30] bialix: if you want anything else in 0.3, I need patches [16:30] I have problem with opening shred repo [16:31] I'm debugin the problem right now [16:31] I'll send out an announcement tomorrow, unless there are show-stoppers [16:31] igc1: patch for windows installer will count? [16:32] I'll fix setup.py today [16:32] bialix: I'd prefer to see it bundled in the normal Windows installer, for 1.17 [16:32] as you wish [16:32] assuming enough people like it, of course [16:32] night all [16:33] see you later [16:34] bialix: if you're really keen, please add some windows screen snapshots to http://bazaar-vcs.org/BzrExplorer ! [16:34] with pleasure! [16:52] I'm still immensely puzzled by a problem of a file marked as "removed" that when I try to do "bzr mv --after" on it, says it's not versioned. [16:53] I just downloaded the latest Windows bzr in case it was Cygwin specific, but the problem is still there [16:53] Any idea what I can do to solve it? [17:03] VSpike: looks like the problem with case of characters in filename [17:03] use standard ren command in DOS shell to fix the case of the file [17:04] bialix: I think I managed to fix it, after some fiddling. I ended up with two parent directories versioned at one point [17:05] I saved the code file, reverted both of them and then did bzr mv ... and then overwrote the new location with the saved file [17:06] ok [17:12] Hola! :) [17:13] I'm thinking about maybe switching from SVN to bzr, but I'm curious about 2 things; first: how is the migration path? can I keep my current revision history? and second: what about an equivalent to svn:externals, does it exist? [17:14] bzr-svn will import your SVN repository pretty easily (in fact, I use bzr to make checkins to our SVN repo at work) [17:15] svn:externals doesn't have support yet -- I believe support for that (what bzr calls "nested trees") is currently underway [17:16] Davey: though if you dare enough you can try scmproj plugin as emulation of svn:externals [17:17] yeah... no svn:externals is a deal breaker for me; I have 4 separate third-party libs I have to hack on :/ [17:17] I don't think git supports any similar mechanism either mind you [17:18] Davey: separate checkouts have worked just fine for me :) [17:18] i'm mainly familiar with using svn for development rater than deployment though [17:18] git has submodules [17:18] scmproj plugin is roughly did the same [17:18] the same as git [17:18] but a bit better [17:23] the thing that turns me off git, is the whole empty directory not versionable BS... that seems like such a basic thing that if they forgot that I wonder what else they forgot ;) [17:25] bzr can track empty dirs [17:25] this I know :) [17:25] take a look at scmproj [17:25] we're just outgrowing SVN; our merging needs are growing as our team grows and we're tackling more ambitious simultaneous projects. We have 4 branches (old-stable, new-stable, enterprise edition, and trunk); eventually, trunk will replace /both/ the new-stable and enterprise editions, but we've got two major projects to add to it immediately, and then there's the re-write coming up shortly. blech :) [17:25] maybe it's not very elegant, but it works [17:26] you can sit bzr over svn, right? [17:26] perhaps that's the solution? :) [17:26] you can work with svn repo directly [17:26] if you asking this [17:26] yeah, bzr-svn supports most svn operations -- it doesn't support svn:externals yet, of course [17:27] some people just using svn as central server to store bzr branches there [17:27] bialix: that's kinda where I'm headed, TBH [17:27] scmproj can be used for this [17:28] * bialix have to go [17:28] I'll glad to help with scmproj if needed [17:29] I'll be there later [17:49] hello. how do i debug bzr-email? i have bzr-email installed and set up as the post-commit hook on the server. the branch.conf in the shared branch on the server specifies the smtp_server. i can send email from the server w/ postfix (echo test | mail 'foo@bah'). but, no email when i commit to the branch, and i don't see any logs anywhere saying what's going wrong. ideas? [17:57] flvr8: my guess is that it isn't picking up on the config due to your branch name being different than you think [17:57] flvr8: see ~/.bzr.log on the server [17:58] * LarstiQ dines [17:58] LarstiQ: thanks, will see if i find something in there [18:21] hello bzr hackers! [18:22] i'm using lp:config-manager to manage a bunch of branches that I depend on in a project. config-manager only lets me specify which branches to pull. Is there a way that I can specify in a bzr url which revision or tag should be pulled? [18:30] Hey. Is there a bzr command I can use for shell scripting that lets me determine whether the tree is clean? [18:31] Oh, I found my answer myself: bzr diff [18:32] if bzr diff -q ; then echo "no change"; else echo "changes found"; fi [18:32] hey ddaa, it's been a long time. how are you? [18:32] hey statik [18:33] Got a consulting job in a bank hacking some python stuff, resigned because I hated the bank part of the job. Now associate of a web startup that does not have money to give me a pay yet. [18:34] Inherited a "working" webapp without any useful automated test suite. Currently hacking on automated deployment scripts. [18:34] ddaa, sounds scary but like an adventure [18:34] Missing Canonical. [18:34] help! [18:34] bzr push gives me: [18:35] bzr: ERROR: RemoteRepository(bzr+ssh://bazaar.launchpad.net/%7Escott/upstart/0.3/.bzr/) [18:35] is not compatible with [18:35] KnitPackRepository('file:///home/scott/co/upstart-0.3/.bzr/repository/') [18:35] different rich-root support [18:35] you need to "bzr upgrade" your local repo [18:35] my local repo is upgraded, it's the remote repo that's the problem [18:37] Keybuk, what does "bzr info" say locally? [18:37] the online branch seems to not be rich-root [18:37] Standalone tree (format: 1.14-rich-root) [18:37] Keybuk, so, bzr upgrade --1.14-rich-root lp:~scott/upstart/0.3 [18:38] it'll take a while [18:38] statik: I like adventures. [18:39] bzr: ERROR: File exists: '/srv/bazaar.launchpad.net/push-branches/00/00/17/d0/backup.bzr' [18:39] beuno: & [18:39] ^ even [18:39] use a sftp client to nuke that [18:39] Eh, I've found it faster and easier to delete the launchpad repo and push a new one... upgrade takes forever. [18:39] ddaa: example? [18:39] argh [18:40] quest scott% sftp bazaar.launchpad.net [18:40] Connecting to bazaar.launchpad.net... [18:40] sftp> cd /srv/bazaar.launchpad.net [18:40] Couldn't stat remote file: No such file or directory [18:40] ddaa ^ [18:40] no, I think Peng uses hitchhiker [18:41] I know sftp doesn't work beacuse we have a custom ssh server [18:41] abentley, ping? [18:41] in my time, it used to work [18:41] beuno: pong [18:41] abentley, hello [18:41] could you help us out? [18:41] 14:39 < Keybuk> bzr: ERROR: File exists: '/srv/bazaar.launchpad.net/push-branches/00/00/17/d0/backup.bzr' [18:42] Keybuk wants to upgrade but it seems he's done it before [18:42] Keybuk: lftp sftp://bazaar.launchpad.net/~bzr/bzr/trunk [18:42] you need to specify the full branch url from the start [18:42] the VFSTP does not provide intermediate listings === Kissaki^0ff is now known as Kissaki [18:43] and you need to use lftp because it provides a nice rm -rf feature. [18:43] Keybuk: Or hitchkiker lp:~scott/upstart/0.3 rmtree backup.bzr [18:44] any bzr-eclipse people around? trying to figure out how to import an existing branch into an eclipse project [18:44] yeah, same difference :) [18:44] * beuno spots verterok hiding in the back [18:44] and you should annoy rockstar and spiv so they automatically nuke those bzr.backup dirs away [18:44] on session close [18:44] * verterok start running [18:45] hi dash! [18:45] verterok: ello [18:45] so I see "branch as a new project" [18:45] but not how to use an existing branch [18:45] there's nothing on eclipse's "import" meny [18:45] menu [18:47] dash: you have a local branch you want to import? [18:47] yes [18:47] dash: it's already an eclipse project? [18:47] there's eclipse project files in the branch, yeah [18:48] dash: just file --> import --> existing project into workspace :) [18:48] dash: bzr-eclipse will detect the .bzr at the root of the project, and enable bzr support [18:49] hmm. this is perhaps complicated by the fact that the branch root doesn't contain a .project file, there are multiple projects in the branch [18:50] dash: oh, just like bzr-eclipse itself [18:50] dash: it's a limitation of eclipse team support, and I didn't found a solution yet (apart from reimplementing a big chunk of eclipse internals :p) [18:51] dash: you can import the projects, and then select all the just imported project: right click --> team --> share [18:51] hm, ok [18:51] dash: choose bazaar for each one, and you'r done :) [18:51] dash: maybe adding a wizard to simplify this would help [18:52] ddaa: thanks, that appears to work :) [18:52] dash: would you mind to file a bug with the use case and the problem? [18:53] verterok: well, just mentioning that it's necessary would help :) [18:53] looks like that sorted it out [18:53] dash: great to know! [18:57] trying to utilize loggerhead for web serving up some repos.. found an example config file in the root of the trunk.. but no directions in readme or otherwise on how to get the the serve-branches cli to utilize the config file.. any ideas? [18:58] beuno: ^ [18:58] hazmat, it serve-branches doesn't use the config file [18:58] did you grab trunk or a release? [18:59] trunk [18:59] i wanted to serve up multiple project branches from a single loggerhead instance.. [19:00] hazmat, and they're all in different directories? [19:00] their all under a single dir [19:00] hazmat, so just run serve-branches on that dir [19:01] and it will serve them [19:01] cool, i see that now.. thanks [19:01] config file threw me off [19:01] yeah, we're dropping that very soon [19:08] hm. anybody know what it takes to build the osx installer for bzr? i'd like to make one for my coworkers with bzr-svn etc included [19:16] is there an equiv of svndumpfilter ? [19:17] there's bzr-fastimport [19:17] that may not be what you want though :) [19:47] If I have did "bzr init-repo foo" ages ago, and now have foo/bar/, foo/baz/, foo/qux/, etc, can I just do "mv foo new-name" and everything will still Just Work? [19:50] FYI, I used hitchhiker to "rename backup.bzr .bzr/backup.bzr". [19:50] I'm sure LP doesn't appreciate me keeping 2 backups, but whatever. [19:51] Peng_: not sure I understand. "LP" = ? [19:51] launchpad? [19:52] kfogel: It was in reply to a conversation an hour ago. [19:53] kfogel: You can rename repositories and branches as much as you want, as long as the branches still exist in the repo. [19:54] Peng_: Ah. So even inside foo/ (or inside "new-name", post-rename), I could do "mv bar bar2; mv qux fish", and everything would still work? [19:54] kfogel: Some branches may have the full path stored as their parent, push, etc. locations, but if you run into that, it's easy to fix with e.g. "bzr pull --remember". [19:54] kfogel: Yup. [19:54] great, thanks [19:54] kfogel: Bazaar just searches up the directory tree for a shared repo. It doesn't care about the names themselves. [19:55] good [19:55] I expected that, but wanted to be sure, before I made some names that might end up being permanent. [19:55] kfogel: You could even do "mv bar baz/bananas" if you wanted to. :) [19:58] Peng_: so it really just searches upward -- doesn't even need the relative distance to repos root to remain stable? That's great, although perhaps also comes at a bit of a time cost, dunno. [20:03] kfogel: Yup. It probably does have a cost, but it would be minimal. Just a couple more stat()s among the hundreds/thousands Python'll already wind up doing. [20:04] heh, true === bac` is now known as bac [20:36] i am confused. i have a bzr repository on my server at /opt/bzr/Main/trunk (an import from svn). i checked it out onto my workstation, modified the existing file "foo", and checked it back in. the file "foo" on the server (i.e. in /opt/bzr/Main/trunk) does _not_ contain my changes to it, but checking out the branch from a different machine picks up the change, and running bzr log on "foo" on the server shows my commit messages. so my [20:37] flvr8: pushing to a remote branch doesn't update its working tree [20:37] you have to do 'bzr up' to get that [20:38] You can also use the bzr-push-and-update plugin. [20:39] ah indeed. so where are those changes persisted until i do that? [20:43] flvr8: .bzr [20:43] flvr8: .bzr contains all of the history; the working tree is unnecessary. [20:45] got it [20:56] bzr up -v is showing me a list of files, but then it dies with "bzr: ERROR: [Error 2] The system cannot find the file specified" [20:58] More recent versions of bzr will usually be more helpful, including the filename in the error message. [20:59] this is 1.15 [21:03] Sorry, i dunno. What OS? Are you using a weird file system? [21:03] -Derror at least tells me its a exceptions.WindowsError [21:03] any other debug-flag that may help? [21:03] Sorry, I dunno. [21:03] Hopefully someone else does! [21:04] i hope so too [21:17] so who can I call to pay for bazaar support? [21:18] canonical? [21:18] jrwren: Please will you pastebin the error. === mario__ is now known as pygi [21:21] http://pastebin.ca/1465290 [21:21] * garyvdm looks [21:28] jrwren: I've taken a look - I'm way out of my league. [21:29] jrwren: Can you rembember what you did, and see if you can reproduce this? [21:30] jrwren: Whether you can or can't, log a bug on https://bugs.launchpad.net/bzr/+filebug [21:31] jrwren: Most of the bzr devs will be asleep atm. Maybe jam is around? [21:33] jrwren: When updating a tree [21:33] we stage the changes in several steps [21:33] first we write down what we are about to generate [21:33] then we move the source files to a pending-deletion dir [21:33] and move the new files into place [21:33] then we deleted the pending-deletion [21:33] that way we can 'rollback' at any time [21:34] the error I'm seeing looks like it is trying to remove a file from your working tree [21:34] and put it into limbo [21:34] but it is already gone [21:34] any idea how that could happen? [21:34] (It could also be a permission issue, such that we think the file is gone, but really it is just unaccessible by your user, etc.) [21:35] Hi jam [21:35] hi garyvdm [21:38] jam: I had the user run find \! -perm -u=rw -ls [21:38] jrwren: are you running on Win32 ? cygwin? [21:38] and nothing showed, so she has read write [21:38] yes win32, no cygwin [21:38] (a bit strange to run 'find' with a WindowsError) [21:39] well, cygwin is installed, but we are using bzr from MSI [21:39] sure [21:39] so... I think I see the prob [21:39] will the file list of changes show per each file, or at the end [21:39] becuase I confirmed that every file in the list does exist on the file system. [21:40] i mean, every file that is listed as M or -D [21:40] we have this block http://pastebin.ca/1465315 [21:40] Which is trying to handle the ENOENT case [21:40] however, you are getting a WindowsError that is not ENOENT [21:40] for whatever crazy reason... :( [21:41] from what file is that, is there an easy way for me to log that full_path value on that call? or can I go hack that file? [21:41] jrwren: you might try doing 'touch myfile' before doing the 'bzr up' [21:41] jrwren: you are using the installed version, so it is 'compiled' python [21:41] jam: so you think it is the last file in that list? ok. [21:41] If you are comfortable grabbing the source, I can do it from there [21:42] jrwren: I honestly don't know when that list is generated versus when the renames, etc are done [21:42] but it is a good first start :) [21:43] gah, cursed compiled python. I'm comfortable with installing python and the http://edge.launchpad.net/bzr/1.16/1.16/+download/bzr-1.16-1.win32-py2.6.exe [21:44] jrwren: so... it looks like the list of what will be printed is generated *before* it starts touching your working tree [21:44] so the last item on that list *should indeed* be the item causing problems [21:45] jrwren: well py2.6 will also be the "compiled" version, IIRC [21:45] however, you can download the tarball from there [21:45] and run from source [21:45] we have some compiled externsions that are useful but optional [21:45] and shouldn't have an effect here [21:45] jrwren: and if you want to write a patch that adds a "trace.mutter('failed to rename XXX')" as part of the exception clauses [21:46] that would be a good start to making this easier to debug [21:46] or even trace.note()/trace.warning() [21:46] jam: I just tried to touch, but it didn't work. [21:46] k [21:47] i'm stealing a file copy of the branch so that I can try it myself instead of on her computer. [21:47] jrwren: sure [21:47] good idea [21:58] anybody know how to rescue a broken svn repo? there's something in one of the modules that i'm importing which is causing very bad things to happen: https://bugs.launchpad.net/bzr-svn/+bug/380621 [21:58] Launchpad bug 380621 in bzr-svn "pull from svn repo gives: bzr: ERROR: base checksum mismatch: " [Undecided,Incomplete] [22:00] (i'm the latter comments in there, but kevin - the original reporter - works on a different project at my company. i wonder if somehow our svn repo got snarled) === mwhudson_ is now known as mwhudson [22:05] flvr8: did someone manually edit the svn repo? [22:05] like changing the author/committer/message/timestamp on an old rev [22:05] use svndumpfilter that sort of thing? [22:05] anyway, I would say "start from scratch" but that can be ugly, I realize [22:06] hm, no manual edits that i know of, but it is on a managed host, so there's no telling [22:07] i.e. the host may have "fixed" an issue one of the developers were having using similar [22:24] hm, i ran svnadmin verify on the svn repository and it reports that all is well [22:24] btw vila, what are you still doing up? [22:25] jam: writing the cover letter :-D I had a hell of a day (starting with a hell of a last night :) and then crashes all around... [22:26] * vila fall asleekl;'mm .f .bh,hmasldf b. [22:27] vila: sleep well [22:31] huge kudos to the addition of the nonadmin zip file build for windows! I love it! [22:39] moin [22:39] hiya lifeless [22:40] hey lifeless, beuno [22:40] heya jelmer [22:43] lifeless: can I skype you? I have a few questions [22:52] thumper: what about? [22:52] how bad inconsistent parents are [22:52] I had reconciled my LP repo [22:52] and created the 2a repo from it [22:52] but later pulling into my packs repo to bring it up to day [22:52] date [22:53] introduced more inconsistent parents [22:53] now I'm unsure of the state of the 2a core repo [22:53] so [22:53] they affect annotate and per-file log [22:54] the data that had be reconciled wouldn't have been altered by the pull [22:54] you can't [yet] check and reconcile only some revisions, but that is planned [22:54] why are we still getting inconsistent parents being generated? I don't get it [22:55] if you check with -v it should report them [22:55] if their revnos are recent, you shouldn't be getting them, so its a matter of tracking down why. [22:55] if they were created by PQM, PQM hadn't been upgraded for some time [22:56] I had reconciled, I ran a check on the packs repo and found 2918 inconsistent parents [22:56] I reconciled just before all hands [22:56] so the new revisions would have been since then [22:57] how can we propagate the proper parents ? [22:57] they have to be right before pull/merge/push or they don't propogate [22:58] and you have to reconcile to fix [22:58] if I use -v will it tell me which revids are inconsistent? [22:58] what about reconcile -v? [22:58] if there is a flag like that [22:59] I'm concerned with the new 2a repo for LP and making it good and clean [22:59] however our deadline for getting it up and distributed to users was 2 days ago :) [22:59] and any delay hurts us more... [23:00] it appears that someone(s) are still generating revisions with inconsistent parents [23:00] pqm is on 1.13 I think [23:00] yes, its very traumatic at the moment. I think I've mentioned this :P [23:00] ATM [23:00] pqm is doing 1.16 new [23:00] upgaded yesterday as part of the lp upgrade process [23:01] ok [23:01] 1.16rc1 specifically [23:01] doing a reconcile is technically a choice [23:01] it won't [anymore] affect fetch. [23:02] as of when? [23:02] it now only affects log FILE, annotate & pack. [23:02] why pack? [23:02] Hello. What's the recommended way to get the revid of a lightweight checkout? [23:02] around 1.15, but 2a is definitely safe. [23:02] I presume "bzr log --show-ids" is not the righ approach as it gives the revid of the branch, which is different if the checkout is out of date. [23:02] ddaa: of the tree? bzrlib.workingtree.WorkingTree.open(PATH).last_revision() [23:03] lifeless: anything that I can run easily from the shell? [23:03] thumper: because pack sorts by topology [23:03] ddaa: python -c !$ [23:03] writing rollout scripts in in sh [23:03] uh [23:03] ddaa: or perhaps bzr version-info [23:04] oh, I'll look into that [23:05] thumper: it won't make pack /wrong/ but it can affecct compression [23:07] * thumper nods [23:10] lifeless: thanks, so the answer is "bzr version-info --custom --template '{revision_id}\n' [PATH]" [23:11] ddaa: :) [23:21] mwhudson: slacker [23:21] (re: identi.ca) [23:21] :) [23:22] ddaa: i went to bed at 12 and got up 6:30, tim went to bed at 3 and got up at 8, jono went to bed at 1 and up at 7... === mthaddon is now known as afk === afk is now known as mthaddon [23:24] mwhudson: and then, you still feel the need to justify yourself? :) [23:31] lifeless: Any sort of querying of WorkingTree.inventory requires a lock on WorkingTree. Is there a way that I can create a in memory copy of WorkingTree.inventory so that I don't have to hold a lock? === Kissaki is now known as Kissaki^0ff [23:35] I found .copy(). I'm going to give that a try. [23:40] garyvdm: so, as I said before, I'm not sure that inventory is the right tool for what you're doing. However, yes, you can use .copy, but its extremely wasteful. Dirstate trees don't even /need/ an inventory to do most operations. [23:44] lifeless: Oh - I did not realise that there was a tree.iter_children. - Is that what think I should be using? [23:45] garyvdm: well it seems to me like you want to cache a bunch of data that bzr normally accessess just-in-time [23:46] For WorkingTrees - Yes, but for RevisionTrees - no. [23:48] garyvdm: tree.walkdirs for instance can be very fast [23:49] garyvdm: anyhow; as long as you don't use .copy on a RevisionTree.inventory it is probably ok [23:49] on a 2a format, .copy has to do scatter-gather IO across all the nodes for the tree. [23:50] lifeless: Ok. tree.walkdirs may work for me. [23:52] garyvdm: I'm mainly worried about performance for historical revisions [23:53] garyvdm: its quite a bit cheaper on massive trees to be doing on-demand loading [23:56] spiv, lifeless: Shouldn't bug 252945 be fixed by your recent hpss work? [23:56] Launchpad bug 252945 in bzr ""bzr push" uploads 1-2 MB just to send a one-line change revision" [Undecided,New] https://launchpad.net/bugs/252945