all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: 02/02: gnu: camlp4: Remove extra input.
       [not found] ` <E1ZjtME-00020e-Ey@vcs.savannah.gnu.org>
@ 2015-10-07 20:36   ` Ludovic Courtès
  2015-10-07 20:45     ` Efraim Flashner
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2015-10-07 20:36 UTC (permalink / raw)
  To: guix-devel

Efraim Flashner <efraim@flashner.co.il> skribis:

> commit d04efa0fff908de0f8822a27582b4b1c3dcae553
> Author: Efraim Flashner <efraim@flashner.co.il>
> Date:   Wed Oct 7 14:44:59 2015 +0300
>
>     gnu: camlp4: Remove extra input.
>     
>     * gnu/packages/ocaml.scm (camlp4)[inputs]: Removed duplicate "ocaml"
>       entry from native-inputs.
> ---
>  gnu/packages/ocaml.scm |    3 +--
>  1 files changed, 1 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
> index fc45805..0302c85 100644
> --- a/gnu/packages/ocaml.scm
> +++ b/gnu/packages/ocaml.scm
> @@ -208,8 +208,7 @@ Git-friendly development workflow.")
>                  "0icdfzhsbgf89925gc8gl3fm8z2xzszzlib0v9dj5wyzkyv3a342"))
>                (file-name (string-append name "-" version ".tar.gz"))))
>      (build-system gnu-build-system)
> -    (native-inputs `(("ocaml" ,ocaml)
> -                     ("which" ,which)))
> +    (native-inputs `(("which" ,which)))
>      (inputs `(("ocaml" ,ocaml)))

This was probably correct: When cross-compiling, you would both need the
compiler (in ‘native-inputs’) and the run-time support library (thus in
‘inputs’.)

Now, this is mostly theoretical in this case because it would probably
take more than this to cross-compile OCaml code.

Ludo’.

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

* Re: 02/02: gnu: camlp4: Remove extra input.
  2015-10-07 20:36   ` 02/02: gnu: camlp4: Remove extra input Ludovic Courtès
@ 2015-10-07 20:45     ` Efraim Flashner
  2015-10-08  7:54       ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Efraim Flashner @ 2015-10-07 20:45 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1927 bytes --]

On Wed, 07 Oct 2015 22:36:52 +0200
ludo@gnu.org (Ludovic Courtès) wrote:

> Efraim Flashner <efraim@flashner.co.il> skribis:
> 
> > commit d04efa0fff908de0f8822a27582b4b1c3dcae553
> > Author: Efraim Flashner <efraim@flashner.co.il>
> > Date:   Wed Oct 7 14:44:59 2015 +0300
> >
> >     gnu: camlp4: Remove extra input.
> >     
> >     * gnu/packages/ocaml.scm (camlp4)[inputs]: Removed duplicate "ocaml"
> >       entry from native-inputs.
> > ---
> >  gnu/packages/ocaml.scm |    3 +--
> >  1 files changed, 1 insertions(+), 2 deletions(-)
> >
> > diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
> > index fc45805..0302c85 100644
> > --- a/gnu/packages/ocaml.scm
> > +++ b/gnu/packages/ocaml.scm
> > @@ -208,8 +208,7 @@ Git-friendly development workflow.")
> >                  "0icdfzhsbgf89925gc8gl3fm8z2xzszzlib0v9dj5wyzkyv3a342"))
> >                (file-name (string-append name "-" version ".tar.gz"))))
> >      (build-system gnu-build-system)
> > -    (native-inputs `(("ocaml" ,ocaml)
> > -                     ("which" ,which)))
> > +    (native-inputs `(("which" ,which)))
> >      (inputs `(("ocaml" ,ocaml)))
> 
> This was probably correct: When cross-compiling, you would both need the
> compiler (in ‘native-inputs’) and the run-time support library (thus in
> ‘inputs’.)
> 
> Now, this is mostly theoretical in this case because it would probably
> take more than this to cross-compile OCaml code.
> 
> Ludo’.

Should I go ahead and revert the change? I was starting to work on getting
opam to build and I noticed this. I suppose at a minimum it doesn't hurt to
have it in native-inputs and in inputs, it just didn't look right.

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: 02/02: gnu: camlp4: Remove extra input.
  2015-10-07 20:45     ` Efraim Flashner
@ 2015-10-08  7:54       ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2015-10-08  7:54 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

Efraim Flashner <efraim@flashner.co.il> skribis:

> On Wed, 07 Oct 2015 22:36:52 +0200
> ludo@gnu.org (Ludovic Courtès) wrote:
>
>> Efraim Flashner <efraim@flashner.co.il> skribis:
>> 
>> > commit d04efa0fff908de0f8822a27582b4b1c3dcae553
>> > Author: Efraim Flashner <efraim@flashner.co.il>
>> > Date:   Wed Oct 7 14:44:59 2015 +0300
>> >
>> >     gnu: camlp4: Remove extra input.
>> >     
>> >     * gnu/packages/ocaml.scm (camlp4)[inputs]: Removed duplicate "ocaml"
>> >       entry from native-inputs.
>> > ---
>> >  gnu/packages/ocaml.scm |    3 +--
>> >  1 files changed, 1 insertions(+), 2 deletions(-)
>> >
>> > diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
>> > index fc45805..0302c85 100644
>> > --- a/gnu/packages/ocaml.scm
>> > +++ b/gnu/packages/ocaml.scm
>> > @@ -208,8 +208,7 @@ Git-friendly development workflow.")
>> >                  "0icdfzhsbgf89925gc8gl3fm8z2xzszzlib0v9dj5wyzkyv3a342"))
>> >                (file-name (string-append name "-" version ".tar.gz"))))
>> >      (build-system gnu-build-system)
>> > -    (native-inputs `(("ocaml" ,ocaml)
>> > -                     ("which" ,which)))
>> > +    (native-inputs `(("which" ,which)))
>> >      (inputs `(("ocaml" ,ocaml)))
>> 
>> This was probably correct: When cross-compiling, you would both need the
>> compiler (in ‘native-inputs’) and the run-time support library (thus in
>> ‘inputs’.)
>> 
>> Now, this is mostly theoretical in this case because it would probably
>> take more than this to cross-compile OCaml code.
>> 
>> Ludo’.
>
> Should I go ahead and revert the change?

Yes, please.

Thanks!

Ludo’.

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

end of thread, other threads:[~2015-10-08  7:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20151007182229.7660.43511@vcs.savannah.gnu.org>
     [not found] ` <E1ZjtME-00020e-Ey@vcs.savannah.gnu.org>
2015-10-07 20:36   ` 02/02: gnu: camlp4: Remove extra input Ludovic Courtès
2015-10-07 20:45     ` Efraim Flashner
2015-10-08  7:54       ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.