unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Build fails on 'doc/guix.de.texi': @ref reference to nonexistent node...
@ 2020-04-13  9:02 elaexuotee
  2020-04-17 20:37 ` Christopher Baines
  0 siblings, 1 reply; 2+ messages in thread
From: elaexuotee @ 2020-04-13  9:02 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 844 bytes --]

Attempting to define and build my own package for the first time, I am havi=
ng trouble
simply setting up the basic environment. In particular, make is failing wit=
h a
plethora of "@ref reference to nonexistent node" errors on doc/*.de.texi fi=
les.

It looks like issues #35913 and #35786 may be related; however, at the mome=
nt
issues.guix.gnu.org is returning 500 when I attempt to open them.

Attached is the output of make, and below is how I am getting to that point=
:

    $ guix environment --pure guix --ad-hoc coreutils findutils which
    $ ./bootstrap
    $ ./configure --localstatedir=3D/var
    $ make

Am I just flubbing up something simple? For clarity, this is happening on a=
 freshly
pulled master:

    $ git rev-parse HEAD
    f6145358c7d33e73c0708bbe400e6e8e65512ef3


[-- Attachment #1.2: make.log --]
[-- Type: plain/text, Size: 47367 bytes --]

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Build fails on 'doc/guix.de.texi': @ref reference to nonexistent node...
  2020-04-13  9:02 Build fails on 'doc/guix.de.texi': @ref reference to nonexistent node elaexuotee
@ 2020-04-17 20:37 ` Christopher Baines
  0 siblings, 0 replies; 2+ messages in thread
From: Christopher Baines @ 2020-04-17 20:37 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 1288 bytes --]


elaexuotee@wilsonb.com writes:

> Attempting to define and build my own package for the first time, I am havi=
> ng trouble
> simply setting up the basic environment. In particular, make is failing wit=
> h a
> plethora of "@ref reference to nonexistent node" errors on doc/*.de.texi fi=
> les.
>
> It looks like issues #35913 and #35786 may be related; however, at the mome=
> nt
> issues.guix.gnu.org is returning 500 when I attempt to open them.
>
> Attached is the output of make, and below is how I am getting to that point=
> :
>
>     $ guix environment --pure guix --ad-hoc coreutils findutils which
>     $ ./bootstrap
>     $ ./configure --localstatedir=3D/var
>     $ make
>
> Am I just flubbing up something simple? For clarity, this is happening on a=
>  freshly
> pulled master:
>
>     $ git rev-parse HEAD
>     f6145358c7d33e73c0708bbe400e6e8e65512ef3

Hey,

Sorry you're having problems. I've tried cloning the same commit you
did, and running through the same commands, but unfortunately I couldn't
reproduce the issue. I've attached the log output I get, starting at a
similar point to the log you provided.

Are you still having issues? Unfortunately I'm no expert on the
translated documentation, so I don't have any specific advice to offer
at the moment.

Chris


[-- Attachment #1.2: make.log --]
[-- Type: text/plain, Size: 30422 bytes --]

make  all-recursive
make[1]: Entering directory '/tmp/guix'
Making all in po/guix
make[2]: Entering directory '/tmp/guix/po/guix'
make guix.pot-update
make[3]: Entering directory '/tmp/guix/po/guix'
sed -e '/^#/d' remove-potcdate.sin > t-remove-potcdate.sed
mv t-remove-potcdate.sed remove-potcdate.sed
if LC_ALL=C grep 'GNU guix' ../../* 2>/dev/null | grep -v 'libtool:' >/dev/null; then \
  package_gnu='GNU '; \
else \
  package_gnu=''; \
fi; \
if test -n 'ludo@gnu.org' || test 'bug-guix@gnu.org' = '@'PACKAGE_BUGREPORT'@'; then \
  msgid_bugs_address='ludo@gnu.org'; \
else \
  msgid_bugs_address='bug-guix@gnu.org'; \
fi; \
case `/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/xgettext --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
  '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \
    /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/xgettext --default-domain=guix --directory=../.. \
      --add-comments=TRANSLATORS: --from-code=UTF-8 --keyword=G_ --keyword=N_:1,2 --keyword=message --keyword=description --keyword=n_  \
      --files-from=./POTFILES.in \
      --copyright-holder='Ludovic Courtès' \
      --msgid-bugs-address="$msgid_bugs_address" \
    ;; \
  *) \
    /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/xgettext --default-domain=guix --directory=../.. \
      --add-comments=TRANSLATORS: --from-code=UTF-8 --keyword=G_ --keyword=N_:1,2 --keyword=message --keyword=description --keyword=n_  \
      --files-from=./POTFILES.in \
      --copyright-holder='Ludovic Courtès' \
      --package-name="${package_gnu}guix" \
      --package-version='UNKNOWN' \
      --msgid-bugs-address="$msgid_bugs_address" \
    ;; \
esac
test ! -f guix.po || { \
  if test -f ./guix.pot; then \
    sed -f remove-potcdate.sed < ./guix.pot > guix.1po && \
    sed -f remove-potcdate.sed < guix.po > guix.2po && \
    if cmp guix.1po guix.2po >/dev/null 2>&1; then \
      rm -f guix.1po guix.2po guix.po; \
    else \
      rm -f guix.1po guix.2po ./guix.pot && \
      mv guix.po ./guix.pot; \
    fi; \
  else \
    mv guix.po ./guix.pot; \
  fi; \
}
make[3]: Leaving directory '/tmp/guix/po/guix'
test ! -f ./guix.pot || \
  test -z "cs.gmo da.gmo de.gmo en@boldquot.gmo en@quot.gmo eo.gmo es.gmo fr.gmo hu.gmo pl.gmo pt_BR.gmo sr.gmo sv.gmo ta.gmo vi.gmo zh_CN.gmo" || make cs.gmo da.gmo de.gmo en@boldquot.gmo en@quot.gmo eo.gmo es.gmo fr.gmo hu.gmo pl.gmo pt_BR.gmo sr.gmo sv.gmo ta.gmo vi.gmo zh_CN.gmo
make[3]: Entering directory '/tmp/guix/po/guix'
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=cs cs.po guix.pot
............................................................................................................................................................................................................................................................................................ done.
rm -f cs.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o cs.gmo cs.po
cs.po: 58 translated messages, 128 fuzzy translations, 760 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=da da.po guix.pot
............................................................................................................................. done.
rm -f da.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o da.gmo da.po
da.po: 852 translated messages, 41 fuzzy translations, 53 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=de de.po guix.pot
.............................................................................................................. done.
rm -f de.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o de.gmo de.po
de.po: 943 translated messages, 3 fuzzy translations.
make[4]: Entering directory '/tmp/guix/po/guix'
make en@boldquot.po-update
make[5]: Entering directory '/tmp/guix/po/guix'
sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' ./insert-header.sin > en@boldquot.insert-header
en@boldquot:
en@boldquot:
msgmerge  --lang=en@boldquot en@boldquot.po guix.pot -o en@boldquot.new.po
............................................................................................................... done.
make[5]: Leaving directory '/tmp/guix/po/guix'
make[4]: Leaving directory '/tmp/guix/po/guix'
rm -f en@boldquot.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o en@boldquot.gmo en@boldquot.po
en@boldquot.po: 946 translated messages.
make[4]: Entering directory '/tmp/guix/po/guix'
make en@quot.po-update
make[5]: Entering directory '/tmp/guix/po/guix'
sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' ./insert-header.sin > en@quot.insert-header
en@quot:
en@quot:
msgmerge  --lang=en@quot en@quot.po guix.pot -o en@quot.new.po
.......................................................................................................... done.
make[5]: Leaving directory '/tmp/guix/po/guix'
make[4]: Leaving directory '/tmp/guix/po/guix'
rm -f en@quot.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o en@quot.gmo en@quot.po
en@quot.po: 946 translated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=eo eo.po guix.pot
............................................................................................................................................................................................................................................................................................................................................................... done.
eo.po:837: warning: internationalized messages should not contain the '\r' escape sequence
eo.po:837: warning: internationalized messages should not contain the '\r' escape sequence
rm -f eo.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o eo.gmo eo.po
eo.po: 191 translated messages, 216 fuzzy translations, 539 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=es es.po guix.pot
............................................................................................................................................. done.
rm -f es.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o es.gmo es.po
es.po: 943 translated messages, 3 fuzzy translations.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=fr fr.po guix.pot
......................................................................................................................................................................................... done.
rm -f fr.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o fr.gmo fr.po
fr.po: 943 translated messages, 3 fuzzy translations.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=hu hu.po guix.pot
......................................................................................................................................................................................................................................................................................................................................................... done.
rm -f hu.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o hu.gmo hu.po
hu.po: 139 translated messages, 215 fuzzy translations, 592 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=pl pl.po guix.pot
............................................................................................................................................................................................................................................. done.
rm -f pl.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o pl.gmo pl.po
pl.po: 66 translated messages, 68 fuzzy translations, 812 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=pt_BR pt_BR.po guix.pot
................................................................................................................ done.
rm -f pt_BR.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o pt_BR.gmo pt_BR.po
pt_BR.po: 943 translated messages, 3 fuzzy translations.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=sr sr.po guix.pot
................................................................................................................................................................................................................................................................................................................................... done.
rm -f sr.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o sr.gmo sr.po
sr.po: 120 translated messages, 213 fuzzy translations, 613 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=sv sv.po guix.pot
.......................................................................................................................................................................... done.
rm -f sv.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o sv.gmo sv.po
sv.po: 464 translated messages, 39 fuzzy translations, 443 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=ta ta.po guix.pot
............................................................................................................................ done.
rm -f ta.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o ta.gmo ta.po
ta.po: 226 translated messages, 7 fuzzy translations, 713 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=vi vi.po guix.pot
.......................................................................................................................................................................................................................................................................................................................................................... done.
rm -f vi.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o vi.gmo vi.po
vi.po: 168 translated messages, 220 fuzzy translations, 558 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=zh_CN zh_CN.po guix.pot
.......................................................................................................................................................................................................................... done.
rm -f zh_CN.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o zh_CN.gmo zh_CN.po
zh_CN.po: 77 translated messages, 88 fuzzy translations, 781 untranslated messages.
make[3]: Leaving directory '/tmp/guix/po/guix'
touch stamp-po
make[2]: Leaving directory '/tmp/guix/po/guix'
Making all in po/packages
make[2]: Entering directory '/tmp/guix/po/packages'
make guix-packages.pot-update
make[3]: Entering directory '/tmp/guix/po/packages'
sed -e '/^#/d' remove-potcdate.sin > t-remove-potcdate.sed
mv t-remove-potcdate.sed remove-potcdate.sed
if LC_ALL=C grep 'GNU guix' ../../* 2>/dev/null | grep -v 'libtool:' >/dev/null; then \
  package_gnu='GNU '; \
else \
  package_gnu=''; \
fi; \
if test -n 'ludo@gnu.org' || test 'bug-guix@gnu.org' = '@'PACKAGE_BUGREPORT'@'; then \
  msgid_bugs_address='ludo@gnu.org'; \
else \
  msgid_bugs_address='bug-guix@gnu.org'; \
fi; \
case `/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/xgettext --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
  '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \
    /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/xgettext --default-domain=guix-packages --directory=../.. \
      --add-comments=TRANSLATORS: --language=Scheme --from-code=UTF-8 --keyword=synopsis --keyword=description  \
      --files-from=./POTFILES.in \
      --copyright-holder='Ludovic Courtès' \
      --msgid-bugs-address="$msgid_bugs_address" \
    ;; \
  *) \
    /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/xgettext --default-domain=guix-packages --directory=../.. \
      --add-comments=TRANSLATORS: --language=Scheme --from-code=UTF-8 --keyword=synopsis --keyword=description  \
      --files-from=./POTFILES.in \
      --copyright-holder='Ludovic Courtès' \
      --package-name="${package_gnu}guix" \
      --package-version='UNKNOWN' \
      --msgid-bugs-address="$msgid_bugs_address" \
    ;; \
esac
test ! -f guix-packages.po || { \
  if test -f ./guix-packages.pot; then \
    sed -f remove-potcdate.sed < ./guix-packages.pot > guix-packages.1po && \
    sed -f remove-potcdate.sed < guix-packages.po > guix-packages.2po && \
    if cmp guix-packages.1po guix-packages.2po >/dev/null 2>&1; then \
      rm -f guix-packages.1po guix-packages.2po guix-packages.po; \
    else \
      rm -f guix-packages.1po guix-packages.2po ./guix-packages.pot && \
      mv guix-packages.po ./guix-packages.pot; \
    fi; \
  else \
    mv guix-packages.po ./guix-packages.pot; \
  fi; \
}
make[3]: Leaving directory '/tmp/guix/po/packages'
test ! -f ./guix-packages.pot || \
  test -z "da.gmo de.gmo en@boldquot.gmo en@quot.gmo eo.gmo es.gmo fr.gmo hu.gmo pl.gmo pt_BR.gmo sr.gmo vi.gmo zh_CN.gmo" || make da.gmo de.gmo en@boldquot.gmo en@quot.gmo eo.gmo es.gmo fr.gmo hu.gmo pl.gmo pt_BR.gmo sr.gmo vi.gmo zh_CN.gmo
make[3]: Entering directory '/tmp/guix/po/packages'
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=da da.po guix-packages.pot
............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................ done.
rm -f da.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o da.gmo da.po
da.po: 647 translated messages, 161 fuzzy translations, 3577 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=de de.po guix-packages.pot
............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................. done.
rm -f de.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o de.gmo de.po
de.po: 124 translated messages, 4261 untranslated messages.
make[4]: Entering directory '/tmp/guix/po/packages'
make en@boldquot.po-update
make[5]: Entering directory '/tmp/guix/po/packages'
sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' ./insert-header.sin > en@boldquot.insert-header
en@boldquot:
en@boldquot:
msgmerge  --lang=en@boldquot en@boldquot.po guix-packages.pot -o en@boldquot.new.po
.............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................. done.
make[5]: Leaving directory '/tmp/guix/po/packages'
make[4]: Leaving directory '/tmp/guix/po/packages'
rm -f en@boldquot.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o en@boldquot.gmo en@boldquot.po
en@boldquot.po: 4385 translated messages.
make[4]: Entering directory '/tmp/guix/po/packages'
make en@quot.po-update
make[5]: Entering directory '/tmp/guix/po/packages'
sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' ./insert-header.sin > en@quot.insert-header
en@quot:
en@quot:
msgmerge  --lang=en@quot en@quot.po guix-packages.pot -o en@quot.new.po
............................................................................................................................................................................................................................................................................................................................................................................................................................................................................... done.
make[5]: Leaving directory '/tmp/guix/po/packages'
make[4]: Leaving directory '/tmp/guix/po/packages'
rm -f en@quot.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o en@quot.gmo en@quot.po
en@quot.po: 4385 translated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=eo eo.po guix-packages.pot
........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................ done.
rm -f eo.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o eo.gmo eo.po
eo.po: 172 translated messages, 251 fuzzy translations, 3962 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=es es.po guix-packages.pot
......................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... done.
rm -f es.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o es.gmo es.po
es.po: 891 translated messages, 245 fuzzy translations, 3249 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=fr fr.po guix-packages.pot
.......................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... done.
rm -f fr.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o fr.gmo fr.po
fr.po: 617 translated messages, 3768 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=hu hu.po guix-packages.pot
.................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... done.
rm -f hu.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o hu.gmo hu.po
hu.po: 242 translated messages, 74 fuzzy translations, 4069 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=pl pl.po guix-packages.pot
.................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... done.
rm -f pl.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o pl.gmo pl.po
pl.po: 41 translated messages, 74 fuzzy translations, 4270 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=pt_BR pt_BR.po guix-packages.pot
................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................. done.
rm -f pt_BR.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o pt_BR.gmo pt_BR.po
pt_BR.po: 16 translated messages, 22 fuzzy translations, 4347 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=sr sr.po guix-packages.pot
................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... done.
rm -f sr.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o sr.gmo sr.po
sr.po: 25 translated messages, 28 fuzzy translations, 4332 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=vi vi.po guix-packages.pot
.................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................. done.
rm -f vi.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o vi.gmo vi.po
vi.po: 15 translated messages, 20 fuzzy translations, 4350 untranslated messages.
/gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgmerge --update  --lang=zh_CN zh_CN.po guix-packages.pot
........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... done.
rm -f zh_CN.gmo && /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/msgfmt -c --statistics --verbose -o zh_CN.gmo zh_CN.po
zh_CN.po: 30 translated messages, 15 fuzzy translations, 4340 untranslated messages.
make[3]: Leaving directory '/tmp/guix/po/packages'
touch stamp-po
make[2]: Leaving directory '/tmp/guix/po/packages'
make[2]: Entering directory '/tmp/guix'
make[3]: Entering directory '/tmp/guix'
make[3]: Leaving directory '/tmp/guix'
Updating ./doc/version.texi
  MAKEINFO doc/guix.info
Updating ./doc/version-de.texi
  MAKEINFO doc/guix.de.info
Updating ./doc/version-es.texi
  MAKEINFO doc/guix.es.info
Updating ./doc/version-fr.texi
  MAKEINFO doc/guix.fr.info
Updating ./doc/version-ru.texi
  MAKEINFO doc/guix.ru.info
./doc/guix.ru.texi:946: warning: accent command `@,' must not be followed by whitespace
Wide character in warn at /gnu/store/0z8lnklkplk0q700p9md7vrakik61a54-profile/bin/makeinfo line 656.
./doc/guix.ru.texi:4016: warning: `.' or `,' must follow @xref, not д
Updating ./doc/version-zh_CN.texi
  MAKEINFO doc/guix.zh_CN.info
  MAKEINFO doc/guix-cookbook.info
  MAKEINFO doc/guix-cookbook.de.info
./doc/guix-cookbook.de.texi: warning: document without nodes
  CXX      nix/nix-daemon/guix_daemon-nix-daemon.o
  CXX      nix/nix-daemon/guix_daemon-guix-daemon.o
  CXX      nix/libstore/libstore_a-gc.o
  CXX      nix/libstore/libstore_a-globals.o
  CXX      nix/libstore/libstore_a-misc.o
  CXX      nix/libstore/libstore_a-references.o
  CXX      nix/libstore/libstore_a-store-api.o
  CXX      nix/libstore/libstore_a-optimise-store.o
  CXX      nix/libstore/libstore_a-local-store.o
  CXX      nix/libstore/libstore_a-build.o
  CXX      nix/libstore/libstore_a-pathlocks.o
  CXX      nix/libstore/libstore_a-derivations.o
  CXX      nix/libstore/libstore_a-builtins.o
  CXX      nix/libstore/libstore_a-sqlite.o
  AR       libstore.a
ar: `u' modifier ignored since `D' is the default (see `U')
  CXX      nix/libutil/libutil_a-archive.o
  CXX      nix/libutil/libutil_a-affinity.o
  CXX      nix/libutil/libutil_a-serialise.o
  CXX      nix/libutil/libutil_a-util.o
  CXX      nix/libutil/libutil_a-hash.o
  CXX      nix/libutil/libutil_a-gcrypt-hash.o
  AR       libutil.a
ar: `u' modifier ignored since `D' is the default (see `U')
  CXX      nix/boost/format/libformat_a-free_funcs.o
  CXX      nix/boost/format/libformat_a-parsing.o
  CXX      nix/boost/format/libformat_a-format_implementation.o
  AR       libformat.a
ar: `u' modifier ignored since `D' is the default (see `U')
  CXXLD    guix-daemon
  GEN      scripts/guix
Compiling Scheme modules...
[  0%] LOAD     guix/base16.scm
[  0%] LOAD     guix/base32.scm
[  0%] LOAD     guix/base64.scm
[  0%] LOAD     guix/ci.scm
[  0%] LOAD     guix/cpio.scm
[  0%] LOAD     guix/deprecation.scm
[  0%] LOAD     guix/docker.scm
[  0%] LOAD     guix/json.scm
[  1%] LOAD     guix/records.scm
[  1%] LOAD     guix/pki.scm
[  1%] LOAD     guix/progress.scm
[  1%] LOAD     guix/combinators.scm
[  1%] LOAD     guix/memoization.scm
[  1%] LOAD     guix/utils.scm
[  1%] LOAD     guix/sets.scm
[  1%] LOAD     guix/modules.scm
[  1%] LOAD     guix/download.scm


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 962 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-04-17 20:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-13  9:02 Build fails on 'doc/guix.de.texi': @ref reference to nonexistent node elaexuotee
2020-04-17 20:37 ` Christopher Baines

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).