[fossil-users] libfossil minor milestone: diff app

2014-04-01 Thread Stephan Beal
Hi, all, another minor milestone has been reached in the long and glorious libfossil effort: a CLI app which can generate diffs of arbitrary versions: [stephan@host:~/cvs/fossil/libfossil/f-apps]$ ./f-vdiff prev current DIFF: a4835dda == afaa2806 f-apps/f-adiff.c @@ -105,7 +105,7 @@

[fossil-users] a minor plea: #Fossil hashtag

2014-04-01 Thread Stephan Beal
Hi, all, a small plea to those of you who like to use the #Fossil hashtag in your online posts: if you wouldn't mind, please instead (or in addition) use #FossilSCM (or #FossilScm), as #Fossil is apparently used for other purposes and searches closely associate it with watches (the Fossil watch

[fossil-users] TH: unary bitwise operator

2014-04-01 Thread Sergei Gavrikov
Hi [FYI] % fossil test-th-eval 'expr ~1234' fossil: ../src/th.c:2002: exprEval: Assertion `!Internal error' failed. Sergei Index: src/th.c == --- src/th.c +++ src/th.c @@ -1996,10 +1996,11 @@ case OP_BITWISE_OR:

Re: [fossil-users] TH: unary bitwise operator

2014-04-01 Thread Joe Mistachkin
Sergei Gavrikov wrote: % fossil test-th-eval 'expr ~1234' fossil: ../src/th.c:2002: exprEval: Assertion `!Internal error' failed. Thanks for the report, fixed now on trunk. -- Joe Mistachkin ___ fossil-users mailing list

[fossil-users] getloadavg() detection

2014-04-01 Thread Joseph Prostko
Hello, I was trying to build a recent version of Fossil on Haiku, and noticed that the build failed due to there not being getloadavg() on the platform. Below is a patch via `fossil diff` to detect getloadavg() which allows Fossil to build cleanly on Haiku (and potentially other systems that

Re: [fossil-users] getloadavg() detection

2014-04-01 Thread Joseph Prostko
On Tue, Apr 1, 2014 at 8:24 PM, Joseph Prostko joe.pros...@gmail.com wrote: Below is a patch via `fossil diff` to detect getloadavg() which allows Fossil to build cleanly on Haiku (and potentially other systems that would happen not to have getloadavg() available. My mail client wrapped text,

[fossil-users] SIGSEGV on CR/NL convert for read-only files

2014-04-01 Thread Andy Goth
src/checkin.c fea64cb746964053193c12937d90a7ba42b625fc line 1315 gives me a SIGSEGV. This is because the f argument is NULL due to fossil_open() failing on line 1305 with EACCESS because the file I'm checking in happens to be read-only. -- Andy Goth | andrew.m.goth/at/gmail/dot/com

[fossil-users] RCS import

2014-04-01 Thread Andy Goth
The attached script imports an RCS repository into Fossil. It doesn't support branching nor symbolic names, and it has a few peculiarities designed to accommodate the RCS repository I just processed. -- Andy Goth | andrew.m.goth/at/gmail/dot/com #!/usr/bin/env tclsh package require Tcl 8.6

Re: [fossil-users] SIGSEGV on CR/NL convert for read-only files

2014-04-01 Thread Martin Gagnon
On Tue, Apr 01, 2014 at 09:35:19PM -0500, Andy Goth wrote: src/checkin.c fea64cb746964053193c12937d90a7ba42b625fc line 1315 gives me a SIGSEGV. This is because the f argument is NULL due to fossil_open() failing on line 1305 with EACCESS because the file I'm checking in happens to be