guix: Add define-deprecated/public-alias.

* guix/deprecation.scm (define-deprecated/public-alias): New variable.
This commit is contained in:
Liliana Marie Prikler 2022-03-29 21:16:35 +02:00
parent 1be7f43756
commit 9ab158a457
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -25,6 +25,7 @@ (define-module (guix deprecation)
define-deprecated/public
define-deprecated/alias
define-deprecated/public-alias
warn-about-old-daemon
warn-about-deprecation))
@ -124,3 +125,10 @@ (define-syntax deprecated
(id
(identifier? #'id)
#'replacement)))))
(define-syntax-rule (define-deprecated/public-alias deprecated replacement)
"Like define-deprecated/alias, but exporting DEPRECATED.
It is assumed, that REPLACEMENT is already public."
(begin
(define-deprecated/alias deprecated replacement)
(export deprecated)))