bug#42698: easyrpg package fails to build

2020-08-03 Thread Vinícius dos Santos Oliveira
Here's the tail of the build log: CXX src/libeasyrpg_player_a-game_actors.o src/game_actor.cpp: In member function ‘virtual int Game_Actor::GetBattleX() const’: src/game_actor.cpp:919:28: error: ‘const class RPG::Terrain’ has no member named ‘grid_c’; did you mean ‘grid_top_y’? right =

bug#42698: easyrpg package fails to build

2020-08-03 Thread Efraim Flashner
Thanks. Fixed with 948b59dfd5caa8fe5fc0feb3300f12b37820e23f -- Efraim Flashner אפרים פלשנר GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted signature.asc Description: PGP signature

bug#33542: Strange tarball download error on Hydra

2020-08-03 Thread Ludovic Courtès
Hi, Mark H Weaver skribis: > Mark H Weaver writes: > >> On Hydra, the armhf builds for al variants of 'linux-libre-4.14.84' >> failed because the tarball download failed. See below for the build >> log. Strangely, it was unable to find the (guix base16) module. > > I now see that 89f1fee8e788

bug#26302: Multilingual web site is on-line!

2020-08-03 Thread Ludovic Courtès
Hi, "pelzflorian (Florian Pelz)" skribis: > Since there is no Makefile, I suppose it is enough to put the website > directory of the guix-artwork repo in a tar file. Sounds good to me. > What version number should we give it? That of Guix, or a MMDD? > I suppose the version number should

bug#41063: emacs-guix: unrecognized keyword error

2020-08-03 Thread Ludovic Courtès
Hi Michael, Michael Rohleder skribis: >> https://gitlab.com/emacs-guix/emacs-guix/-/issues/18 > > This is fixed with the latest (gitlab) version: > > From 1c58fd7f2de4623bb051e7f8472e703290663e64 Mon Sep 17 00:00:00 2001 > From: Michael Rohleder > Date: Fri, 31 Jul 2020 08:33:43 +0200 > Subje

bug#42162: Recovering source tarballs

2020-08-03 Thread Timothy Sample
Hi Ludovic, Ludovic Courtès writes: > Wooohoo! Is it that time of the year when people give presents to one > another? I can’t believe it. :-) Not to be too cynical, but I think it’s just the time of year that I get frustrated with what I should be working on, and start fantasizing about gre

bug#42702: catch2 build failure on ARM

2020-08-03 Thread maxim . cournoyer
On ARM systems, (armhf-linux, aarch64-linux), the catch2 package fails to build, due to a compilation warning treated as an error: [ 90%] Building CXX object CMakeFiles/SelfTest.dir/include/reporters/catch_reporter_xml.cpp.o /gnu/store/ap7hgyv4rjqmhg4a6cb6cypsh3g1f5q4-gcc-7.5.0/bin/c++ -I/tmp

bug#42702: catch2 build failure on ARM

2020-08-03 Thread maxim . cournoyer
maxim.courno...@gmail.com writes: > On ARM systems, (armhf-linux, aarch64-linux), the catch2 package fails to > build, due to a > compilation warning treated as an error: > > [ 90%] Building CXX object > CMakeFiles/SelfTest.dir/include/reporters/catch_reporter_xml.cpp.o > /gnu/store/ap7hgyv4rjqm

bug#42601: Guix install bug: error: Unbound variable: ~S

2020-08-03 Thread maxim . cournoyer
Hi, Bengt Richter writes: > Hi, > > On +2020-07-30 00:15:56 +0200, Ricardo Wurmus wrote: >> >> Jan Wielkiewicz writes: >> >> > Dnia 2020-07-29, o godz. 22:17:01 >> > Ricardo Wurmus napisał(a): >> > >> >> >> >> “avr-toolchain” is a procedure, not a package. Use >> >> “avr-toolchain-4.9” or

bug#42162: Recovering source tarballs

2020-08-03 Thread Ricardo Wurmus
zimoun writes: > Yes, but for example all the packages in gnu/packages/bioconductor.scm > could be "git-fetch". Today the source is over url-fetch but it could > be over git-fetch with https://git.bioconductor.org/packages/flowCore or > g...@git.bioconductor.org:packages/flowCore. We should d

bug#42702: catch2 build failure on ARM

2020-08-03 Thread Danny Milosavljevic
Hi Maxim, On Mon, 03 Aug 2020 14:22:21 -0400 maxim.courno...@gmail.com wrote: > } else if ('\0' <= value && value < ' ') { > ~^~~~ I think that this tries to find non-printable characters, so those with ASCII codes 0 < value < 32 and 128 < value < 255. But char is u