[00:08] jam: good evening! Bug 45719 refers to a branch https://code.launchpad.net/~jameinel/bzr/update-r, which is failing to mirror. Do you still have that branch available? Helping 'bzr up' grow a '-r' option sounds like something I could do in idle time... [00:08] Launchpad bug 45719 in bzr "update command cannot take a revision number" [Medium,Fix committed] https://launchpad.net/bugs/45719 [00:08] it looks like it must be close to done already too [00:09] htm [00:09] markh: Yeah, LP just didn't like it when I upgraded my repo, and it had to re-fetch everything [00:09] It tends to timeout while downloading a full branch from my server [00:10] markh: you can get it from the source [00:10] A status of " [Medium,Fix committed]" doesn't look correct [00:10] oh - cool [00:10] just make sure you are going into a repo [00:10] http://bzr.arbash-meinel.com/branches/bzr/0.11-working/update-r [00:10] excellent - thanks [00:11] I'm not sure what you mean by "make sure you are going into a repo" [00:11] I can't just branch it? [00:12] markh: branch it into a shared repository, so you don't use up all my upload bandwidth [00:12] you *can* get it without that, but it is *nicer* to me if you do [00:13] * markh feels clueless :) [00:13] I'm not quite sure what you are asking :) [00:13] markh: I'm guessing at some point you did 'bzr init-repo', just make sure you 'bzr branch' underneath that point [00:13] then again, maybe you didnt' [00:13] nope, I didn't [00:14] I think its time I educated myself a little more on a few of these things... [00:14] markh: if you do: "bzr init-repo repo; bzr branch bzr.dev repo/bzr.dev" it will copy revisions into the repo/.bzr/repository, future branches underneath 'repo' will share them [00:14] rather than copying them again [00:14] markh: you can create one later and seed it with data from the original branch, what jam just said [00:15] anyway, family time now, I'll try to get back later to get 1.6rc4 put out tonight [00:15] oh, right - that makes sense. [00:15] hey there [00:16] quick question [00:16] markh: and the relevant point for jam, if you branch update-r it will only download the revisions that you didn't have before, not hammering his upstream :) [00:16] kiko: shoot [00:16] is there a way of saying 'give me the code as it looked in january 1st 2004'? [00:16] my current workflow is, eg, branch bzr.dev into its own folder, then make other branches from that directory. If I followed that workflow, wouldn't I still only download from John's server once? [00:16] using bzr checkout ideally [00:16] kiko: There's a "date:" revspec. [00:16] hey LarstiQ [00:16] aha. date:. [00:16] ie, wound;t a shared repo only save copies between my own local dis directoroes? [00:16] Peng_, thanks! [00:16] :) [00:17] * markh slaps his fingers... [00:17] hi LarstiQ! [00:18] hrm [00:18] markh: if you just branch inside a directory the branches will be all standalone and not sharing any revisions [00:18] or are you saying that I need to have *both* bzr.dev and john's patch in the same shared repo? [00:18] markh: you can confirm that by checking for branch/.bzr/repository/ [00:19] LarstiQ: yeah, but doing that wouldn't hammer upstream any more would it? ie, once I have the upstream copy in my local dir, other branches don't hit upstream at all [00:19] but - is the point to not pull revisions that are also in bzr.dev? [00:20] markh: now, if you are branching something (remote or local), bzr will check which revisions it should get, and if some of those are already present in the target repository, it will not fetch them again. [00:20] markh: true. [00:20] markh: exactly. [00:20] markh: since update-r is largely the same as bzr.dev, you would avoid downloading all those common revisions. [00:20] ok cool - that makes more sense. I thought the advice was to put that branch in its *own* shared repo :) [00:20] which doesn't make much sense ;) [00:20] markh: ah no, that wouldn't help any :_) [00:21] markh: to continue my train of explanation, when your are not branching to a shared repository, there will be no pre-existing target repository, hence no revisions you already have, and you need to get everything again [00:22] markh: if you are however branching into a shared repository, there _might_ be revisions in there that you would otherwise have to fetch. [00:22] LarstiQ: that makes alot of sense - thanks [00:22] markh: since we know update-r and bzr.dev are similar, we can make sure we are branching into a repo that includes bzr.dev's revisions [00:22] and hence, avoid doing more work than we really need to. [00:22] markh: cool [00:23] markh: I personally have a ~/src/bzr/ repository where I have all my bzr branches under. [00:23] now we have stacked branches, would that be the preferred way to make such patches now? [00:24] LarstiQ: yes, I think I need one of them :) [00:24] * LarstiQ is clueless about stacked branches, alas [00:24] from 10,000 feet, I understood a usecase was all about avoiding fetching stuff that is common. [00:25] markh: two effects you should notice after doing that, the size on disk of repo/ with multiple related branches is much smaller than just a directory of related branches [00:25] markh: and, branching within it is much much faster, since you need to do zero moving of revisions [00:25] Stacked branches are sort of like lightweight checkouts, where bzr doesn't download and sae the revisions at all. [00:25] Peng_: ahh, thanks [00:26] markh: oh right. I guess that might work. [00:26] * LarstiQ 's mind is still molded to think of how bzr used to work [00:26] But with stacked branches, it still works like a branch, with local commits and all. [00:26] markh: I have some catching up to do. [00:26] LarstiQ: it hasn't really changed [00:26] LarstiQ: and you make your branches in subdirs under ~/src/bzr? [00:26] markh: yup [00:26] LarstiQ: how are you btw, long time no see [00:27] markh: ~/src/bzr/{bzr.dev,1.5,1.4,bug1234,etc} [00:27] and you still branch "normally" - bzr just magically works things out? [00:27] If you "bzr init-repo", "bzr branch --stacked http://bazaar-vcs.org/bzr/bzr.dev/" and then commit something, the only revision in your local repo will eb the one you committed (or maybe a couple revisions from bzr.dev, I don't remember) [00:27] markh: Was that question directed at me? [00:27] lifeless: long past my bedtime atm :) But otherwise good, had my last exam for a while today, starting september I won't be studying this academic year. [00:27] markh: yup [00:27] Peng_: I think you answered it in the next line anyway :) [00:28] ok great - thanks guys! [00:28] markh: Other than passing "--stacked" to "branch" commands, it'll all magically work. [00:28] I just read the "quick into to bzr.dev" or whatever that doc was called and have stuck with that ever since :) [00:29] lifeless: and I just spent 5 weeks in Finland with my girlfriend, so things are looking good now [00:29] good, but exhausted :) [00:30] nice:) [00:30] lifeless: and as you may have noticed, jam has dragged me back to reading mail again. [00:31] but now I think I'll try to get some sleep. [00:31] markh: you good to go? [00:31] LarstiQ: yeah, thanks for your hel [00:31] p- [00:31] :) [00:32] glad to be of help, bug me anytime (I don't promise to know everything though :) [00:32] thanks! [00:36] thmmm [00:36] Peng_, date: is kinda weird. if the branch checking out hasn't been modified since the date specified, it fails. [00:37] the branch you're checking out [00:37] bzr: ERROR: Requested revision: u'date:2007-01-01' does not exist in branch: BzrBranch5('file:///home/kiko/devel/archives/sourcecode/pygpgme/') [00:37] that fails because pygpgme hasn't been touched in god knows how long [00:37] you might try before:date:2007-01-01 [00:37] if that fails, i think its arguably a bug [00:39] okay, I will try that [00:40] but I think it's weird, and nothing in bzr is weird, usually [00:40] its not entirely satisfactory [00:41] * markh should have known about shared repos long ago :) [02:53] kiko: date is one of those black sheep. we sort of have it, but it has a lot of points where the answer is unclear, so we sort of guess [02:54] beuno: If you get a chance: https://edge.launchpad.net/bzr/1.6/1.6rc4 === jam changed the topic of #bzr to: Bazaar version control system | http://bazaar-vcs.org | please test 1.6rc4! / http://irclogs.ubuntu.com/ | http://planet.bazaar-vcs.org/ | http://blogs.mysql.com/kaj/2008/06/19/version-control-thanks-bitkeeper-welcome-bazaar/ [02:58] man, I really don't feel like sending *another* email to bazaar-announce .... [03:00] jam, how about tomorrow morning? I'm exhausted now, and will probably mess it up :/ [03:01] beuno: np, you never did write up those better docs :) [03:01] jam, no, but I have notes! [03:01] I will send the patch for that tomorrow [03:01] and, it seems I may have time to try and put a script together during the week [03:02] so hopefuly I'll at least get started [03:22] It must be because it's 3.20am here, but how can a file be in the removed, added and conflicts sections of bzr st? [03:22] When should rc4 make the PPA? === kiko is now known as kiko-zzz [03:24] * VSpike thinks kiko probably has the right idea [03:24] VSpike: if you have files with different file id trying to occupy the same path, i can imagine that happening [03:25] mwhudson: I'm not aware of having done anything unusual [03:25] VSpike, sleeping beats trying to understand pretty much any software artifact. good night! :) [03:28] kiko-zzz: night :) [03:28] meteoroid: how can I resolve the issue? [03:28] mwhudson: ^ sorry [03:29] VSpike: hard to say without knowing more [03:29] VSpike: i suspect it may make more sense after some sleep :) [03:30] Yeah, you're probably right [03:30] Ah well - g'night === VSpike is now known as VSpike-zzz [03:52] Peng_: it sounds like beuno will try to make rc4 => .deb early tomorrow [03:53] Hey loggerhead question--is the front page supposed to have "Exception: name 'url' is not defined" at the top? [03:56] it's a feature! [03:57] mkanat: That was fixed quickly. [03:57] Peng_: its in the 1.6 release tarball [03:57] lifeless: Ah. [03:57] Whoops. [03:57] Peng_: I think [03:57] http://www.squid-cache.org/bzrview/ [03:58] beuno: ^ is da fugly [03:58] mkanat: Where do you see this? What version of LH is it running? [03:59] Peng_: http://bzr.everythingsolved.com/ It's running 1.6. [04:01] Maybe that's a different issue. [04:01] mkanat: If you have a few minutes, could you try running the trunk? (bzr branch lp:loggerhead) [04:02] Peng_: looks the same as the squid copy [04:02] both are 1.6 [04:03] squid is using a loggerhead.conf, which I think is a mistake, but I've mailed beuno already as to why [04:03] 1.6 should have the same 'url' fix as the trunk does. [04:03] mkanat: are you using a loggerhead.conf, or serve-branches? [04:03] conf [04:05] jam: I dunno that much about that bug; the devil told me to mark it crit. Or maybe it was lifeless. One of the two... [04:05] Peng_: do you use a loggerhead.conf? [04:05] Yeah, 1.6 has that fix, so I guess this is a different issue. [04:05] lifeless: Nope, I use serve-branches. [04:06] I'm using hte trunk too [04:06] Peng_: try with a loggerhead.conf file, bet it will cause the problem [04:07] Sorry, but I've never used loggerhead,conf, and I'm lazy. [04:08] You try serve-branches. :P [04:10] :P [04:17] ew, the browse view is sure super hideous [04:45] mwhudson: so loggerhead 1.6.1 soon ? [04:50] i guess [04:50] the listing page is quite a regression [05:18] lifeless: gee, what happened? [05:32] http://www.squid-cache.org/bzrview/ [05:32] thumper: ^ [05:33] :) [05:33] thumper: see the horrible output? [05:34] yes I did [05:34] Has somebody filed a bug? Should they? [05:34] thats loggerhead 1.6 using loggerhead.conf [05:34] mwhudson: have you? [05:35] lifeless: no [05:35] I shall [05:49] bug 259273 [05:49] Launchpad bug 259273 in loggerhead "loggerhead.conf usage borked" [Undecided,New] https://launchpad.net/bugs/259273 [08:16] hi, attempt to merge branch produced with vs import on lp (from cvs) with the branch produced by running tailor on cvs repo gives: "bzr: ERROR: Branches have no common ancestor, and no merge base revision was specified.". by looking at LP, i've found the latest common revision, but the problem is that revision number differ on both branches. how am i supposed to update my local branch (tailor-generated) with the more-up-to-date branch [08:16] from LP (vsc-import-generated) ? [08:19] revision numbers don't matter [08:19] gour: well bzr thinks of them as totally separate [08:19] hmm [08:19] gour: they have different file identity [08:19] lifeless: how is it so? [08:20] gour: because they were separate imports [08:20] but those are same stuff, only one is more up to date [08:20] gour: if you run bzr inventory --show-ids [08:21] gour: you will see that they may have the same paths but are different file ids [08:21] gour: you can force it to merge, but it will conflict across the whole tree [08:21] gour: the question is, have you been committing to your local tailor generated branch ? [08:22] lifeless: ahh, it means that import us useful only as one-time affair? [08:22] lifeless: no, i just imported earlier [08:22] then just replace it with the launchpad one [08:22] ongoing imports are useful, but separate imports generate separate histories [08:22] that i know...i wanted to see how to merge them in case i'd have some local changes [08:23] in particular with CVS, where 'history' is arbitrary anyhow :) [08:23] the branches are at https://code.launchpad.net/gnumed [08:23] heh, that's why i'm pushing GNUmed to adopt bzr :-) [08:25] lifeless: how to force merge? supplying --force does not help [08:25] gour: merge -r 0..-1 [08:25] gour: and then cry [08:26] gour: you could potentially use tailor to transfer the commits from one branch to the other [08:26] :-) [08:26] gour: normally, to deal with a local edit in this situation, you'd generate 'bzr diff -r LAST_FROM_CVS..-1' > some_file [08:26] but it is probably best to pick one CVS -> bzr import as the canonical one [08:26] then bzr patch some_file in the import you're keeping [08:26] jamesh: yeah. [08:28] if my local branch would be older revision of LP's gnumed with local changes, then merge won't be a problem, right? [08:28] the branches would have same ids [08:29] or different vcs import still produces different ids? [08:29] gour: neither tailor or cscvs (what the Launchpad imports use) produce repeatable imports [08:30] they'll have different revision IDs and different file IDs [08:30] both of which are important to "bzr merge" [08:30] jamesh: so, all the imports listed at https://code.launchpad.net/~vcs-imports/gnumed/trunk are not suitable for merge then? [08:31] gour: if you branch from that import and do work, you'll be able to merge newer changes from that same location [08:31] and merge between branches that derive from that import [08:31] the same goes if you used a tailor generated branch as the canonical import [08:31] jamesh: ahh, that's what i wanted to hear [08:32] you'll only see problems when you take branches derived from different imports and try to merge between them [08:32] i can use LP's import, work on the branch and then update from the newer imports which are regularly done [08:33] yes. [08:33] LP does new import every day... [08:33] good [08:33] the Launchpad imports are done incrementally [08:33] ahh, that's the catch ;) [08:33] it doesn't redo the import every day -- it updates the existing import [08:34] similarly, you can maintain a tailor import incrementally [08:34] however, i do not propose this as normal workflow...the idea is to contribute something via bzr to LP's import and prepare devs to migrate to bzr :-) [08:34] right...just not mixed the two :-) [08:39] the Launchpad imports don't really help too much for two-way communication [08:39] you can't move changes back to CVS in a way that will be recognised by the CVS -> bzr importer [08:39] if you're lucky, it'll come up as a null merge [08:40] if you're unlucky it'll be merge conflicts [08:41] well, i'll contribute to bzr branch on LP and let them patch upstream if they don't want to use bzr, but i won't use CVS [08:41] if you're using short term feature branches, this isn't too bad: you can throw away the branch once it gets merged [08:42] btw, does it make sense to sign for Ubuntero for someone not using Ubuntu, but using LP [08:42] it is up to you [08:43] the only things that require it at the moment are becoming an Ubuntu member and getting access to Launchpad's personal package archive feature [08:43] if those don't interest you, then you aren't missing out on anything [08:43] hmm, ppa [08:44] that might be handy [08:44] but that's, again, only ubuntu pkgs, not source releases, right? [08:45] right. [08:45] heh, then i do not need it...which does not prevent me to follow the good codes uven without signing :-) [08:46] *even [09:06] ping bkor === gour is now known as LaskoPivo === LaskoPivo is now known as gour === VSpike-zzz is now known as VSpike [09:51] I'm confused how files can be in the removed, added and conflicts sections of bzr status? [09:51] command output at http://www.pastebin.com/m422b0b96 [09:52] Sorry that should be http://pastebin.com/m422b0b96 [10:06] Hi All. I have a problem with a bzr repository returning a "Revision .. not present in .." error, does anyone have the time to help me out with the problem? [10:20] VSpike: what is confusing? [10:28] lifeless: I don't understand what it is telling me. From my point of view, I have done nothing different other than change the contents of the binary files Bin/Geonix.dll and Bin/Geonix.pdb, which normally results in them showing as changed [10:28] I don't understand how to resolve the conflict and commit the changes [10:33] when I want to install bzr 'aptitude install bzr' it wants to install x-server and so on... ??? [10:33] I only need command line with bzr [10:33] any tips? [10:34] VSpike: so, being in conflict means bzr couldn't decide for you how to do a merge for you [10:34] VSpike: if you see the one file both deleted and added, it means someone had added them in parallel elsewhere, so you have the same file /name/ with two different histories, and you need to choose one [10:34] VSpike: use bzr mv and del to arrange the tree how you want, then bzr resolve NAME [10:35] enquest: uhm, its bzrtools I think [10:35] enquest: it uses graphviz or something, and that pulls in X [10:35] enquest: if you are using aptitude, try going in via the gui [10:36] sudo aptitude [10:36] then /, bzr, i [10:36] and then edit the actions list and change stuff [10:37] enquest: I've solved that problem on a debian server - just trying to remember how [10:37] this is a securtiy problem using bzr on your server... If you not good at managing servers you don't know these things [10:38] enquest: huh? [10:38] aptitude installs recommended packages by default? [10:39] luks: it's configurable [10:39] enquest: try "sudo aptitude install bzr --without-recommends" [10:39] ok I did not know that with apt-get you don't have that problem [10:39] VSpike, thanxs [10:39] enquest: or use the ncurses interface as lifeless suggested [10:44] lifeless: sorry if i'm being obtuse, but I can't see how it got to this state... [10:45] lifeless: I'm working in a single branch, doing modify/commit, modify/commit.. and occasionally modify/commit/push [10:45] lifeless: so there should have been no merges into this branch [10:46] Some sort of file name case wackiness, maybe? [10:48] Peng_: I wondered that, but they show the same in bzr stat at least [10:48] Yeah.. it's still possible though [10:49] The irony is, this is a binary generated by the build of a sub-project [10:49] I only check it in so that I can recreate a past situation exactly, because bzr doesn't allow me to connect the two projects yet [10:50] So if I delete it, it will just get regenerated [10:54] VSpike: could you pastebin the output [10:55] lifeless: of? [10:55] I just did "bzr mv Bin [10:55] I just did "bzr mv Bin\Geonix.dll Bin\Geonix.dll.old" and the same the .pdb file [10:55] But not sure I'm any better off [10:56] lifeless: you want bzr stat --show-ids again? [11:15] VSpike: again? [11:15] VSpike: anyhow, I'm heading off sorry [11:16] lifeless: I posted it back aways... [11:16] VSpike: perhaps Peng_ or someone else still awake can comment on a pastebin output for you [11:16] http://pastebin.com/m422b0b96 [11:17] so [11:17] to get conflicts, you _must_ have done a pull, or merge, or update [11:17] now http://pastebin.com/d49a67117 [11:17] lifeless: anyway I can check that in a log? [11:17] as for the delete + add pairs; simplest thing would be to save the copy you want to keep, bzr rm the new file, bzr revert PATH to restore the old fileid, then copy the one you want back in [11:18] bzr --version will list your log file [11:18] bzr commands are listed in the log [11:18] I must go though - good luck [11:18] thanks! [11:23] Arrgh, rc4 happened while I wasn't looking [11:24] :-) Is BB back up? [11:25] Guess not. [11:25] moin. [11:59] mwhudson: it seems that bzr developers have fixed my bug yesterday, and the fix is going to make it to 1.6rc4 :) [12:00] ignas: i/we found another bug that might mean a 1.6c5 :( [12:00] oh. What's the number? [12:01] ignas: https://bugs.edge.launchpad.net/bzr/+bug/259275 [12:01] Launchpad bug 259275 in bzr "pushing a non-stacking format into a non-repo bzrdir with a default stacking policy creates broken branch" [High,Triaged] [12:04] mwhudson: hmm, not sure I understand what operations I should be avoiding if I don't want to break things... [12:04] ignas: this bug is only likely to affect launchpad, realistically [12:04] should I not try pushing to my remote knit repository from my stacked repository for example? [12:04] no [12:05] no, don't do that, or no, no problem? [12:05] as in, you should be fine [12:05] pfew :) [12:05] english sucks [12:05] hmmm [12:05] bzr st segvs for me in my /etc! [12:05] that is very fun [12:05] kiko_: exciting [12:06] mwhudson, SPEAKING of segvs.. [12:07] #0 0xb7e54cbf in memcpy () from /lib/libc.so.6 [12:07] #1 0x08092895 in PyString_FromStringAndSize () [12:07] #2 0xb7778d4e in ?? () [12:07] from /usr/lib/python2.5/site-packages/bzrlib/_dirstate_helpers_c.so [12:07] mwhudson, I guess this is known..? [12:07] Bazaar (bzr) 1.5 [12:07] kiko_: not by me [12:08] okay, will try and file a bug then [12:08] i can imagine a corrupt dirstate tripping up the c parser or something [13:08] lifeless, ew, template for start-loggerhead seems broken :/ [13:08] * beuno waves [13:10] hi [13:12] beuno: the breadcrumbs branch is ready for a further review [13:13] pickscrape, cool. I'll take a look at it after my coffee :) [13:15] beuno: no rush, just letting you know :) [13:57] Could anyone point me at an explaination of when I need to use the record command when using a loom? [14:38] ok, if my bzr-svn checkout failed (ERROR: revision "blah" already present in "revisions"), is there anything I can do to work around it? [15:34] jam, building rc4 debs now :) [15:35] beuno: before you spend too much time, mwhudson wants an rc5 [15:35] I'd like to at least look at the bug first [15:35] jam, ah, heh, ok. I'll start looking intro scripting then [15:53] mwhudson: ping [15:53] You have a bug, but do you have a possible fix? [15:53] Even just an outline of the fix [15:58] how can I determine to which host bzr launchpad-login is trying to connect exactly? the --verbose flag doesn't show anything and the error says: ERROR: Connection error: while sending GET /%7Ecr3/%2Bsshkeys: (111, 'Connection refused') [15:59] seeing the url, I guess https://launchpad.net. I thought at first it might be the openid url, nevermind [16:01] cr3: default URL [16:01] BZR_LP_XMLRPC_URL=http://xmlrpc.launchpad.net/bazaar/ [16:01] you can set that in your environment, I believe, to override it [16:01] Oops, I'm wrong, it is https://xmlrpc.launchpad.net/bazaar/ [16:02] the 's' is there [16:12] jam: telnet xmlrpc.launchpad.net 443 works, but I'm still getting the same error message [16:13] jam: I then tried setting the environment variable, just in case, same thing === kiorky_ is now known as kiorky [16:27] Is bzr push really really slow over a network share if you have virus checking of network drives on? [16:32] possibly, I know I've had antivirus software cause locking problems for bzr before [16:54] cr3: are you behind a proxy? It is a known problem with python's xmlrpc implementation that it doesn't respect http_proxy [16:55] awilkins: packs or knits? Knits would probably be extra bad because we would touch lots of files [16:55] jam: Packs [16:55] though I could also see a repack of a .pack file causing issues if the software had to virus check the whole pack file [16:55] jam: It's rich-root-pack, 210MB total, largest pack 160MB [16:55] though it is all compressed data [16:55] awilkins: well, we might read *parts* of some files [16:56] which may cause the virus checker to read the whole thing? [16:56] So we might read 100k from your 160MB file [16:56] jam: I wonder if reading multiple regions of that large pack makes it check the whole file each time [16:56] and then your virus checker decides [16:56] it needs to read all 160 MB [16:56] I'll run it with filemon active next time [16:56] also, we may go back multiple times to portions of the file [16:56] which might trigger similar issues [16:57] (one read from 10-100, another at a later time 1000-1100 etc [16:57] I'm note sure it's the vchecker [16:57] I believe I tried it with the service stopped once [16:58] Anyhow, it's nearing 1700, and I need to catch my train [16:58] back-in-a-bit [17:01] kiko_: I just submitted a patch for the dirstate parser which should at least give a proper traceback rather than a segfault. [17:03] jam: I am behind a proxy but I don't have the http_proxy environment variable set and I have an iptables rule explicitly allowing connections to xmlrpc.l.n, bazaar.l.n and l.n [17:04] cr3: can you try it with "bzr launchpad-login -Derror" ? [17:04] that should give you a traceback that you can pastebin for me [17:06] jam: http://pastebin.com/d36c2c2ae [17:08] jam: just to make sure, env | grep -i proxy returns nothing [17:10] jam: also, I'm tailing the logs on the proxy and nothing is appearing when running launchpad-login [17:10] cr3: so, after the xml call, we then do an HTTP fetch, which *does* respect the http_proxy setting [17:10] And that is the point that is failing [17:11] The http fetch is going to https://launchpad.net/~user/+sshkeys [17:11] Try setting http_proxy and see if it works [17:12] I made a branch from a branch located on my local file system... I moved the branch I created and now I can't pull from the original branch... it's saying the parent is not accessible given a base and a relative path... is there a way to fix that? [17:13] jam: worked! [17:19] cr3: so it seems you got the xmlrpc stuff to go through without the proxy, but not https://launchpad.net requests [17:19] mxpxpod: 'bzr pull --remember /new/location' [17:20] jam: ah, thanks... I figured out I can also modify .bzr/branch/branch.conf [17:20] jam: but I figured there was a better way to do it [17:26] hi [17:26] i've just upgraded to bzr 1.5 and i'm getting an error when using the --use-existing-dir option now [17:27] bzr: ERROR: extra argument to command push: use-existing-dir [17:27] couldn't find any notes on the changes to this argument [17:28] this is for the push command of course [17:28] any ideas please? [17:29] is there a way to "force" bzr to invoke bzr-svn for a checkout over http? [17:30] I keep getting "bzr: ERROR: Transport error: Server refuses to fullfil the request" [17:30] alexreg: try it with '--no-plugins' [17:30] I would guess that a plugin is decorating "bzr push" and causing problems [17:30] Tak: "svn+http://" I believe [17:31] jam: now i get "bzr: ERROR: extra argument to command push: no-plugins" [17:32] alexreg: "are you using --no-plugins" ? [17:32] jam: perfect, thanks! [17:32] not "-- no-plugins" [17:32] i upgraded from v1.2 but it was occurring even then. so i'm not sure in which version it last worked correctly [17:32] jam: yeah [17:32] because '--no-plugins' is a global arg that is always parsed before commands are handled, so something weird is going on [17:32] alexreg: can you pastebin the last part of your ~/.bzr.log ? [17:33] sure. one min [17:35] jam: http://pastebin.com/m3f3f5e10 [17:36] the first is with no command line args, the second with use-existing-dir and the third with both use-existing-dir and no-plugins [17:37] alexreg: well when you did 'use-existing-dir' you didn't supply the '--' it is '--use-existing-dir' [17:37] similarly for '--no-plugins' [17:38] For example: [u'push', u'bzr+ssh://...', u'no-plugins', u'--', u'use-existing-dir'] [17:38] sorry. i *did* include the "--" when executing bzr [17:38] just not on IRC [17:38] That means you wrote "bzr push bzr+ssh://... no-plugins -- use-existing-dir [17:38] rather than [17:38] bzr push bzr+ssh:// --no-plugins --use-existing-dir [17:38] yeah that's what i did.... [17:38] alexreg: notice that you need '--' before the option, and no spaces [17:39] alexreg: not according to the bzr log file [17:39] What are you using as a shell? [17:39] hrmm could it be because i'm executing in powershell? [17:39] ^^ [17:39] alexreg: sounds like [17:39] Sounds like powershell is doing weird things to your command line [17:39] I don't know powershell myself [17:39] yeah probably [17:40] ok [17:40] putting the option in quotes seems to fix it [17:40] thanks :) [17:43] alexreg: bad PoS, :) [17:43] of course, PoS is a great acronym for it anyway :) [17:45] alfonsodg: is that the old and venerable *nix powershell, or the windows one? [17:45] LarstiQ: Windows [17:45] and alexreg left [17:45] I don't think alfonsodg knows :) [17:45] sorry for the double ping a l f o [17:46] bweh [18:22] has anybody encountered 'ERROR: revision "blah" already present ...' when checking out from a svn repo? [18:41] pygi! How goes cheezburger? === mw is now known as mw|lunch [18:51] pickscrape, sorry, will poke later [18:58] Hi LarstiQ [18:58] hey jbalint [18:59] LarstiQ: i came here a few days ago, with a problem with putty link on windows and aliases [18:59] jbalint: right, I remember that [18:59] LarstiQ: the problem is i am using non-22 port and the command executed is "plink.exe -ssh ...." and -ssh forces this to use port 22 :| [19:00] jbalint: is there no way around that? [19:02] LarstiQ: i havent looked in bzr code to see how it determines the command, but i do not have any solution thus far, except using paramiko with the port given [19:02] jbalint: is the -ssh needed on plink? And if so, can plink -ssh uses something else than port 22? [19:03] jbalint: if not then we would need to document that plink can only be used with port 22 I think :( [19:04] LarstiQ: it will work if i add -P on the command line, but this is saved in the alias. i'm not sure why -ssh overrides it. maybe i should file a bug with putty [19:04] LarstiQ: ok, i just checked, it seems to work if i put the port in the bzr+ssh url too [19:05] jbalint: is there a way we can query plink for what the alias expands to? [19:07] LarstiQ: not that i know of besides exporting it from the registry [19:08] LarstiQ: but part of the benefit is that you shouldnt need to do that because you can use the alias in place of 'host' for the plink/ssh command and they both work the same way [19:08] LarstiQ: do you know why the -ssh flag is needed? [19:08] jbalint: I do not, I hoped you would :) [19:08] -ssh -telnet -rlogin -raw [19:08] force use of a particular protocol [19:09] thats what plink.exe help says. [19:09] jam: do you know why we supply -ssh to plink? It seems to override non-22 ports in aliases [19:10] LarstiQ: well, my guess is to keep it from trying to telnet to the other location, at least what from jbalint says [19:11] jbalint: so if you just 'plink host.com' rather than an alias, does it do something other than ssh? [19:11] If so, then it sounds like removing -ssh, would mean that people would need to configure an alias for every machine they want to connect to [19:11] rather than "just working" [19:12] Personally, I don't like plink much, and just use paramiko [19:12] plink has a lot of weird bits [19:12] like not remembering the username in a saved session [19:12] etc. [19:12] well i just ran plink host.com and it does ssh [19:13] does paramiko provide any of the alias/session functionality of plink? [19:13] jbalint: and if you do plink host -P 23 ? [19:13] seems to support pageant [19:14] well i get connection refused :) dont have telnet running [19:15] jbalint: I'm thinking the -ssh/-telnet is to force a protocol when the autodetection for a port comes up with something else [19:15] LarstiQ: paramiko supports pageant, but no, doesn't provide aliases (that I know of). But bzr+ssh://user@host:port/ provides most of what you need. [19:15] jbalint: which is why we pass -ssh :) [19:15] LarstiQ: for most of my time, I used cygwin's ssh.exe [19:15] jam: afaics -ssh only helps if it's port 23 [19:15] LarstiQ: ah, I missed that part [19:16] i dont know if detection is based on port. with both of those protocols, the server sends some header info upon connect, right? so it could be based on that [19:16] jbalint: so, if you want to work out more details of how to use plink properly, I think we're happy to take patches, etc. I think plink just doesn't get a lot of support because the other solutions work, and in some cases work better. [19:16] (Like being able to prompt for a password when pageant doesn't have your key) [19:16] but you're passing -batch, thats why it doesnt prompt [19:17] jbalint: because if we don't pass -batch it hangs waiting for input because it can't connect to the terminal [19:17] so we would rather it *fail* and get on with it [19:17] rather than hang indefinitely [19:17] ol [19:17] *ok [19:17] interestingly enough cygwin's ssh.exe can connect to the terminal, so I don't really understand *why* plink cannot === kiko_ is now known as kiko [19:18] i'll try to get some ideas on plink and ssh. thanks alot for the info so far [19:18] jam: cool. unfortunately it looks like I've got a corrupted tree.. somehow. [19:19] kiko: well, I can say that we truncate + write (I *think* in that order) so if you somehow managed to do one without the other (power fail, kill -9, etc) it would be possible to have an inconsistent dirstate [19:19] kiko: I posted to the bug a workaround using 'bzr co --lightweight' [19:19] which is also in the bug that yours is a dup of [19:22] jam: oh, my bug is a dupe? I searched quite a bit for it [19:23] kiko: the problem is that some platforms segfault others give MemoryError [19:24] kiko: bug #186014 is the same bug [19:24] Launchpad bug 186014 in bzr "MemoryError on diff/commit due to corrupted dirstate" [High,Fix committed] https://launchpad.net/bugs/186014 [19:28] ah! [19:28] how interesting [19:28] kiko: yeah, the problem is effectively passing a negative number to malloc [19:28] I assume some platforms cast it to unsigned [19:28] and get a malloc failure [19:28] others just segfault [19:28] as you saw :) [19:37] Erk. segfault? That sounds bogus. malloc is defined to take size_t, which is unsigned... === mw|lunch is now known as mw [19:49] aargh, had to reboot, now I have to start the svn-import over again...and it was almost done, too. Looks like another week until I can play with bzr... [19:56] fullermd: well, it is PyString_FromStringAndSize, I don't know if it strictly uses malloc under the covers. It might be a PyMalloc which could have more issues, etc. [19:56] Toranin: I believe it starts from where it left off [19:58] jam: I'll try it, but I don't think it got killed cleanly so we'll see how well it goes === jakobb is now known as grutte_pier === mtaylor_ is now known as mtaylor [20:39] jam: i think this might be maybe sort of a fix: http://pastebin.ubuntu.com/38892/ [20:40] it makes test_sprout_stacking_policy_handling fail, but i'm not sure that's a bad thing [20:40] mwhudson: does that ignore the value or always create a new one? [20:40] mwhudson: specifically, what fix are you looking for [20:40] should 'bzr push lp:' create a new branch format [20:40] so it can stack [20:40] no [20:40] or just ignore the fact that it was auto-requested to stack [20:41] right [20:41] _my_ idea, not talked this through with anyone else [20:41] would be for the default stacking to only apply when the formats allow stacking [20:41] mwhudson: sure, I'm a bit hesitant about the whole auto-stacking anyway, but if we at least required the user to be using a stackable source, then there is *some* good. And it sure would be shiny [20:41] otherwise people are going to be Surprised(tm) [20:42] mwhudson: well, they might be surprised to have auto-stacking anyway... [20:42] jam: well, if there are no format surprises they hopefully won't really notice [20:43] mwhudson: well, what about when --1.6 is the default format? [20:43] other than the fact that initial pushes take less time [20:43] I suppose as long as it is only stacking within the LP universe [20:43] there isn't a chance for data loss [20:46] another possible fix for 1.6 would be to disable the auto-stacking stuff somehow [20:47] mwhudson: well, auto-stacking was approved for 1.6, I'm not trying to break it [20:47] I think we probably want a fix that means lp doesn't have to do something like check the bzr client version [20:48] mwhudson: Though, what if the branch format is 1.6 and _stack_on is set, will it still stack (with your patch)? [20:48] jam: not sure [20:48] i guess i should check [20:49] mwhudson: so I would probably say the best fix is to have the check for the stack_on policy know if the source supports it [20:52] jam: it seems it does still respect the stacking policy with my fix [20:52] jam: and it fixes my testcase too, although it still prints [20:52] Using default stacking branch b1 at bzr+ssh://localhost//home/mwh/canonical/checkouts/trunk/sourcecode/t/ [20:53] even though it in fact doesn't use it, which is a bit bogus [20:53] mwhudson: isn't telling them that a good thing? Or it says that and then ignores it [20:53] it says it, then ignores it [20:53] ok, that is a bit bogus :) [20:53] and considering all pushes creating new branches will say that ... [20:55] Makes me wish I had reviewed the repository policy patch myself [20:55] It certainly seems to have made following the code logic a bit more complex [20:56] mwhudson: what about passing in "default_format_supports_stacking" to the "determine_repository_policy" function? [20:56] or ... "source_format_supports_stacking" [20:57] jam: i think that would probably be more clear than hacking around trying to work with the data that's there already [20:58] I'm a bit confused as to where things are happening ATM [20:58] It seems that both the branch format and the repository format need to support stacking [20:58] and they both figure that out at different times :( [20:58] oh that's the other fun thing [20:59] mwhudson: so it sounds like the specific bug is that the repository figures out it needs to be stacked [20:59] but the branch does not [20:59] in my test case, the broken branch has a stacking compatible repo but not branch [20:59] jam: yes [20:59] so you end up creating a target where the repo thinks it is stacked [20:59] and doesn't copy revisions [20:59] but the branch doesn't [20:59] so it doesn't include the reference [20:59] ugh. [20:59] yeah, you even end up with a 'stacked_on_url' in branch.conf [20:59] but the branch doesn't look at it, of course [21:00] I'm very hesitant to add a kludge on top of the existing kludge [21:00] right [21:01] especially when all the people who *did* the work are on vacation [21:01] I'm tempted to disable the whole lot just to get a clean 1.6 out the door [21:02] +1 from me [21:02] which would (in a way) show the colossal blunder of delaying 1.6 to get Stacked working [21:02] i guess i'd like to hear what jml and thumper say [21:02] the whole reason it was delayed was stacking [21:02] round and round we go :( [21:02] i think everyone realizes what a terrible idea that was now :( [21:03] Well, if we disable it, and release 1.7, we can pretend... [21:04] mwhudson: so why in your example [21:04] doesn't it find that the branch format needs to be upgraded [21:04] consider line 1093 of bzrdir.py [21:04] isn't it deciding the Branch policy based on the repo policy? [21:05] mwhudson: in other words, pushing to lp would always create 1.6 branches and repos [21:05] which you don't really want [21:05] but at least they wouldn't be *broken* [21:05] yes, that would be almost as bad [21:05] um, i did look into this but i forget [21:09] hi guys! [21:09] can I ask a little doubt I have? [21:09] ? [21:10] I was working with two branches, then I merged one into the other [21:10] anyway, i've only just got up, so i need to breakfast and stuff before i can really think clearly... [21:10] and together with the merge I did a change in a file [21:10] after that I did several commits [21:10] now I want to revert the change done in the merge commit [21:10] but not the merge itself [21:11] is that possible? [21:11] I use bzr 1.5 [21:13] mwhudson: well 'bzr branch' creates a new format branch under those conditions [21:13] mwhudson: I think the problem is "bzr branch" versus "bzr push" where "branch" uses .sprout() and "push" uses ".clone()". [21:13] mwhudson: I think martin fixed up 'sprout()' but didn't fix 'push()' [21:13] sorry, .clone() [21:13] jam: hmm, so the bug isn't so bad in bzr.dev it seems, we don't create a branch with mainline ghosts [21:14] jam: that sounds right (about clone vs sprout) [21:14] vreixo: well, you can 'bzr revert' just the file [21:14] jam: but there's still the default branch/stacked repo thing [21:14] vreixo: but generally tweezing apart what was done by the merge and what was done by *you* is difficult [21:14] which is why we don't let you merge with uncommitted changes [21:14] and recommend that you only do enough to get the conflicts resolved before merging [21:14] jam: yeah, that's the problem [21:15] vreixo: so doing "bzr revert -r XX file" isn't fine-grained enough? [21:15] jam: no it isn't [21:15] mwhudson: sure, it automatically upgrades when you have a target that says you should stack [21:15] as it reverts the changes in the merged branch [21:15] which doesn't sound like what we want. [21:15] jam: right [21:15] vreixo: so the same file included both [21:16] mwhudson: and is a problem because we *do* want to auto-upgrade if the user says "--stack" [21:16] and all the other crazy things that have gone into the policy idea [21:16] mwhudson: I really feel like some of this wasn't well thought through [21:16] jam: what is strange is that I can see the diff with only the changes I want to revert, but I have no way to revert it [21:16] it would be great to have such feature [21:16] vreixo: how do you get that diff? [21:17] I would guess you can do "bzr merge . -r XXXX" with the same parameters as the diff [21:17] jam: indeed, and i don't think there's any way to not do the suggested stacking at the moment :/ [21:17] jam: gee, you think? [21:17] vreixo: well, reverse them [21:17] vreixo: so if you do "bzr diff -r 10.1.1..11" to get the diff, do "bzr merge . -r 11..10.1.1" to revert it [21:18] mwhudson: And I'm extra sad because everyone left this week. Why did they all pick the *same* week, and why did we pick it to be the release week.... [21:18] mwhudson: I might just punt... but I *really* wanted to force 1.6 out the door [21:19] jam: i would support dropping/disabling looking at the default_stacked_on url [21:19] jam: with bzr diff -r366..364.1.29 [21:19] jam: and releasing everything else [21:19] jam: oh, let me try! [21:19] vreixo: so "bzr merge . -r 364.1.29..366" [21:19] mwhudson: good enough [21:19] jam: i so very don't want to have to implement client version blacklisting in launchpad [21:20] mwhudson: yeah, that would be extra crummy [21:21] jam: bad thing! [21:21] after bzr st I get an error: [21:21] jam: bzr: ERROR: exceptions.KeyError: 'pop(): dictionary is empty' [21:23] * mwhudson afk for a few minutes [21:24] vreixo: you're using bzr 1.5, right? [21:25] yes [21:25] 1.6 won't give you that, and you can "bzr revert" to get back to where you want to be [21:25] vreixo: actually just "bzr revert --forget-merges" [21:25] jam: it was my problem [21:25] what I want was to do bzr merge . -r 366..364.1.29 [21:25] but I did bzr merge . -r364.1.29..366 [21:26] anyway, the error is ugly,,, [21:26] vreixo: sure, the error has been fixed in future versions [21:26] good! [21:26] and 'bzr revert --forget-merges' will get rid of it, though you want "bzr revert' right now to get back to clean state [21:27] bzr revert worked properly [21:27] then I did the merge with the correct revision order and all is ok now [21:27] thanks! [21:27] one more question, can I do that with only one file [21:28] or I need to revert later the files I don't want to revert originally? [21:29] If I have an ubuntu server I want to publish a bzr branch to, which sftp program should I use? Or is there some package I should install that makes the server a great repo for bzr projects? [21:29] vreixo: I believe "bzr merge filename -r 364...." should do what yo uwant [21:29] hendrixski: I would probably just install openssh server [21:30] hendrixski: and possibly 'bzr' itself [21:30] if you want to be able to "bzr push bzr+ssh://server/" [21:30] There are other packages you might consider (trac+bzr, loggerhead, etc) but they all require a bit of setup. [21:30] jam: anyway it is fixed now. Thanks! [21:30] vreixo: Did the 'bzr merge filename' work for you? [21:31] jam: did not test, I had already reverted the other files... [21:31] jam: yeah, I'm not looking for setup trouble. just openssh does it eh? and I can push fun new branches to it whenever I want? [21:32] hendrixski: 'openssh' server and not client (of course), but yeah, it will provide sftp support [21:32] I would recommend installing bzr as well [21:32] but that isn't required [21:33] k, actually, who knows, I might occasionally need to tweek something while on the server itself, bzr might be good there [21:33] I would be able to access whatever bzr project is uploaded to the server, right? [21:34] hendrixski: generally [21:34] There is a lot of possibilities here [21:35] * hendrixski tries uploading the project [21:35] mwhudson: what do you think about: http://pastebin.com/m49e6e411 [21:36] jam: looks good to me [21:36] jam: it will make a small pile of tests fail [21:37] mwhudson: yeah, but I'll take care of those :) [21:38] jam: my vote doesn't fully count though :) [21:38] mwhudson: well, when 4/6 core devs are AFK, there are only 2 of us to approve [21:38] so non-core's get a lot bigger say [21:38] * LarstiQ plays innocent bystander [21:39] I guess there are a few that still have an official BB vote [21:39] like LarstiQ and jelmer [21:39] jam: yay! it worked! I needed python-paramiko first, but I got it. Thanks for spotting me... it's the end of a work day [21:39] And I abuse them as much as I can right now [21:40] jam: I have not followed 1.6 development, considering its delay I gather some people were invested in getting stacking out. [21:41] it's a shitty situation you/we are in, that's for sure. [21:41] LarstiQ: well it is mostly just some of the auto-detection stuff that is acting badly [21:42] so I think if I just remove it, we can still have stacking [21:42] the user just has to request it [21:44] mwhudson: there is another possible fix [21:45] only set the "default_stacked_on" value when the development focus is in a format that supports it [21:45] mwhudson: what do you think about that? [21:46] (with the other fix being to have .clone() upgrade the branch the way .sprout() does.) [21:47] I'm not 100% happy with it, but I do feel some of this is LP's fault, and not bzr's. [21:47] LP is getting a bit pro-active, when it may not really be best for the users. [21:47] mwhudson: or it could be a project/user setting === kiko is now known as kiko-afk [21:50] jam: certainly with hindsight we shouldn't have tried to get stacking-by-default working at the same time as just getting stacking working [21:51] jam: but in general, in the long term, i think it's a really good idea for bzr push to dtrt [21:51] jam: it's not like you want to be typing bzr push server:/path/repo/branch --use-repo server:/path/repo is it? [21:51] Now, if only it were entirely clear what the rt is ;) [21:51] mwhudson: well you could have it a project setting, etc [21:51] jam: yeah, i guess so [21:52] mwhudson: or as I mentioned, just notice that the dev target is in a valid format [21:52] thus it is valid for users' to get upgraded if they aren't yet [21:52] as the *project* is using an upgraded format [21:52] wel... [21:52] that still sounds pretty icky to me [21:53] mwhudson: no more icky than doing it to *all* projects [21:53] mwhudson: Also, I'm not planning on propagating this to bzr.dev [21:53] so you're still going to have a bunch of clients dying [21:54] but I guess you can hold off on rolling out the feature in LP [21:54] and you won't have to worry about a broken old client [21:54] old *released* client [21:54] makes sense [21:55] i think we can be a bit less forgiving for people using out-of-date versions of bzr.dev [21:59] jam: btw, not sure if this is generally known, but the stacking policy will only be presented for a very few projects in the initial rollout [21:59] (launchpad and storm, basically) [21:59] mwhudson: sounds like a whitelist to me :) [22:00] Just not one that you expose to the user yet [22:02] mwhudson: what is the bug # again? [22:03] bug #259275 [22:03] Launchpad bug 259275 in bzr "pushing a non-stacking format into a non-repo bzrdir with a default stacking policy creates broken branch" [High,Triaged] https://launchpad.net/bugs/259275 [22:03] found it [22:05] moin [22:05] mwhudson, LarstiQ, beuno: Any chance you could look over the patch I just sent to the mailing list? [22:06] lifeless: morning. I have a patch to review for 1.6 [22:06] rc5 .. :( [22:06] jam: ok [22:06] jam, sure. I'll look at it, however useful that may be [22:06] the Subject is: Disable automatic stacking via Bzrdir control.conf [22:06] beuno: well, since lifeless is awake now, it can wait [22:07] lifeless: I'll be back in about 15 min, need to pick up my son [22:07] basically, something needs to be fixed, and I went the conservative "disable the feature" route [22:07] * beuno lets leaves it to the experts [22:10] jam: I'm looking for it [22:22] jam: have you chatted with abentley ? [22:34] lifeless: he is on vacation along with martin and spiv [22:34] jam: oh wow [22:34] ENOTEAM [22:34] yeah [22:34] quick [22:34] not the best time to be working on a big release :) [22:34] lets do stuff [22:34] :) [22:34] party! [22:34] get btree in core, right? [22:34] gc-as-default, nownownow [22:35] actually, I'm just reviewing your changes [22:35] You are aware I don't want to join the trees right? I just want to do a code drop [22:35] lifeless: really? [22:35] Why not join them? [22:35] I plan to keep on changing and tweaking blooms etc [22:36] and the format hook in stuff and so on is just ugly, it should not merge in , it should be refactored in core so its not needed [22:36] beuno, mwhudson, jml: Anything else for 1.6rc5 I'd really like to not need a rc6 [22:36] 0730 for jml [22:37] well, nobody has said anything on the ML, but it seems that every day someone drops yet another thing [22:37] jam, I've been using it without any problems. Of course, I haven't done any weird contortions with it [22:38] well, I'll put together 1.6rc5, and just not make it a final announced thing until more people have woken up [22:39] this bugfix isn't quite as critical as the rc4 one [22:46] jam: if you feel strongly we should do a merge, we can, but I wasn't thinking of this as something we'd incrementally merge from, I was thinking we'd instead be dropping in a new different format if we add blooms later [22:46] (index format that is) [22:48] lifeless: well, it is really only a couple of test cases, and then one or two files, I guess it doesn't really matter either way. [22:48] I can always use 'add --file-ids-from' rather than doing a merge [22:48] I can't find your mail [22:48] ah yes, totally disconnected thread name :P [23:02] rockstar: you wanted to chat, I don't think the text got past your fingers though [23:03] lifeless, I was trying to get the cscvs tests to run. [23:04] make check? :) [23:05] lifeless, ah, was using test_all, and one of the tests was hanging. [23:06] got an onboard rng? [23:07] reprhasing - where was it hanging :) [23:08] testInitProtocolBadHost [23:17] rockstar: check your dns etc [23:18] What would I check for? It works. [23:18] Maybe I'm missing something specific? [23:18] mwhudson: thumper seems to be awake [23:18] LarstiQ: eh? [23:19] rockstar: look at what the test does [23:20] mwhudson: hmm, I thought you wanted to consult with him or jml. [23:20] LarstiQ: i wanted them to see the conversation in here [23:20] ah. [23:20] LarstiQ: but thumper told me (somewhere else) that he was reading backlog [23:20] mwhudson: I should not try to meddle with other's afairs. [23:21] and go to bed, really. [23:21] LarstiQ: no worries :) [23:21] night LarstiQ [23:21] g'night [23:21] night thumper :) [23:21] and mwhudson (and the rest) === kiko-afk is now known as kiko [23:29] vila: ping [23:29] beuno: indeed it is [23:29] beuno: I was muttering about 1.6.1 :) [23:31] lifeless, what is? I've been jumping from screen to local irssi, so I'm missing a lot of context :) [23:31] beuno: 1.6 w/ loggerhead.conf [23:33] lifeless, ah, so you're proposing a 1.6.1 release with the start-loggerhead fixes in it? That seems like a good idea [23:33] beuno: I'd like http://squid-cache.org/bzrview/ not to look like vomit :O) [23:34] beuno: and yeah, the admins there, like admins everywhere, tend to prefer running releases [23:34] lifeless, agreed. I'll bump it up to the top of my list and fix that tomorrow. [23:34] beuno: if you wanted to add the options for prefix and port to serve-branches, we'd be happy to switch to that too :) [23:35] lifeless, yeah, I'll actually do that too. I'll file a bug, and add a milestone so I don't forget stuff [23:35] sweet [23:35] * beuno goes walk the dog before it explodes [23:36] mwhudson, btw, I'd like to talk about our next release at some point. Is it going to be 1.7? (short cycle) 1.8? I haven't created it yet, and I keep forgetting to ask at time you're actually around [23:37] beuno: so my (vague) idea about this was that a bit before each bzr release (say around the beta) we decide if it's worth doing a loggerhead release [23:38] beuno: for 1.7, i'd be a bit surprised if we get enough done to be worth it === TheMuso_ is now known as TheMuso [23:39] mwhudson: release often [23:39] beuno: how did the 'scripting' attempt go today? [23:39] I don't see a doc patch yet :) [23:40] Poor beuno :) [23:41] I just bring it up because I have an rc5 tarball, which may make it to an upload if jml and thumper don't have anything else to say to me [23:43] jam: I'd rather see 1.6 get out [23:44] anyone know when jml might wake up? [23:44] mwhudson, ah, ok. So we just fix bugs until we decide on a release? [23:44] jam, no scripting today. Didn't get to 3/4 of the things I was planning to :( [23:45] beuno: yeah, i reckon so [23:45] mwhudson, fair enough [23:45] beuno: though as lifeless says, our threshold for 'worth it' should be pretty low [23:45] I'm off to a long and painful dinner then. bbl! [23:46] mwhudson, agreed. Let's try and not delay it for more than 2 months or so [23:48] I'd do it monthly with bzr [23:48] just because [23:48] releases -> visibility, improvements etc [23:52] lifeless: pong [23:52] vila!!!! [23:52] :D [23:53] vila: when do you start? [23:53] in 56 hours ? :-D [23:53] LOL [23:56] lifeless: august 22th at dawn, until then I'm still full, but what was your ping for ? [23:56] curiousity :) [23:56] ok :) [23:56] man too much homepage wiki spam [23:56] I'll go to bed then, see you soon... [23:57] gnight!