/srv/irclogs.ubuntu.com/2008/06/07/#bzr.txt

bpetersoncould the problem be in unlocking?00:01
=== kiko is now known as kiko-afk
lifelessyes00:06
lifelessor some interaction00:06
lifelessplease file a bug00:06
bpetersonok, will do00:07
bpetersonthanks for the help00:07
beunoyay!  loggerhead revision view down from 2.9sec to 0.200:46
* beuno commits00:46
bisterIs there a way to configure a repository to accept only signed commits?01:07
=== tro|| is now known as tro
lifelessbeuno: nice01:31
lifelessthatch: hi; you might have an answer to this... is there a good, low-dependency python IR/text indexer around ?02:21
thatchnot aware of one... but that's not an easy problem to solve (especially if you need multilingual stemming)02:22
thatchwhat do you need one for?02:23
lifelesssearching bzr repositories02:24
lifelessyou know bonsai for instance, or fisheye02:24
thatchok02:25
lifelessI don't see why the core storage should be the web apps domain02:25
lifelessI can easily imagine nice text clients02:25
thatchI think I looked at Lupy and PyLucene a while back but haven't particularly used either02:26
beunoargh, loggerhead on LP slowly dying again...  :(02:26
lifelessbeuno: when can we start deploying your zpt branch02:27
lifelessignoring fancy css etc its better already02:27
lifelessthatch: have you seen the template engine discussions going on here02:28
beunolifeless, I'm mainly doing some cleaning, so, if I put a good amount of hours this weekend, I can probably have something up for review on your monday morning. Not sure if mwhudson__ will have time to review it though02:28
lifelessI imagine it will be a priority for him :)02:30
=== tro|| is now known as tro
beunowell, I'll make sure first thing monday, to do any tweaks needed02:31
thatchlifeless: nope, I don't think I've been in #bzr for a week.  I can check the logs, was it today?02:31
beunoI also cleaned up all the deprecated methods, so it won't be hanging from a thread everytime bzr gets updated on LP02:32
beunolifeless, css and all visual goodness is delayed til we know what 2.0 will actually look like, so we can have something accordingly02:41
beunobasically, colors and some other visual elements will change a bit from the last draft02:42
beunobetter CSS should make rendering faster too. There are a lot of areas we can still easily improve performance-wise02:42
beunoI even have an evil idea to get rid of the sqlite cache completely, but I still have to go over it with mwhudson__02:43
* beuno commits, pushes, and goes to dinner02:54
lifelessthatch: basically the loggerhead template enginge is largely why its slow03:35
lifelessbeuno knows more03:35
lifelessI think they looked at a couple of others but found zpt is actually leanest/fastest03:35
lifelessbeuno: I have been encouraging removal fo the cache for a while ;P03:36
=== tro|| is now known as tro
toyto1hello guys, where I can download a paramiko?03:56
spivtoyto1: http://www.lag.net/paramiko/04:01
toyto1thanks spiv, got it already :)04:03
spivtoyto1: great :)04:03
=== tro|| is now known as tro
keirhow impossible would it be to add custom diff support to bzr? for e.g. storing XML files where custom diff / merge handlers must be used and bzr should not interpret the data05:36
toyto1guys i run this in my local computer06:05
toyto1bzr init-repo --no-trees sftp://toytoy@192.168.2.10/home/toytoy/repositories/06:05
toyto1bzr init sftp://toytoy@192.168.2.10/home/toytoy/repositories/testing06:05
toyto1then in the other computer I try06:06
toyto1bzr checkout sftp://toytoy@192.168.2.10/home/toytoy/repositories/testing testing-local06:06
toyto1how can i checkout the code or the whole testing project scripts?06:07
toyto1when I try to go to $PWD/testing-local/ i thought the scripts of the project will be residing in there06:07
toyto1how to do that?06:07
=== mwhudson__ is now known as mwhudson
lifelesskeir: we have that06:19
lifelesskeir: we disambiguate delta-storage and user-diffs06:19
lifelessdelta storage is currently always a binary-safe line orientated delta06:20
lifelessbut user diffs are pluggable06:21
lifelesstoyto1: init creates a tree or branch, it doesn't add files06:21
lifelesstoyto1: you need to:06:21
lifelessdo a checkout06:21
lifelesscopy your files in06:21
lifelessdo bzr add06:21
lifelessbzr commit06:21
lifelessthen in your testing-local checkout you can do bzr update and it will get the files06:22
toyto1lifeless: let's assume that there are 3 computers involve where the sftp:sftp://toytoy@192.168.2.10/home/toytoy/repositories/ would be the server that has the script repo06:23
toyto1let's say in my local pc that has the scripts located in /home/www/testing/*where my scripts of project*06:24
toyto1and i'm on that directory then issuing this command to server06:24
toyto1bzr init-repo --no-trees sftp://toytoy@192.168.2.10/home/toytoy/repositories/06:24
toyto1and06:24
toyto1bzr init sftp://toytoy@192.168.2.10/home/toytoy/repositories/testing06:24
lifelessthat will have made a branch at sftp://toytoy@192.168.2.10/home/toytoy/repositories/testing with no commits in it06:24
lifelessyou can run 'bzr log sftp://toytoy@192.168.2.10/home/toytoy/repositories/testing' to see this ;P06:25
toyto1i see i'll try06:25
toyto1lifeless: let's say at first i'm going to cd /home/www/testing06:26
lifelessit doesn't matter where you cd to06:26
toyto1I won't do bzr init myrpoject anymore right?06:26
lifelessinit URL only affects URL06:26
toyto1instead i'll use this06:26
toyto1bzr init-repo --no-trees sftp://toytoy@192.168.2.10/home/toytoy/repositories/06:26
toyto1in that way, i want to decentralized the scripts of the project. did I follow the idea?06:26
lifelessI think you are confused about what init does06:27
lifelessit creates an *empty* branch, it does not *add your data to it*06:27
toyto1lifeless: can you do me a favor so that I can clearly understand it, can you tell me step by step with it involving the06:28
toyto1bzr init-repo --no-trees sftp://toytoy@192.168.2.10/home/toytoy/repositories/06:28
toyto1command06:28
lifelesstoyto1: where are your existing scripts06:28
toyto1my friend told that in that way, we can decentralized the scripts06:28
toyto1okay06:28
toyto1let's say here in my local pc06:28
toyto1it's in06:28
toyto1 /home/www/testing06:29
lifelessok06:29
lifelesscd /tmp06:29
toyto1ok06:29
toyto1then06:29
lifelessbzr checkout sftp://toytoy@192.168.2.10/home/toytoy/repositories/testing06:29
lifelesscp -a /home/www/testing/* .06:29
lifelessbzr add06:29
lifelessbzr commit -m 'import scripts'06:29
lifelessoh hmm, missed a command06:29
lifelessbzr checkout ..06:30
lifelesscd testing06:30
lifelessthen cp -a06:30
lifelessand so on06:30
toyto1let me try :)06:30
keirlifeless, is it possible to tell bzr to never merge? or to use external merge programs?06:30
lifelesskeir: the former not as such; the latter I think so, or at least, one can write a plugin to enable that06:31
lifeless(which is not quite the same thing, I know)06:31
keirhmm, ok. i am envisioning a system where a textual merge is strictly incorrect and should never be attempted... so bzr needs to be extended to do this?06:32
PengThere's an extmerge plugin.06:32
lifelessI believe we have all the necessary machinery06:32
Peng(I think that's its name.)06:32
lifelesssome assembly required06:32
keiryup, ok.06:33
lifelesswhich is to say you can get what you want without patching bzr itself, or deep voodoo06:34
lifelessbut I may be wrong :P06:34
keiralright. it's ok if i have to patch bzr, i was just curious06:34
lifeless:)06:35
toyto1lifeless: it says06:38
toyto1Committed revision 1.06:38
toyto1after issuing the bzr commit -m 'import testing scripts'06:38
lifelessright06:38
toyto1and then what's next after it?06:38
lifelessnow, go somewhere you want to get a new copy of the scripts - your third machine06:39
toyto1lifeless: okay let's say in this computer again but in different directory06:39
lifelesssure06:40
lifelesscd there06:40
toyto1lifeless: let's say in my /home/mypc/Desktop/repo <- im here now06:40
lifelessand do bzr checkout ...06:40
toyto1ok trying...06:40
toyto1wow it's there already ;)06:41
toyto1and now since i'm in this director /home/mypc/Desktop/repo/testing06:41
toyto1let's say i'll edit test.txt06:41
toyto1after I will bzr commit -m 'i did edit test.txt'06:42
toyto1will it automatically sync with the scripts from the server?06:42
toyto1or update that script also?06:42
lifelessit will write to the database on the server06:42
lifelessin a file in .bzr there06:43
lifelesson the other machine, where you have done bzr checkout, you can do 'bzr update' to sync06:43
toyto1lifeless: wow ;) I get it thank you so much :)06:44
toyto1now i can bzr diff sftp://toytoy@192.168.2.10/home/toytoy/repositories/testing too right?06:44
toyto1hmm it doesn't return or say anything since I edited and commited one of the file there06:46
toyto1after issuing bzr diff sftp://toytoy@192.168.2.10/home/toytoy/repositories/testing06:46
lifelessyou can just do 'bzr diff'06:46
lifelessand it will tell you whethe ryou ahve edited anything or not06:46
toyto1lifeless: it doesn't tell anything. Again, i tried modifyng one of the scripts. But after modifying it, when i issue bzr commit -m 'modifying the 3rd script'06:48
toyto1it goes to the server opening sftp06:48
toyto1then updates the script and says06:48
toyto1Commited 306:48
lifelesssure06:48
lifelessthats what I would expect06:49
lifelessmodify the script but don't commit06:49
lifelessthen run 'bzr diff'06:49
toyto1ah i'll try06:49
toyto1ah i see so lifeless, it will  show bzr diff if not yet commited right?06:50
lifelessyes06:51
toyto1hence if commited, then it will update there and finalize it.06:51
lifelessis that what you wanted to know, or something else?06:51
toyto1ah i see, thanks lifeless...06:51
toyto1yeah that's it06:51
toyto1when I try to unlink test.txt06:51
toyto1then bzr diff it shows the contents06:51
toyto1and says it was removed...06:51
toyto1then when i issue bzr commited -m 'removed test.txt'06:52
toyto1it did open a log file06:52
toyto1then how other developers would see that log?06:52
lifeless'bzr log'06:52
lifelessalso 'bzr log -v'06:52
toyto1bzr diff sftp://toytoy@192.168.2.10/home/toytoy/repositories/testing06:52
toyto1ah i see06:52
toyto1so bzr log lifeless, underneath to it, it does go to the server and gets information on their right, then it will return back to the user by just that 'bzr log'06:53
lifelessyes06:53
lifelessif they do not have a checkout you can do 'bzr log URL'06:54
toyto1bzr log URL (URL can be from sftp)? because I found most examples using http06:54
lifelessyes06:55
toyto1hmm lifeless back to the /tmp/testing directory06:56
toyto1when i try bzr log sftp://toytoy@192.168.2.10/home/toyoy/repositories/testing06:56
toyto1it says06:56
toyto1onbzr: ERROR: Not a branch: "sftp://toytoy@192.168.2.10/home/toyoy/repositories/"06:56
lifelessyou made a spelling error I think06:57
lifelesstoyoy is not how you spelt it earlier06:57
toyto1hehe yeah06:57
toyto1lifeless: 0-0 wow ! :)06:58
toyto1love it, thanks for your help. I understand it now. my friends tutorial seems to be chatty and confusing x(06:58
toyto1thanks for your brief tutorial. I love it ;)06:58
lifelessmy pleasure07:00
gourfinally, svn-1.5 next week07:38
gour'new' life for bzr-svn07:39
=== emgent_ is now known as emgent
lifelessfinally09:00
lifelessI have removed the last weave_store reference09:00
nxvlhi09:22
nxvli'm having problems uploading to lp's bzr09:22
lifelessgo on09:22
nxvli'm trying to bzr push lp:terminator09:22
nxvlas it says on the code page09:23
nxvlbut it's trying to upload via http09:23
nxvlwhich is not working09:23
lifelesshave you told bzr your lp username ?09:23
nxvland i do that how?09:24
Pengbzr launchpad-login09:24
nxvlwith bzr whoami?09:24
* nxvl tries09:25
nxvlwoohoo09:25
nxvlthanks09:25
nxvli didn't knew about the new bzr changes09:25
nxvli didn't upload anything since "bzr push bzr+ssh"09:25
nxvlthanks09:25
* nxvl HUGS lifeless and Peng 09:25
PengYou could've still manually done that.09:26
Penglp: URLs are just simple shortcuts.09:26
PengThey translate to http if you're not logged in, or bzr+ssh if you are.09:26
nxvl:D09:26
nxvlthnz09:26
nxvlthnx09:26
=== gour is now known as gour|afk
=== pmezard is now known as pmezard|afk
mathrickhiya, how do I add subtrees to a branch?10:56
mathrickI have it in rich-root-pack already10:56
mathrickmathrick@hatsumi:~/elisp$ bzr join --reference dvc12:03
mathrickbzr: ERROR: Cannot join dvc.  Trees have the same root id.12:03
mathrickhuh?12:03
mathrickthey're most definitely two different trees12:04
LarstiQbut their root ids could be the same12:05
edreamleoHello all.  bzr version numbers after merges are causing great confusion with the Leo and IPython projects.  Somebody on the Leo project said "if everyone starts with rev 505 and does some stuff and commits on after another you can't all get 506." which makes sense to me.  Is this issues documented anywhere?  If not, I think you could help lots of people, including me, if you did so.12:05
PengWhat?12:06
mathrickLarstiQ: howso?12:06
mathrickedreamleo: no, each of the trees will have its own rev 50512:07
mathrickdepending on how you merge, the other "505s" will end up as different revisions in your tree12:07
mathrickrevno is only meaningful for a single tree12:08
mathrickwhat matters cross-tree is that the revisions are the same12:08
LarstiQmathrick: before there was rich root support, all the root ids (fileid of /) were TREE_ROOT12:08
mathrickLarstiQ: oh12:08
mathrickLarstiQ: how can I change that?12:08
LarstiQmathrick: import bzrlib.branch; bzrlib.branch.Branch.open('.').basis_tree().path2id('/')12:08
mathrickthe top-level repo is under my control12:09
LarstiQmathrick: hmm, been a while12:09
* LarstiQ knows how to set if through the bzrlib api, but not sure on what the procedure is in converting an older branch12:10
edreamleomathrick: it seems that rev numbers aren't documented.  It would be "soothing" to newbies if we could understand where rev numbers like 507.2.2 came from.  True, bzr log does show the renumbered branches, but I think a discussion in the docs somewhere would help.12:10
LarstiQedreamleo: revnos are determined by the lefthand side ('mainline') of the revision DAG of a branch12:12
LarstiQedreamleo: as an aside, revids (and not revnos) globally uniquely define a revision. See bzr log --show-ids for example12:13
mathrickedreamleo: hmm, is that really an issue? It only shows up in commit logs for merge revisions, where you can immediately see it's a merge12:14
LarstiQedreamleo: Merged revisions, the indented ones in bzr log output, get dotted revnos, the first number is the same as the revno of the revision in the current branch where they branched from.12:14
mathrickotherwise the whole merge will be just 506 in your tree12:15
mathrickLarstiQ: if you can give me a snippet to set it on a fresh tree, it's no problem, I can just replay commits onto the new branch12:16
LarstiQmathrick: on a fresh tree created with a rich root format, it should already be rich.12:17
mathrickaha12:17
LarstiQmathrick: you don't want to keep your revisions?12:17
edreamleomathrick: It's "really" an issue only in the sense that it confuses newbies.  True, the log is about as clear as it could be.  The problem is, that newbies think there recently committed changes went away, depending on what the "main" revno is, and newbies then don't think to look at the log.  I strongly suspect the revnums are fine, it's just a learning problem with bzr.  But I know for sure that it is confusing for several sets of n12:18
mathrickLarstiQ: I do, but can't I merge/replay them from the old tree?12:18
LarstiQmathrick: you can merge them, 'replay' made me think of something different12:18
mathrickalthough to be honest, in that particular tree I don't care all that much, as long as functionally equivalent revs are present, it's just my conf dir12:18
LarstiQmathrick: you should be able to do something with moving things to a subdir, then merging into a new tree and removing everything to the root, or some such12:19
mathrick"removing everything to the root"?12:19
mathrickedreamleo: your message got truncated12:20
mathrickafter " several sets of"12:20
LarstiQmathrick: sorry, 'removing' is ambigious12:20
LarstiQmathrick: that should be 'moving everything back to'12:20
edreamleomathrick: sorry about that.  Some forums like one-liners.12:21
edreamleomathrick: It's "really" an issue only in the sense that it confuses newbies.  True, the log is about as clear as it could be.12:21
edreamleomathrick: The problem is, that newbies think there recently committed changes went away, depending on what the "main" revno is, and newbies then don't think to look at the log.12:21
edreamleomathrick: I strongly suspect the revnums are fine, it's just a learning problem with bzr.  But I know for sure that it is confusing for several sets of newbies.12:22
LarstiQedreamleo: have you seen the revision ids with --show-ids?12:23
mathrickedreamleo: ah, so you mean they branch at 504, commit "foo" at 505, merge someone else's tree where 505 is "bar", then wonder why they still don't have the bar in their tree, since 505 is "foo"?12:23
edreamleomathrick: yes, I believe that something like that is what is confusing folks.12:25
mathrickedreamleo: that is a problem when you think of "the" repo and checkouts, instead of a set of DAGs12:25
edreamleoTo repeat, once people think to look at the log they are probably going to be reassured12:26
mathrickedreamleo: however, how do they find out 505 is "foo" and not "bar" if not through the log?12:26
edreamleoInteresting.  Afaik, dag's are never mentioned in the docs.12:26
mathrickI guess a little technical aside mentioning DAGs and how trees being DAGs means they can be non-identical yet equivalent could help12:28
edreamleomathrick: here is the original report on http://groups.google.com/group/leo-editor12:28
edreamleoI committed the leoSettings.leo file with a couple of vi emulator changes as revision 509.12:29
edreamleoLater, with Edwards updates the leoSettings.leo changes moved to revision 511 and the revision description that I entered is gone.12:29
edreamleoThat's the essence of the report.  Does that make any sense to you?  I'm totally confused :-)12:30
* LarstiQ starts up X and a browser12:30
mathrickedreamleo: this one? http://groups.google.com/group/leo-editor/browse_thread/thread/a207aa1ba524736312:30
edreamleomathrick:  yes, that's the thread12:31
mathrickedreamleo: ok, did you commit on a branch and pushed, or committed on a checkout?12:32
edreamleomy workflow is to commit and push12:32
mathrickthe two look similar, but are fundamentally different when it comes to commits12:32
mathrickedreamleo: aha, then indeed you will never get the same revnos if there's been intermediate traffic on the target branch12:33
mathrickedreamleo: can I have your mainline branch URL?12:33
edreamleomathrick: https://code.launchpad.net/~leo-editor-team/leo-editor/trunk12:35
mathrickedreamleo: ah, yes, I suppose you have looked at the log already?12:38
mathrickif no, bzr log https://code.launchpad.net/~leo-editor-team/leo-editor/trunk | less12:38
LarstiQedreamleo: http://doc.bazaar-vcs.org/latest/en/user-guide/index.html#understanding-revision-numbers12:38
LarstiQedreamleo: and also 1.2.2, http://doc.bazaar-vcs.org/latest/en/user-guide/index.html#id1912:39
edreamleoLarstiQ: thanks for these urls!12:40
LarstiQedreamleo: np :)12:41
mathrickLarstiQ: I suppose specifically mentioning implications of merges in http://doc.bazaar-vcs.org/latest/en/user-guide/index.html#understanding-revision-numbers would help, tho12:41
edreamleomathrick: Aha.  I have only looked at my local log...12:41
LarstiQmathrick: yes, patches appreciated :)12:41
LarstiQmathrick, edreamleo: or something for http://bazaar-vcs.org/FAQ12:41
mathrickLarstiQ: ok, how do I contribute to the FAQ?12:42
LarstiQmathrick: I think the FAQ is just a wiki page12:43
mathrickah12:43
LarstiQat least, I can't find it in the bzr.dev source tree12:43
LarstiQmathrick: for the user-guide, bzr.dev/doc/en/user-guide/zen.txt12:44
mathrickmhm12:44
mathrickedreamleo: out of curiosity, what is your local log like? The revisions should stay intact there12:46
edreamleoThanks all.  I'll post this discussion on the thread I gave above on leo-editor.  I think it will help.12:46
edreamleomathrick: it looks the same as the global log to my untrained eyes.12:47
mathrickoh, do you have an URL?12:47
LarstiQedreamleo: http://doc.bazaar-vcs.org/latest/en/user-reference/bzr_man.html#id27 might also be of use12:47
LarstiQedreamleo: you can do things like bzr diff -r -3..-1 for example12:48
LarstiQedreamleo: the key thing to take away here is that what uniquely identifies a revision is the revision _id_ (revid for short, example: pqm@pqm.ubuntu.com-20080606135624-1ambbf8pct52xfh8) and a revision _number_ (revno for short, simple integers for mainline revisions, or dotted for merged) is just a convenient shorthand in a particular branch12:50
edreamleoLarstiQ: thanks.  I'll post this to leo-editor.12:51
LarstiQedreamleo: the former is always the same for a particular revision, the latter can change if the mainline changes. (I locally commit 505, someone else can merge that into their 505, then mine will probably be 504.1.1)12:51
LarstiQedreamleo: also practice with `bzr log --show-ids -r -3..-1` and then `bzr diff -r revid:<a revid here>..revid:<and likewise here>`12:52
LarstiQedreamleo: that should give your users/developers a better grasp on the differences I hope.12:52
edreamleoLarstiQ: Excellent: practical usage tips will certainly help.12:54
LarstiQedreamleo: and as mathrick said, if people fear their changes have been lost, have a good look at the log output and search for merged revisions. (You can search for a commit log with `bzr log -m <pattern>`)12:54
LarstiQedreamleo: oh! And `bzr missing`12:54
LarstiQedreamleo: bzr missing will compare two branches and tell you which revisions the one has the other hasn't.12:54
edreamleoOk.  Enough for now.  This is plenty for us newbies to digest.  Again, many thanks.12:56
* LarstiQ stops :)12:57
LarstiQedreamleo: feel free to ask more questions later on.12:57
=== Toksyuryel` is now known as Toksyuryel
mathrickLarstiQ: http://bazaar-vcs.org/FAQ#head-c45efef970ac690a0e997fbc904c3ea989e3fcea <-- looks good?13:18
mathrickhmm13:40
mathrickthat merge messed up my history somehow13:41
mathrickI get revnos such as -3 now13:41
bpetersonlifeless: are you there?13:46
Pieterrevision numbers suck13:50
mathrickI recreated it, and I still can't get a tree with root id other than TREE_ROOT13:57
mathrickif I pull from the existing branch onto an empty tree, I will get the same id13:57
LarstiQmathrick: looks good to me13:57
LarstiQmathrick: ah yes, the root id is only set after the first commit13:58
LarstiQPieter: they're perfectly fine if you know what they are13:58
mathrickyeah, and if I commit, the branches become unmergeable13:58
LarstiQok, let me see if I can figure out how to do this13:59
* LarstiQ will be afi for a couple of minutes13:59
mathrickif I commit after merge, I get this:13:59
mathrickdeleted13:59
mathrickworking tree is out of date, run 'bzr update'13:59
mathrickCommitted revision 1.13:59
=== asabil_ is now known as asabil
lifelesshi14:33
lifelessLarstiQ: can blender edit art of illusion files ?15:17
LarstiQlifeless: never heard of art of illusion before, no clue what fileformats it supports15:18
=== pmezard|afk is now known as pmezard
Keybukdid something change in difftools?15:59
KeybukI'm sure that bzr diff --using=meld used to open one window with the changes16:00
Keybuknow it opens one per file16:00
Keybukin fact, I don't have difftools installed -- did --using find its way into bzr proper?16:00
spivKeybuk: since 1.1rc1 according to NEWS16:01
=== mario_ is now known as pygi
Keybukbut it runs multiple tools for each file, rather than just one? :-(16:03
Keybukah, installing difftools makes it use just one :p16:09
spivSounds like a bug to me, but I don't use --using.16:10
* spiv -> bed16:11
antoranzHi, Guys!17:54
antoranzI'm having problems installing the bzr plugin for eclipse on hardy17:54
antoranzcan anybody help me?17:54
antoranzwhen I try to configure it, I get a line of errors on top (not the bzr-xmloutput plugin problem, though)17:58
antoranzhttp://www.pastebin.ca/104136017:59
weigonhmm, how can I fix a "RevisionNotPresent: Revision {...} not present in "revisions.kndx"."  in a bzr merge ?19:31
=== rockstar_ is now known as rockstar
slangaseklifeless: so I used cvsps to do a one-time conversion of an old CVS package repo to bzr, and afterwards someone noted that the contents of the bzr branches don't actually match what was tagged in the CVS repo...20:15
slangaseklifeless: halp :)20:17
emgentheya21:24
bpetersonlifeless: are you there?21:25
Verterokmoin22:47

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