gnu: polkit: Rename default variable to 'polkit-mozjs'.

* gnu/packages/polkit.scm (polkit*): Rename to...
(polkit-mozjs): ... this.  Adjust users.
This commit is contained in:
Ludovic Courtès 2021-11-27 22:25:35 +01:00
parent 6b30eb189e
commit 26ebd111bc
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2015 Andy Wingo <wingo@igalia.com> ;;; Copyright © 2015 Andy Wingo <wingo@igalia.com>
;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015, 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017 Huang Ying <huang.ying.caritas@gmail.com> ;;; Copyright © 2017 Huang Ying <huang.ying.caritas@gmail.com>
@ -50,7 +50,7 @@ (define-module (gnu packages polkit)
#:use-module (gnu packages xml) #:use-module (gnu packages xml)
#:export (polkit)) #:export (polkit))
(define-public polkit* (define-public polkit-mozjs
(package (package
(name "polkit") (name "polkit")
(version "0.120") (version "0.120")
@ -153,7 +153,7 @@ (define-public polkit*
;;; Variant of polkit built with Duktape, a lighter JavaScript engine compared ;;; Variant of polkit built with Duktape, a lighter JavaScript engine compared
;;; to mozjs. ;;; to mozjs.
(define-public polkit-duktape (define-public polkit-duktape
(let ((base polkit*)) (let ((base polkit-mozjs))
(package/inherit base (package/inherit base
(name "polkit-duktape") (name "polkit-duktape")
(source (source
@ -186,7 +186,7 @@ (define polkit-for-system
"Return a polkit package that can be built for SYSTEM; that is, either the "Return a polkit package that can be built for SYSTEM; that is, either the
regular polkit that requires mozjs or its duktape variant." regular polkit that requires mozjs or its duktape variant."
(if (string-prefix? "x86_64" system) (if (string-prefix? "x86_64" system)
polkit* polkit-mozjs
polkit-duktape))) polkit-duktape)))
;;; Define a top level polkit variable that can be built on any of the ;;; Define a top level polkit variable that can be built on any of the