GNU bug report logs -
#49828
[PATCH 00/20] Add minetest mods
Previous Next
Reported by: Maxime Devos <maximedevos <at> telenet.be>
Date: Mon, 2 Aug 2021 15:48:02 UTC
Severity: normal
Tags: patch
Done: Leo Prikler <leo.prikler <at> student.tugraz.at>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Am Donnerstag, den 05.08.2021, 15:16 +0200 schrieb Maxime Devos:
> [...]
> > > +(define* (install #:key inputs #:allow-other-keys #:rest
> > > arguments)
> > > + (apply (@@ (guix build copy-build-system) install)
> > > + #:install-plan (mod-install-plan (apply guess-mod-name
> > > arguments))
> > > + arguments))
> > @@ is a code smell, as far as Guix is concerned. Rather import
> > copy-build-system with the copy: prefix.
>
> 'copy-build-system' does not export 'install', so I have to use '@@'
> here.
> Modifying 'copy-build-system' to export 'install' would presumably
> entail
> a many rebuilds.
I think the thing that's usually done here is fetching through
%standard-phases.
I.e. (define copy:install (assoc-ref copy-build-system:%standard-phases
'install))
> > > +(define png-file?
> > > + ((@@ (guix build utils) file-header-match) %png-magic-bytes))
> > Likewise import (guix build utils) directly.
>
> Likewise.
In that case fine, but make a note to move the variable and procedure
over to (guix build utils).
> > > +(define (lower-mod name . arguments)
> > > + (define lower (build-system-lower gnu-build-system))
> > > + (apply lower
> > > + name
> > > + #:imported-modules %minetest-build-system-modules
> > > + #:modules %default-modules
> > > + #:phases '%standard-phases
> > > + #:implicit-inputs? #f
> > > + ;; Mods are architecture-independent.
> > > + #:target #f
> > > + ;; Ensure nothing sneaks into the closure.
> > > + #:allowed-references '()
> > > + (substitute-keyword-arguments arguments
> > > + ((#:native-inputs native-inputs '())
> > > + (append native-inputs (standard-minetest-
> > > packages))))))
> > This appears a little confusing. On first glance, it does not seem
> > to
> > allow overriding e.g. #:phases, but on a second look using `apply'
> > together with shallowly substituted arguments would enable that.
>
> I modified the patch to move more things into 'substitute-keyword-
> arguments' to reduce confusion.
LGTM.
> > The
> > only thing that's missing imo is that #:implicit-inputs? is not
> > honoured for (standard-minetest-packages) -- I think you might want
> > to
> > rectify that.
>
> I modified 'lower-mod' to _not_ add 'standard-minetest-packages' to
> 'native-inputs' when #:implicit-inputs? is false, though I don't see
> why a package definition for a Minetest mod would do that.
>
> I also found a spellig bug ("to minimisation" -> "to minimise") which
> is now fixed.
The new lower-mod mostly LGTM, but
> + ;; Mods are architecture-independent.
> + ((#:target target #f) #f)
should be `target' imho. What if the mod e.g. actually builds a shared
object and somehow uses Lua's very dynamic FFI to load it? (Even if
that's not currently possible, it might be in the future). Setting it
to #f by default OTOH sounds very reasonable to me.
> btw, I submitted the "MINETEST_MOD_PATH" patch upstream, with your
> suggestion for "{std::string(...)}" construction:
> <https://github.com/minetest/minetest/pull/11515>;.
Nice, perhaps in 5.5 we will be able to enjoy this out-of-the-box.
Greetings
This bug report was last modified 3 years and 330 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.