Re: [PATCH] Add 'waf-build-system'.

2015-02-07 Thread Ludovic Courtès
Ricardo Wurmus skribis: > Attached is an updated patch that also includes changes to the "Build > Systems" section in guix.texi. > > Does this suffice? > > ~~ Ricardo > > > From cab477edc91b3959b10825c12609535bcef66895 Mon Sep 17 00:00:00 2001 > From: Ricardo Wurmus > Date: Thu, 5 Feb 2015 22:41

Re: [PATCH] Add 'waf-build-system'.

2015-02-05 Thread Ricardo Wurmus
>>> From adc52a74fb12943fd77c97bf75a2092e839f9024 Mon Sep 17 00:00:00 2001 >>> From: Ricardo Wurmus >>> Date: Wed, 28 Jan 2015 22:39:03 +0100 >>> Subject: [PATCH] Add 'waf-build-system'. >>> >>> * guix/build-system/waf.scm, guix/build/waf-build-system.scm: New files. >>> * Makefile.am (MODULES):

Re: [PATCH] Add 'waf-build-system'.

2015-02-04 Thread Ludovic Courtès
rekado skribis: > Ludovic Courtès writes: > >> Ricardo Wurmus skribis: >> >>> Unlike the Python build system, however, there is a configure phase, and >>> not everything important happens during the install phase. >> >> OK. Did you find it more appropriate to extend ‘gnu-build-system’ >> rather

Re: [PATCH] Add 'waf-build-system'.

2015-02-03 Thread rekado
Ludovic Courtès writes: > Ricardo Wurmus skribis: > >> Unlike the Python build system, however, there is a configure phase, and >> not everything important happens during the install phase. > > OK. Did you find it more appropriate to extend ‘gnu-build-system’ > rather than ‘python-build-system’

Re: [PATCH] Add 'waf-build-system'.

2015-02-01 Thread Ludovic Courtès
Ricardo Wurmus skribis: > attached is a patch to add the waf build system. Although waf is called > a meta build system, most applications that I've encountered so far (all > related to audio) have the standard build phases as the GNU build > system. > > The waf build system is embarrassingly si