Re: Patches for midnight commander

2014-03-25 Thread Mark H Weaver
l...@gnu.org (Ludovic Courtès) writes: > Eric Bavier skribis: > >> --- a/gnu/packages/ssh.scm >> +++ b/gnu/packages/ssh.scm >> @@ -110,6 +110,18 @@ remote applications.") >> (build-system gnu-build-system) >> (inputs `(("libgcrypt" ,libgcrypt) >> ("zlib" ,zlib))) >> + (arg

Re: Patches for midnight commander

2014-03-25 Thread Mark H Weaver
Eric Bavier writes: > + #:phases > + (alist-replace > +'configure > +(lambda* (#:key #:allow-other-keys #:rest args) > + (let ((configure (assoc-ref %standard-phases 'configure))) > +(substitute* "configure" > + (("/usr/bin/file") (whi

Re: Optimizing union.scm

2014-03-25 Thread Ludovic Courtès
Mark H Weaver skribis: > l...@gnu.org (Ludovic Courtès) writes: > >> Mark H Weaver skribis: [...] >>> * I've not yet updated tests/union.scm, which tests internal procedures >>> in union.scm that no longer exist. >> >> Right, the ‘tree-union’ and ‘delete-duplicate-leaves’ tests will have to

Re: Patches for midnight commander

2014-03-25 Thread Ludovic Courtès
Eric Bavier skribis: > The two patches below are for midnight commander. > > The source needs to be fetched from ftp.midnight-commander.org because > the tarballs on the GNU mirrors have not been updated for a few years... Heh, OK. > --- a/gnu/packages/ssh.scm > +++ b/gnu/packages/ssh.scm > @

Re: Optimizing union.scm

2014-03-25 Thread Mark H Weaver
l...@gnu.org (Ludovic Courtès) writes: > Mark H Weaver skribis: > >> Here's a first draft of a new union.scm. > > Thanks for being so fast! > >> On my YeeLoong 8101B, when building my 155-package profile, it uses >> about 1/14 as much CPU time (25 seconds vs 6 minutes), and about 2/7 as >> much r

Patches for midnight commander

2014-03-25 Thread Eric Bavier
The two patches below are for midnight commander. The source needs to be fetched from ftp.midnight-commander.org because the tarballs on the GNU mirrors have not been updated for a few years... >From 63d0420d7552d52dc125462e90f224eca2febf5a Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Tue,

Re: SVN download

2014-03-25 Thread Sree Harsha Totakura
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/25/2014 09:29 PM, Ludovic Courtès wrote: > Now, alternately, does GNUnet provide http SVN access (no TLS)? If > it does, you could: It doesn't provide http SVN access. So, I guess the only option for now is to use the ca-certificates package.

Re: [PATCH] dmd: Add dmd action 'reload': unload all; load.

2014-03-25 Thread Ludovic Courtès
Alex Sassmannshausen skribis: > * modules/dmd/service.scm (load-config): New procedure. > (dmd-service): Re-factor 'load', add new action: 'reload'. > * dmd.texi (The 'dmd' and 'unknown' services): Document 'reload'. > * tests/basic.sh: Add 'reload' test. Pushed, thanks! Ludo’.

Re: dmd: Unload one or all services at runtime.

2014-03-25 Thread Ludovic Courtès
Hello! Alex Sassmannshausen skribis: > Ludovic Courtès writes: > >> Alex Sassmannshausen skribis: >> >>> * modules/dmd/service.scm (runtime-load): New procedure. >>> (dmd-service): Re-factor 'load', add new action: 'reload'. >>> * dmd.texi (The 'dmd' and 'unknown' services): Document 'reload'

Re: SVN download

2014-03-25 Thread Ludovic Courtès
Sree Harsha Totakura skribis: > I wrote a helper to download sources from SVN directories. I guess it > works but I am unable to test it as I get the following error while > validating the server SSL certificates: Given that our Subversion is currently linked against an OpenSSL-using version of

Re: Optimizing union.scm

2014-03-25 Thread Ludovic Courtès
Mark H Weaver skribis: > Here's a first draft of a new union.scm. Thanks for being so fast! > On my YeeLoong 8101B, when building my 155-package profile, it uses > about 1/14 as much CPU time (25 seconds vs 6 minutes), and about 2/7 as > much real time (2 minutes vs about 7.17 minutes). It als

SVN download

2014-03-25 Thread Sree Harsha Totakura
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I wrote a helper to download sources from SVN directories. I guess it works but I am unable to test it as I get the following error while validating the server SSL certificates: > @ build-started > /gnu/store/7826n7p4928dnrdgjslpjhkkm7mc40jj-svn

Re: Optimizing union.scm

2014-03-25 Thread Mark H Weaver
Here's a first draft of a new union.scm. On my YeeLoong 8101B, when building my 155-package profile, it uses about 1/14 as much CPU time (25 seconds vs 6 minutes), and about 2/7 as much real time (2 minutes vs about 7.17 minutes). It also handles libffi in core-updates properly. A few notes: *