Re: Some manual @ref @xref @pxref fail when untranslated

2019-05-22 Thread Meiyo Peng
Hi Florian, pelzflorian (Florian Pelz) writes: > Meiyo Peng reports at > <https://lists.gnu.org/archive/html/guix-devel/2019-05/msg00275.html> > > On Tue, May 14, 2019 at 10:29:35AM +0800, Meiyo Peng wrote: >> I just find out that the @pxref{Packages with Mul

Re: guix package --search slow ?

2019-05-14 Thread Meiyo Peng
e this patch series of Ludovic is merged into guix: https://lists.gnu.org/archive/html/guix-patches/2019-01/msg00254.html. Before that, "guix package --search" is slow. Please check your guix's version. If you are not using an old Guix. I am not sure why your experience is dif

Re: Translation of the Guix manual & node names

2019-05-13 Thread Meiyo Peng
Hi Julien, Julien Lepiller writes: > Le 24 avril 2019 09:08:34 GMT+02:00, Meiyo Peng a écrit : >>Hi Julien, >> >>Julien Lepiller writes: >> >>> No, we have a small script that takes care of this. As long as the >>node >>> name is translated som

Re: GNU Guix 1.0.0 released

2019-05-02 Thread Meiyo Peng
Hello everyone, Ludovic Courtès writes: > We are thrilled to announce the release of GNU Guix 1.0.0! This is awesome! Thanks to everyone who makes this happen. Let's celebrate! -- Meiyo Peng https://www.pengmeiyu.com/

Re: User shell: state or config?

2019-04-27 Thread Meiyo Peng
Last month, I installed Guix system on my computer with a minimal Guix config and then reconfigure the system with a more complete Guix config. I was surprised that my login shell is still bash while the user's shell slot in Guix config has been changed to fish. -- Meiyo Peng https://www.pengmeiyu.com/

Re: Translation of the Guix manual & node names

2019-04-24 Thread Meiyo Peng
ot; is translated? That will be a good news. > Also look at fr.po, I haven't translated most of the node names. By saying "most of the node names" have not been translated, do you mean some of the reference strings in @ref{}, @xref{} and @pxref{} should be translated? -- Meiyo Peng https://www.pengmeiyu.com/

Re: Translation of the Guix manual & node names

2019-04-23 Thread Meiyo Peng
0 release tarball or ISO file won't matter much. We can release an updated Chinese manual on our website later. The web version will be what most people will use. Thank you for your understanding. -- Meiyo Peng https://www.pengmeiyu.com/

Re: Let’s translate!

2019-04-13 Thread Meiyo Peng
Hi pelzflorian, pelzflorian (Florian Pelz) writes: > On Sat, Apr 13, 2019 at 09:56:31AM +0800, Meiyo Peng wrote: >> I have no previous experience with i18n. What should I know in order to >> translate the Guix manual? How do I edit the ".pot" file? Is there an >

Re: Let’s translate!

2019-04-13 Thread Meiyo Peng
Hi Julien, Julien Lepiller writes: > Le 13 avril 2019 03:56:31 GMT+02:00, Meiyo Peng a écrit : >>Hi Ludovic, >> >>Ludovic Courtès writes: >> >>> Hello Guix! >>> >>>> A new POT file for textual domain 'guix-manual' has been

Re: Let’s translate!

2019-04-12 Thread Meiyo Peng
uix-manual.html I can translate the Guix manual into Chinese if no one else is willing to do so. But I don't have much time and will probably miss the deadline for Guix 1.0. I have no previous experience with i18n. What should I know in order to translate the Guix manual? How do I edit

Re: XDG_DATA_DIRS issue in execution environment on LTSP

2019-03-28 Thread Meiyo Peng
Hi, Meiyo Peng writes: > #+begin_src fish > if status is-login || status is-interactive > set -gx MY_PROFILE "$HOME/.guix-profile" > > # Guix on foreign distros. > # This test is a dirty hack. > if test -d /var/guix &

Re: XDG_DATA_DIRS issue in execution environment on LTSP

2019-03-28 Thread Meiyo Peng
for us. So we don't need to manually set these environment variables for Guix System. -- Meiyo Peng https://www.pengmeiyu.com/

Re: XDG_DATA_DIRS issue in execution environment on LTSP

2019-03-28 Thread Meiyo Peng
# values if they are not set. test "$XDG_CONFIG_DIRS" = "" && set -gx XDG_CONFIG_DIRS "/etc/xdg" test "$XDG_DATA_DIRS" = "" && set -gx XDG_DATA_DIRS "/usr/local/share:/usr/share" set -gx XDG_CONFIG_DIRS "$MY_PROFILE/etc/xdg:$XDG_CONFIG_DIRS" set -gx XDG_DATA_DIRS "$MY_PROFILE/share:$XDG_DATA_DIRS" # ==> Look at here! <= # Source my etc/profile set -gx GUIX_PROFILE $MY_PROFILE fenv source $MY_PROFILE/etc/profile set -eu GUIX_PROFILE # $PATH # add_path is a function defined by me. It adds the argument # into $PATH add_path $MY_PROFILE/sbin add_path $MY_PROFILE/bin add_path $XDG_CONFIG_HOME/guix/current/bin end end #+end_src [1]. XDG Base Directory Specification https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html -- Meiyo Peng https://www.pengmeiyu.com/

Re: Plan for fish shell in Guix.

2019-01-21 Thread Meiyo Peng
fish 3.0. Fish 3.0 automatically migrates your abbreviations to a new storage format. Please have a look at the man page of `abbr`. You should now manage you abbreviations with: #+begin_SRC sh abbr --show abbr --add ec emacsclient abbr --erase ec #+end_SRC -- Meiyo Peng https://www.pengmeiyu.com/

Re: Plan for fish shell in Guix.

2019-01-21 Thread Meiyo Peng
Hi John, John Soo writes: > I’m trying it now. Everything seems to work pretty well! Thanks so > much! This has been one major issue for me for a while! Thank you for your feedback. I'm glad you like it. -- Meiyo Peng https://www.pengmeiyu.com/

Re: Plan for fish shell in Guix.

2019-01-21 Thread Meiyo Peng
bugs if you are interested. Thanks. -- Meiyo Peng https://www.pengmeiyu.com/

Plan for fish shell in Guix.

2019-01-07 Thread Meiyo Peng
ish*/share/fish/vendor_conf.d | 4. $__fish_config_dir/config.fish This is XDG_CONFIG_HOME/fish/config.fish. Default: ~/.config/fish/config.fish. -- Meiyo Peng https://www.pengmeiyu.com/

Re: CDN performance

2018-12-21 Thread Meiyo Peng
Hi Chris, Thank you for your patience! Chris Marusich writes: > Can you also share what numbers you get when you run measure_get against > berlin.guixsd.org directly? Clearly, the connection from you to > CloudFront is not as performant as it is for others in other parts of > the world, but I

Re: CDN performance

2018-12-16 Thread Meiyo Peng
Hi Chris, Chris Marusich writes: > Meiyo Peng writes: > >> After careful thought, I realized the new CDN won't benefit China >> residents as planned. Any popular CDN outside China is significantly >> throttled by ISP/GFW and the situation is worse every y

Re: CDN performance

2018-12-10 Thread Meiyo Peng
Hi, Zephyr Waitzman writes: > 以前官方的慢死人,最近的话安装靠玄学(找以前邮件列表里的几个 substitude 换着用也就那样吧),偶尔会出一些(感觉不像是网络的)问题。 > 以后有时间再深入学习下。 Thank you for your feedback. That means we do need to set up a caching mirror within China. -- Meiyo Peng

Re: CDN performance

2018-12-10 Thread Meiyo Peng
Hi, Zephyr Waitzman writes: > 大哥你的镜像速度怎么样?可以蹭网吗?(手动滑稽 My caching mirror is at home and it has an ip address of 192.168.x.x. You may connect to it if you have magic power. BTW. Nice to see another Chinese here. What's your experience with the default substitute server? -- Meiyo Peng

Re: CDN performance

2018-12-10 Thread Meiyo Peng
elves. This will be necessary until alternative solutions like IPFS or GNUnet are implemented. This email only describes the situation in China. I don't intend to discourage you on the CDN plan. There is no conflicts between my proposal to set up a caching mirror in China and our plan to set up a new CDN. -- Meiyo Peng

Re: First outreachy day :)

2018-12-04 Thread Meiyo Peng
Hi Laura, Laura Lazzati writes: > Today is my first day :) :) :) Welcome. > Is it OK if I start working about 9AM every day? (that would be 12 PM UTC) > I try to adapt my day so that it is not that late to write for you - I > was going to ask this in my yesterday, but then I realized it was li

Re: Using a CDN or some other mirror?

2018-12-04 Thread Meiyo Peng
ors in several universities. I was a member of LUG@USTC, which provides the largest FLOSS mirror in China. -- Meiyo Peng

Re: [PATCH 0/3] Defaulting to ci.guix.info (aka. berlin.guixsd.org)

2018-12-03 Thread Meiyo Peng
ly find out ci.guix.info is my default substitute server, I will be cautious and verify it's integrity. Let's use a subdomain of gnu.org. If you encounter any obstacles while setting up the system, we'd like to help. -- Meiyo Peng

Re: guix development

2018-10-30 Thread Meiyo Peng
op-services in your config.scm, then you have slim installed by default. Simply install lxqt and shoose lxqt from your login screen to start lxqt. Again. Please CC guix-devel@gnu.org when you reply email. -- Meiyo Peng

Re: guix development

2018-10-30 Thread Meiyo Peng
e. - Run `guix pull` to update guix. - Add lxqt to your config.scm. - Run `guix system reconfigure config.scm`. I suggest you to read the guix manual first if you have any question. And please CC this mailing list when you reply email. -- Meiyo Peng

Re: guix development

2018-10-29 Thread Meiyo Peng
h the development, have a look at this previous thread: https://lists.gnu.org/archive/html/guix-devel/2018-10/msg00380.html -- Meiyo Peng

Re: Package for LXQt. Help wanted.

2018-10-27 Thread Meiyo Peng
sed under GPL2+. GPL2+ apps: pcmanfm-qt, lximage-qt, obconf-qt, pavucontrol-qt, qps, qtermwidget, qterminal, screengrab. From 45804407d2c886005f1a9e01eae952ae6aa4a1ac Mon Sep 17 00:00:00 2001 From: Meiyo Peng Date: Sat, 27 Oct 2018 15:56:47 +0800 Subject: [PATCH] gnu: lxqt: Correct licenses for seve

Re: Package for LXQt. Help wanted.

2018-10-26 Thread Meiyo Peng
/gnu/store/*-lxqt-build-tools-*/ like this: "/gnu/store/86wy8q4yplhalf3yvmzv673naarxn3na-lxqt-build-tools-0.5.0/share" I defined these variables here to serve an aesthetic purpose, so that the "Technical Info" tab within lxqt-about can show the values defined above rather than directories like this: "/gnu/store/86wy8q4yplhalf3yvmzv673naarxn3na-lxqt-build-tools-0.5.0/share". -- Meiyo Peng

Re: Package for LXQt. Help wanted.

2018-10-22 Thread Meiyo Peng
ND_SRC "宋文武" is a Chinese name. Are you a Chinese? I am a Chinese. My name is 彭美玉 (Peng Mei Yu in Pinyin). -- Meiyo Peng

Re: Package for LXQt. Help wanted.

2018-10-22 Thread Meiyo Peng
m.platforms │   ├── KF5WindowSystemWaylandPlugin.so │   └── KF5WindowSystemX11Plugin.so └── qt5 └── mkspecs └── modules └── qt_KWindowSystem.pri #+END_EXAMPLE -- Meiyo Peng

Package for LXQt. Help wanted.

2018-10-21 Thread Meiyo Peng
not affect me because I use i3, so lxqt-panel is useless to me. But there may be other people interested in LXQt and I want to help them get this fixed. Can anybody help me? Will anybody help me review the code? I'd appreciate it. -- Meiyo Peng

Re: move "source /etc/profile" from .zlogin to .zprofile

2018-10-14 Thread Meiyo Peng
Hi Chris, On Sun, Oct 14, 2018 at 6:30 AM Chris Marusich wrote: > I haven't tested it, though. Would you like to test it and > let me know if it works for you? Guix is still new to me, and I don't know how to apply the patch and build guix. But I moved "source /etc/profile" from my .zlogin to .

Re: move "source /etc/profile" from .zlogin to .zprofile

2018-10-13 Thread Meiyo Peng
Hi Chris, /etc/profile should do the preparation work for users settings in .zshrc. But since .zlogin is sourced after .zshrc, it will override users settings in .zshrc. It resets $PATH and many other environment variables. This is counterintuitive. You can find what archlinux did here: https://w

move "source /etc/profile" from .zlogin to .zprofile

2018-10-13 Thread Meiyo Peng
shrc and should not be used for alias definitions, options, environment variable settings, etc. Especially "as a general rule, it should not change the shell environment at all". I think it's better to source /etc/profile from ~/.zprofile. Meiyo Peng