unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* 02/02: import: Update opam importer.
@ 2018-12-19  3:26 Eric Bavier
  2018-12-19 14:59 ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Bavier @ 2018-12-19  3:26 UTC (permalink / raw)
  To: julien; +Cc: guix-devel, guix-commits

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

> commit cce654fabdf09cac7d18f9bad842ba8445aa022c
> Author: Julien Lepiller <address@hidden>
> Date:   Mon Dec 17 21:05:35 2018 +0100
> 
>     import: Update opam importer.
>     
>     * guix/import/opam.scm: Update importer for opam 2.
>     * tests/opam.scm: Update tests for the opam 2 importer.
> ---
>  guix/import/opam.scm | 305 ++++++++++++++++++++++++++++-----------------------
>  po/guix/POTFILES.in  |   1 +
>  tests/opam.scm       | 225 +++++++++++++++++++++++++------------
>  3 files changed, 321 insertions(+), 210 deletions(-)
> 
> diff --git a/guix/import/opam.scm b/guix/import/opam.scm
> index f252bdc..c42a5d7 100644
> --- a/guix/import/opam.scm
> +++ b/guix/import/opam.scm
> @@ -17,132 +17,108 @@
>  ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
>  
>  (define-module (guix import opam)
> +  #:use-module (ice-9 ftw)
>    #:use-module (ice-9 match)
> -  #:use-module (ice-9 vlist)
> +  #:use-module (ice-9 peg)

This commit breaks Guix compatibility with Guile 2.0:

  $ guix build -K --with-commit=guile2.0-guix=cce654fabf guile2.0-guix
<...snip...>
  LOAD     guix/import/opam.scm Backtrace:
In ice-9/r4rs.scm:
  90: 19 [dynamic-wind #<procedure d2f450 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 18 [eval # #]
 432: 17 [eval # #]
 481: 16 [lp (#<fluid 5>) (#<output: void 4ba000>)]
In ice-9/boot-9.scm:
2900: 15 [resolve-interface (guix import opam) #:select ...]
2825: 14 [#<procedure 651ac0 at ice-9/boot-9.scm:2813:4 (name #:optional autoload version #:key ensure)> # ...]
In ice-9/r4rs.scm:
  90: 13 [dynamic-wind #<procedure 14fbd80 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/boot-9.scm:
3101: 12 [try-module-autoload (guix import opam) #f]
2412: 11 [save-module-excursion #<procedure 14fba20 at ice-9/boot-9.scm:3102:17 ()>]
3121: 10 [#<procedure 14fba20 at ice-9/boot-9.scm:3102:17 ()>]
In unknown file:
   ?: 9 [primitive-load-path "guix/import/opam" ...]
In ice-9/eval.scm:
 505: 8 [#<procedure 59e5e0 at ice-9/eval.scm:499:4 (exp)> (define-module # # ...)]
In ice-9/psyntax.scm:
1107: 7 [expand-top-sequence ((define-module # # # ...)) () ((top)) ...]
 990: 6 [scan ((define-module (guix import opam) #:use-module ...)) () ...]
 279: 5 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...]
In ice-9/eval.scm:
 411: 4 [eval # ()]
In ice-9/boot-9.scm:
2987: 3 [define-module* (guix import opam) #:filename ...]
2962: 2 [resolve-imports (((ice-9 ftw)) ((ice-9 match)) ((ice-9 peg)) ...)]
2903: 1 [resolve-interface (ice-9 peg) #:select ...]
In unknown file:
   ?: 0 [scm-error misc-error #f "~A ~S" ("no code for module" (ice-9 peg)) #f]

ERROR: In procedure scm-error:
ERROR: no code for module (ice-9 peg)
make[2]: *** [Makefile:5572: make-go] Error 1
make[2]: Leaving directory '/tmp/guix-build-guile2.0-guix-git.cce654f.drv-0/source'
make[1]: *** [Makefile:4653: all-recursive] Error 1
make[1]: Leaving directory '/tmp/guix-build-guile2.0-guix-git.cce654f.drv-0/source'
make: *** [Makefile:3269: all] Error 2


I'm hesitant to suggest that we just update our requirements to Guile
2.2 (though I know Ludovic wants to do that eventually), since I think
that would just makes things that much harder for anyone who wants to
build Guix from source on a foreign distro.  Debian stable does not
have Guile 2.2 (it's at Guile 2.0.13).

OTOH, I'm don't now how to keep this code working on Guile 2.0.13.

`~Eric

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

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

* Re: 02/02: import: Update opam importer.
  2018-12-19  3:26 02/02: import: Update opam importer Eric Bavier
@ 2018-12-19 14:59 ` Ludovic Courtès
  2018-12-19 23:19   ` Eric Bavier
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2018-12-19 14:59 UTC (permalink / raw)
  To: Eric Bavier; +Cc: guix-devel, julien, guix-commits

Hi Eric,

Eric Bavier <ericbavier@centurylink.net> skribis:

>> commit cce654fabdf09cac7d18f9bad842ba8445aa022c
>> Author: Julien Lepiller <address@hidden>
>> Date:   Mon Dec 17 21:05:35 2018 +0100
>> 
>>     import: Update opam importer.
>>     
>>     * guix/import/opam.scm: Update importer for opam 2.
>>     * tests/opam.scm: Update tests for the opam 2 importer.

[...]

> This commit breaks Guix compatibility with Guile 2.0:
>
>   $ guix build -K --with-commit=guile2.0-guix=cce654fabf guile2.0-guix

[...]

>    ?: 0 [scm-error misc-error #f "~A ~S" ("no code for module" (ice-9 peg)) #f]

As discussed earlier, I’ll propose soon (like real soon!) a patch to
remove support for 2.0.  In that spirit, I think we can leave it as is.

Besides, I’m glad you thought about using ‘--with-commit’ for this use
case.  :-)

Thanks,
Ludo’.

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

* Re: 02/02: import: Update opam importer.
  2018-12-19 14:59 ` Ludovic Courtès
@ 2018-12-19 23:19   ` Eric Bavier
  0 siblings, 0 replies; 3+ messages in thread
From: Eric Bavier @ 2018-12-19 23:19 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, julien, guix-commits

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

On Wed, 19 Dec 2018 15:59:22 +0100
Ludovic Courtès <ludo@gnu.org> wrote:

> Hi Eric,
> 
> Eric Bavier <ericbavier@centurylink.net> skribis:
> 
> >> commit cce654fabdf09cac7d18f9bad842ba8445aa022c
> >> Author: Julien Lepiller <address@hidden>
> >> Date:   Mon Dec 17 21:05:35 2018 +0100
> >> 
> >>     import: Update opam importer.
> >>     
> >>     * guix/import/opam.scm: Update importer for opam 2.
> >>     * tests/opam.scm: Update tests for the opam 2 importer.  
> 
> [...]
> 
> > This commit breaks Guix compatibility with Guile 2.0:
> >
> >   $ guix build -K --with-commit=guile2.0-guix=cce654fabf guile2.0-guix  
> 
> [...]
> 
> >    ?: 0 [scm-error misc-error #f "~A ~S" ("no code for module" (ice-9 peg)) #f]  
> 
> As discussed earlier, I’ll propose soon (like real soon!) a patch to
> remove support for 2.0.  In that spirit, I think we can leave it as is.

That's fine with me.

> Besides, I’m glad you thought about using ‘--with-commit’ for this use
> case.  :-)

It's very useful indeed!

`~Eric

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

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

end of thread, other threads:[~2018-12-19 23:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-19  3:26 02/02: import: Update opam importer Eric Bavier
2018-12-19 14:59 ` Ludovic Courtès
2018-12-19 23:19   ` Eric Bavier

Code repositories for project(s) associated with this public inbox

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

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 read-only IMAP folder(s) and NNTP newsgroup(s).