* [bug#60778] [PATCH] guix-install.sh: Source both profiles, default user's and home.
@ 2023-01-13 10:09 Andrew Tropin
2023-04-07 15:24 ` Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Tropin @ 2023-01-13 10:09 UTC (permalink / raw)
To: 60778
[-- Attachment #1: Type: text/plain, Size: 2004 bytes --]
* etc/guix-install.sh (sys_create_init_profile): Source both profiles, default
user's and home.
---
Sourced both profiles and both added to GUIX_LOCPATH if they exist.
return outside of the function AFAIK doesn't make sense, removed it.
In some future we could make a dummy locale-consumer package, which will make
$GUIX_PROFILE/etc/profile export GUIX_LOCPATH, so special treatment in this
script won't be needed anymore.
etc/guix-install.sh | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/etc/guix-install.sh b/etc/guix-install.sh
index 3ce9affc06..79f5be66b1 100755
--- a/etc/guix-install.sh
+++ b/etc/guix-install.sh
@@ -11,6 +11,7 @@
# Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
# Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
# Copyright © 2022 Prafulla Giri <prafulla.giri@protonmail.com>
+# Copyright © 2023 Andrew Tropin <andrew@trop.in>
#
# This file is part of GNU Guix.
#
@@ -534,15 +535,19 @@ export PATH="$_GUIX_PROFILE/bin${PATH:+:}$PATH"
# searches 'Info-default-directory-list'.
export INFOPATH="$_GUIX_PROFILE/share/info:$INFOPATH"
-# GUIX_PROFILE: User's default profile
-# Prefer the one from 'guix home' if it exists.
+# GUIX_PROFILE: User's default profile and home profile
+GUIX_PROFILE="$HOME/.guix-profile"
+[ -f "$GUIX_PROFILE/etc/profile" ] && . "$GUIX_PROFILE/etc/profile"
+[ -L $GUIX_PROFILE ] || \
+GUIX_LOCPATH="$GUIX_PROFILE/lib/locale:${GUIX_LOCPATH:+:}$GUIX_LOCPATH"
+
GUIX_PROFILE="$HOME/.guix-home/profile"
-[ -L $GUIX_PROFILE ] || GUIX_PROFILE="$HOME/.guix-profile"
-[ -L $GUIX_PROFILE ] || return
-GUIX_LOCPATH="$GUIX_PROFILE/lib/locale"
+[ -f "$GUIX_PROFILE/etc/profile" ] && . "$GUIX_PROFILE/etc/profile"
+[ -L $GUIX_PROFILE ] || \
+GUIX_LOCPATH="$GUIX_PROFILE/lib/locale:${GUIX_LOCPATH:+:}$GUIX_LOCPATH"
+
export GUIX_LOCPATH
-[ -f "$GUIX_PROFILE/etc/profile" ] && . "$GUIX_PROFILE/etc/profile"
EOF
}
--
2.38.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#60778] [PATCH] guix-install.sh: Source both profiles, default user's and home.
2023-01-13 10:09 [bug#60778] [PATCH] guix-install.sh: Source both profiles, default user's and home Andrew Tropin
@ 2023-04-07 15:24 ` Ludovic Courtès
2023-04-09 7:07 ` bug#60778: " Andrew Tropin
0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2023-04-07 15:24 UTC (permalink / raw)
To: Andrew Tropin; +Cc: 60778
Hi,
Andrew Tropin <andrew@trop.in> skribis:
> * etc/guix-install.sh (sys_create_init_profile): Source both profiles, default
> user's and home.
[...]
> +[ -L $GUIX_PROFILE ] || \
[...]
> +[ -L $GUIX_PROFILE ] || \
This should be enclosed in double quotes.
Otherwise LGTM, thanks!
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
* bug#60778: [PATCH] guix-install.sh: Source both profiles, default user's and home.
2023-04-07 15:24 ` Ludovic Courtès
@ 2023-04-09 7:07 ` Andrew Tropin
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Tropin @ 2023-04-09 7:07 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 60778-done
[-- Attachment #1: Type: text/plain, Size: 557 bytes --]
On 2023-04-07 17:24, Ludovic Courtès wrote:
> Hi,
>
> Andrew Tropin <andrew@trop.in> skribis:
>
>> * etc/guix-install.sh (sys_create_init_profile): Source both profiles, default
>> user's and home.
>
> [...]
>
>> +[ -L $GUIX_PROFILE ] || \
>
> [...]
>
>> +[ -L $GUIX_PROFILE ] || \
>
> This should be enclosed in double quotes.
>
> Otherwise LGTM, thanks!
>
> Ludo’.
Thank you for the review, adjusted, applied and pushed as
https://git.savannah.gnu.org/cgit/guix.git/commit/?id=02033bfc05
--
Best regards,
Andrew Tropin
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-04-09 7:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-13 10:09 [bug#60778] [PATCH] guix-install.sh: Source both profiles, default user's and home Andrew Tropin
2023-04-07 15:24 ` Ludovic Courtès
2023-04-09 7:07 ` bug#60778: " Andrew Tropin
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.