9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] hg on plan 9
@ 2011-09-15  3:58 erik quanstrom
  2011-09-15  4:37 ` Federico G. Benavento
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: erik quanstrom @ 2011-09-15  3:58 UTC (permalink / raw)
  To: 9fans

looks like spaces in file names are a problem, at least
on my system.

minooka; hg clone https://code.google.com/p/nix-os/
destination directory: nix-os
requesting all changes
adding changesets
adding manifests
adding file changes
transaction abort!
rollback completed
abort: Bad file number: /n/other/quanstro/nix-os/.hg/store/data/lib/font/bit/anonpro/_anonymous _pro.ttf.i

- erik



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] hg on plan 9
  2011-09-15  3:58 [9fans] hg on plan 9 erik quanstrom
@ 2011-09-15  4:37 ` Federico G. Benavento
  2011-09-15  4:38   ` erik quanstrom
  2011-09-15  9:45 ` dexen deVries
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Federico G. Benavento @ 2011-09-15  4:37 UTC (permalink / raw)
  To: erik quanstrom; +Cc: 9fans

erik, it the fs that doesn't support ' ' in file names...

On Sep 15, 2011, at 12:58 AM, erik quanstrom wrote:

> looks like spaces in file names are a problem, at least
> on my system.
> 
> minooka; hg clone https://code.google.com/p/nix-os/
> destination directory: nix-os
> requesting all changes
> adding changesets
> adding manifests
> adding file changes
> transaction abort!
> rollback completed
> abort: Bad file number: /n/other/quanstro/nix-os/.hg/store/data/lib/font/bit/anonpro/_anonymous _pro.ttf.i
> 
> - erik
> 




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] hg on plan 9
  2011-09-15  4:37 ` Federico G. Benavento
@ 2011-09-15  4:38   ` erik quanstrom
  0 siblings, 0 replies; 8+ messages in thread
From: erik quanstrom @ 2011-09-15  4:38 UTC (permalink / raw)
  To: benavento, quanstro, 9fans

On Thu Sep 15 00:37:30 EDT 2011, benavento@gmail.com wrote:
> erik, it the fs that doesn't support ' ' in file names...
>
> On Sep 15, 2011, at 12:58 AM, erik quanstrom wrote:
>
> > looks like spaces in file names are a problem, at least
> > on my system.
> >
> > minooka; hg clone https://code.google.com/p/nix-os/
> > destination directory: nix-os
> > requesting all changes
> > adding changesets
> > adding manifests
> > adding file changes
> > transaction abort!
> > rollback completed
> > abort: Bad file number: /n/other/quanstro/nix-os/.hg/store/data/lib/font/bit/anonpro/_anonymous _pro.ttf.i

i know that.  it's just more difficult than necessary to put stuff like
that in the repo.

- erik



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] hg on plan 9
  2011-09-15  3:58 [9fans] hg on plan 9 erik quanstrom
  2011-09-15  4:37 ` Federico G. Benavento
@ 2011-09-15  9:45 ` dexen deVries
  2011-10-27  7:26 ` Akshat Kumar
       [not found] ` <CABwSpPD2Zm5Ha=gjB40a89QBWZB+0Cmb277VuNMdEa-UD4cknQ@mail.gmail.c>
  3 siblings, 0 replies; 8+ messages in thread
From: dexen deVries @ 2011-09-15  9:45 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Thursday 15 of September 2011 05:58:00 erik quanstrom wrote:
> looks like spaces in file names are a problem, at least
> on my system.
> 
> minooka; hg clone https://code.google.com/p/nix-os/
> destination directory: nix-os
> requesting all changes
> adding changesets
> adding manifests
> adding file changes
> transaction abort!
> rollback completed
> abort: Bad file number:
> /n/other/quanstro/nix-os/.hg/store/data/lib/font/bit/anonpro/_anonymous
> _pro.ttf.i

there used to be a hack in Hg to safely store files with spaces (and other 
potentially unsafe characters) in names, called `fncache repository format'.

http://mercurial.selenic.com/wiki/fncacheRepoFormat

seems you can toggle it on/off in config.

-- 
dexen deVries

[[[↓][→]]]

For example, if the first thing in the file is:
   <?kzy irefvba="1.0" rapbqvat="ebg13"?>
an XML parser will recognize that the document is stored in the traditional 
ROT13 encoding.

(( Joe English, http://www.flightlab.com/~joe/sgml/faq-not.txt ))



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] hg on plan 9
  2011-09-15  3:58 [9fans] hg on plan 9 erik quanstrom
  2011-09-15  4:37 ` Federico G. Benavento
  2011-09-15  9:45 ` dexen deVries
@ 2011-10-27  7:26 ` Akshat Kumar
  2011-10-27 13:02   ` cinap_lenrek
       [not found] ` <CABwSpPD2Zm5Ha=gjB40a89QBWZB+0Cmb277VuNMdEa-UD4cknQ@mail.gmail.c>
  3 siblings, 1 reply; 8+ messages in thread
From: Akshat Kumar @ 2011-10-27  7:26 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

I made a change to hg:

mercurial/store.py:
in def _buildencodefun():
-    win_reserved = [ord(x) for x in '\\:*?"<>|']
+    win_reserved = [ord(x) for x in '\\:*?"<>| ']

in def _build_lower_encodefun():
-    win_reserved = [ord(x) for x in '\\:*?"<>|']
+    win_reserved = [ord(x) for x in '\\:*?"<>| ']

This got me through the errors with filenames
with spaces in them (it converts spaces to '~')
but I have errors of a different sort now:

cpu% hg clone https://code.google.com/p/nix-os/
destination directory: nix-os
requesting all changes
adding changesets
adding manifests
adding file changes
added 112 changesets with 14878 changes to 14527 files
updating working directory
Traceback (most recent call last):
  File "/bin/hg", line 31, in <module>
    mercurial.dispatch.run()
  File "./mercurial/dispatch.py", line 16, in run
  File "./mercurial/dispatch.py", line 27, in dispatch
  File "./mercurial/dispatch.py", line 43, in _runcatch
  File "./mercurial/dispatch.py", line 449, in _dispatch
  File "./mercurial/dispatch.py", line 317, in runcommand
  File "./mercurial/dispatch.py", line 501, in _runcommand
  File "./mercurial/dispatch.py", line 454, in checkargs
  File "./mercurial/dispatch.py", line 448, in <lambda>
  File "./mercurial/util.py", line 402, in check
  File "/sys/lib/python/commands.py", line 636, in clone

  File "/sys/lib/python/mercurial/hg.py", line 317, in clone
    _update(dest_repo, uprev)
  File "/sys/lib/python/mercurial/hg.py", line 335, in update
    stats = _merge.update(repo, node, False, False, None)
  File "/sys/lib/python/mercurial/merge.py", line 470, in update
    stats = applyupdates(repo, action, wc, p2)
  File "/sys/lib/python/mercurial/merge.py", line 308, in applyupdates
    repo.wwrite(f, t, flags)
  File "/sys/lib/python/mercurial/localrepo.py", line 555, in wwrite
    self.wopener(filename, 'w').write(data)
  File "./mercurial/util.py", line 874, in __call__
IOError: invalid mode: wb

Anyone have a more thorough patch?


Thanks,
ak

On Wed, Sep 14, 2011 at 8:58 PM, erik quanstrom <quanstro@quanstro.net> wrote:
> looks like spaces in file names are a problem, at least
> on my system.
>
> minooka; hg clone https://code.google.com/p/nix-os/
> destination directory: nix-os
> requesting all changes
> adding changesets
> adding manifests
> adding file changes
> transaction abort!
> rollback completed
> abort: Bad file number: /n/other/quanstro/nix-os/.hg/store/data/lib/font/bit/anonpro/_anonymous _pro.ttf.i
>
> - erik
>
>



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] hg on plan 9
  2011-10-27  7:26 ` Akshat Kumar
@ 2011-10-27 13:02   ` cinap_lenrek
  0 siblings, 0 replies; 8+ messages in thread
From: cinap_lenrek @ 2011-10-27 13:02 UTC (permalink / raw)
  To: 9fans

i told you this only mangles the files in the *repository*, not
the *working directory*. special characters are not converted to ~
but to ~xx where xx is the hexadecimal byte value of the byte
replaced.

use hg clone -U so it wont try to check stuff out. then then use
hgfs to access the files.

--
cinap



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] hg on plan 9
       [not found] ` <CABwSpPD2Zm5Ha=gjB40a89QBWZB+0Cmb277VuNMdEa-UD4cknQ@mail.gmail.c>
@ 2011-10-27 13:10   ` erik quanstrom
  2011-10-27 20:13     ` Akshat Kumar
  0 siblings, 1 reply; 8+ messages in thread
From: erik quanstrom @ 2011-10-27 13:10 UTC (permalink / raw)
  To: 9fans

you can also use ramfs instead of hgfs.  you may need
the 9atom version which allows unlimited files.

- erik



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] hg on plan 9
  2011-10-27 13:10   ` erik quanstrom
@ 2011-10-27 20:13     ` Akshat Kumar
  0 siblings, 0 replies; 8+ messages in thread
From: Akshat Kumar @ 2011-10-27 20:13 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Ah, I wonder if that was the problem when I was trying trfs
with ramfs.

On Thu, Oct 27, 2011 at 6:10 AM, erik quanstrom <quanstro@quanstro.net> wrote:
> you can also use ramfs instead of hgfs.  you may need
> the 9atom version which allows unlimited files.
>
> - erik
>
>



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-10-27 20:13 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-15  3:58 [9fans] hg on plan 9 erik quanstrom
2011-09-15  4:37 ` Federico G. Benavento
2011-09-15  4:38   ` erik quanstrom
2011-09-15  9:45 ` dexen deVries
2011-10-27  7:26 ` Akshat Kumar
2011-10-27 13:02   ` cinap_lenrek
     [not found] ` <CABwSpPD2Zm5Ha=gjB40a89QBWZB+0Cmb277VuNMdEa-UD4cknQ@mail.gmail.c>
2011-10-27 13:10   ` erik quanstrom
2011-10-27 20:13     ` Akshat Kumar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).