2021-04-30 GnuCash IRC logs

00:10:05 *** biggtimber_ has quit IRC
00:10:14 *** biggtimber_ has joined #gnucash
00:49:14 *** jervin has joined #gnucash
01:00:24 *** Mechtilde has joined #gnucash
01:04:13 *** jervin has quit IRC
01:06:19 *** fell has quit IRC
01:07:38 *** fell has joined #gnucash
01:07:38 *** ChanServ sets mode: +o fell
01:14:47 *** sbluhm has joined #gnucash
01:14:48 *** ChanServ sets mode: +v sbluhm
01:15:17 <fell> jralls, we have the arch issue also in docs.
01:21:39 *** jervin has joined #gnucash
01:24:34 *** jervin has quit IRC
01:32:02 *** sbluhm has quit IRC
01:40:37 *** frakturfreak has quit IRC
01:50:13 *** sbluhm has joined #gnucash
01:50:13 *** ChanServ sets mode: +v sbluhm
01:54:39 *** frakturfreak has joined #gnucash
02:08:06 *** Mechtilde has quit IRC
02:18:09 *** jervin has joined #gnucash
02:22:01 *** Bambuzel has joined #gnucash
02:22:20 *** jervin has quit IRC
02:30:29 *** jervin has joined #gnucash
02:58:47 *** jervin has quit IRC
03:10:58 *** raeburn has quit IRC
03:14:23 *** gjanssens has joined #gnucash
03:14:24 *** ChanServ sets mode: +o gjanssens
03:26:16 *** Bambuzel has quit IRC
03:32:40 *** Bambuzel has joined #gnucash
03:39:05 *** Mechtilde has joined #gnucash
04:18:44 *** field^Mop has joined #gnucash
04:21:03 *** Bambuzel has quit IRC
04:25:57 *** User_ has joined #gnucash
04:26:54 *** Bambuzel has joined #gnucash
04:32:20 *** mikee has quit IRC
04:33:01 *** mikee has joined #gnucash
04:37:03 *** Bambuzel has quit IRC
04:38:26 *** Bambuzel has joined #gnucash
04:57:49 *** Aussie_matt has quit IRC
05:32:27 *** Hrisfur has joined #gnucash
05:32:27 *** ChanServ sets mode: +v Hrisfur
06:00:46 *** Hrisfur1 has joined #gnucash
06:00:47 *** ChanServ sets mode: +v Hrisfur1
06:01:52 *** Hrisfur has quit IRC
06:01:52 *** Hrisfur1 is now known as Hrisfur
06:12:39 *** chris_ has joined #gnucash
06:12:39 *** gncbot sets mode: +o chris_
06:14:05 *** chris has quit IRC
06:14:47 *** chris has joined #gnucash
06:14:48 *** ChanServ sets mode: +v chris
06:14:51 *** gncbot sets mode: +o chris
06:16:34 *** chris_ has quit IRC
06:27:42 *** sbluhm has quit IRC
06:40:44 *** field^Mop has quit IRC
06:41:27 *** storyjesse has joined #gnucash
06:47:00 *** sbluhm has joined #gnucash
06:47:00 *** ChanServ sets mode: +v sbluhm
06:50:46 *** suukim has joined #gnucash
07:07:15 *** sbluhm has quit IRC
07:34:16 *** suukim has quit IRC
07:40:38 <warlord> fell, FYI, docs build failed overnight.
07:48:12 *** Hrisfur has quit IRC
07:49:24 <fell> Warlord, do you have some more info?
07:50:04 <warlord> Nope; the build doesn't log why it failed, just that it did.
07:52:20 <fell> The win and FP logs have no indication …
07:54:12 *** sbluhm has joined #gnucash
08:01:48 <fell> I checked out maint, recoonfigured, make check without failure.
08:02:26 <fell> Your build is still autotools based, warllord?
08:03:21 <fell> Before 5.0 you have to switch to cake.
08:03:35 <fell> cmake
08:14:45 *** Jimraehl1 has joined #gnucash
08:15:22 *** Jimraehl1 has quit IRC
08:18:25 *** mydogsnameisrudy has joined #gnucash
08:21:01 *** mydogsnameisrudy has quit IRC
08:28:08 <chris> CDB-Man: merged ifrs report... enjoy... (nothing changed other than name)
08:41:35 <fell> warlord ^^
08:47:52 <warlord> fell, this is the code that's run to build the docs:
08:47:54 <warlord> git checkout $branch -q >/dev/null 2>&1 || my_die "git checkout failed."
08:47:54 <warlord> git fetch -q >/dev/null 2>&1 || my_die "git fetch failed."
08:47:54 <warlord> git reset --hard origin/$branch -q >/dev/null 2>&1 || my_die "git reset fai
08:47:54 <warlord> led."
08:47:54 <warlord> # Compute the version from the configure script
08:47:55 <warlord> if [ -f configure.ac ] ; then
08:47:57 <warlord> VERSION=`grep AC_INIT configure.ac | awk '{print $2}' | sed -e 's/\[//'
08:48:01 <warlord> -e 's/\],//'`
08:48:03 <warlord> else
08:48:05 <warlord> VERSION=`util/gnc-vcs-info -r .`
08:48:07 <warlord> fi
08:48:09 <warlord> cd $docdir || my_die "chdir to $docdir failed."
08:48:11 <warlord> if [ -f Makefile.am ] ; then
08:48:13 <warlord> touch Makefile || my_die "touch Makefile failed."
08:48:15 <warlord> make -f Makefile.am doxygen.cfg top_srcdir=$top_srcdir VERSION="$VERSIO
08:48:17 <warlord> N" >/dev/null 2>&1 || my_die "could not build doxygen.cfg."
08:48:19 <warlord> else
08:48:21 <warlord> rm -f doxygen.cfg.tmp
08:48:23 <warlord> sed < doxygen.cfg.in > doxygen.cfg.tmp \
08:48:25 <warlord> -e 's:${CMAKE_SOURCE_DIR}'":${top_srcdir}:g; s:@VERSION@:${VERSION}
08:48:27 <warlord> :g"
08:48:31 <warlord> mv doxygen.cfg.tmp doxygen.cfg
08:48:33 <warlord> fi
08:48:35 <warlord> rm -rf html refman.pdf
08:48:37 <warlord> $doxygen doxygen.cfg || my_die "make doc failed."
08:55:39 <warlord> So if configure.ac isn't there, it bypasses it.
09:01:32 <fell> But CWehli added new files to help/de
09:06:27 <warlord> oops, sorry, it was gnucash-docs that failed..
09:06:36 <warlord> ... and that DOES require configure.
09:06:56 <warlord> git checkout $branch -q >/dev/null 2>&1 || my_die "git checkout failed."
09:06:57 <warlord> git fetch -q >/dev/null 2>&1 || my_die "git fetch failed."
09:06:57 <warlord> git reset --hard origin/$branch -q >/dev/null 2>&1 || my_die "git reset failed.
09:06:57 <warlord> "
09:06:57 <warlord> # build configure
09:06:57 <warlord> ./autogen.sh >/dev/null 2>&1 || my_die "autogen failed."
09:07:01 <warlord> # run configure
09:07:03 <warlord> ./configure --prefix=$prefix --with-mobi >/dev/null 2>&1 || my_die "configure f
09:07:05 <warlord> ailed"
09:07:07 <warlord> # build the docs as HTML and PDF
09:07:09 <warlord> make html pdf epub mobi >/dev/null 2>&1 || my_die "failed building gnucash-docs
09:07:11 <warlord> "
09:08:19 <warlord> fell, the gnucash-docs repo still uses auto-tools.
09:08:31 <warlord> So my guess is that the new files were not properly added to Makefile.am
09:11:26 <fell> You should update before the first beta on2023-01-08
09:12:12 *** sbluhm has quit IRC
09:22:09 *** Mechtilde has quit IRC
09:23:57 *** Bambuzel has quit IRC
09:28:34 <warlord> I suspect code will get upgraded before then -- I'll worry about it then -- that's more than 18 months away.
09:28:50 <warlord> until then -- auto-tools needs to be kept up to date with new files.
09:29:09 *** Mechtilde has joined #gnucash
09:36:16 <chris> CDB-Man: you can call this report "90% Maple-free syrup"
09:36:54 <CDB-Man> You mean "free from Maple syrup" :)
09:37:14 <chris> maybe, still sickly sweet though
10:00:04 *** sbluhm has joined #gnucash
10:00:04 *** ChanServ sets mode: +v sbluhm
10:04:34 *** sbluhm has quit IRC
10:06:05 *** suukim has joined #gnucash
10:12:57 *** sbluhm has joined #gnucash
10:12:58 *** ChanServ sets mode: +v sbluhm
10:30:13 *** sbluhm has quit IRC
10:39:13 *** NoobAlice has joined #gnucash
10:40:18 *** jervin has joined #gnucash
10:45:57 *** jervin has quit IRC
10:46:03 *** jervin has joined #gnucash
10:46:12 *** jervin has quit IRC
10:50:19 *** Mechtilde has quit IRC
10:52:05 *** sbluhm has joined #gnucash
10:52:05 *** ChanServ sets mode: +v sbluhm
10:52:13 *** waitman has quit IRC
10:52:22 *** waitman has joined #gnucash
11:01:04 *** sbluhm has quit IRC
11:03:19 *** jervin has joined #gnucash
11:04:48 <fell> in https://github.com/fellen/gnucash/runs/2472088349?check_suite_focus=true I See for arch. fr_FR.UTF-8...[error] cannot open locale definition file `fr_FR': No such file or directory
11:05:12 *** jcarl43 has joined #gnucash
11:05:12 *** ChanServ sets mode: +v jcarl43
11:06:59 *** jervin has quit IRC
11:08:39 *** bertbob has quit IRC
11:10:06 *** bertbob has joined #gnucash
11:10:07 *** ChanServ sets mode: +v bertbob
11:10:11 *** ArtGravity has joined #gnucash
11:10:11 *** ChanServ sets mode: +v ArtGravity
11:10:15 *** sbluhm has joined #gnucash
11:10:16 *** ChanServ sets mode: +v sbluhm
11:28:34 <fell> make pdf returns 1: The column-number or number of cells in the row overflows the number of fo:table-columns specified for the table. (See position 3046:283) - will look later.
11:31:55 *** storyjesse has quit IRC
11:31:59 *** sbluhm has quit IRC
11:51:27 *** sbluhm has joined #gnucash
11:51:28 *** ChanServ sets mode: +v sbluhm
11:56:42 *** chris has quit IRC
12:08:41 *** sbluhm has quit IRC
12:29:56 *** linas has joined #gnucash
12:31:20 *** Mechtilde has joined #gnucash
12:37:06 *** mydogsnameisrudy has joined #gnucash
12:38:28 *** jervin has joined #gnucash
12:39:50 *** mydogsnameisrudy has quit IRC
12:42:17 <warlord> F..K -- Just lost power.. Heard a loud explosion, so I suspect it's going to be out for a while.
12:57:23 *** suukim has quit IRC
13:01:01 *** jervin has quit IRC
13:08:52 <warlord> Power company says 3:30pm ETR. Let's see if my UPS lasts that long. *fingers crossed*
13:16:33 *** guak has joined #gnucash
14:24:54 *** sbluhm has joined #gnucash
14:24:55 *** ChanServ sets mode: +v sbluhm
14:31:16 *** jervin has joined #gnucash
14:40:57 <jralls> warlord, I thought you had a generator.
14:44:04 <jralls> fell, https://gitlab.archlinux.org/archlinux/archlinux-docker/-/issues/55. Why de_DE works and fr_FR doesn't is weird, but we don't have fr_FR translations in docs. Ideally we'd have it, jp, and pt but the first two haven't changed in many years and even pt doesn't change that often. I think we can safely do CI with just en and de.
15:00:40 *** ArtGravity has quit IRC
15:09:32 *** David has joined #gnucash
15:11:28 *** warlord has quit IRC
15:17:55 <jralls> fell, I don't see any CI problem in https://github.com/gnucash/gnucash-docs. We don't even do CI on ArchLinux there, just Ubuntu-18.04.
15:21:47 <fell> Oh, it was from code, but reached me after my next commit to docs.Sorry for the noise.
15:24:05 *** warlord has joined #gnucash
15:27:35 *** warlord has quit IRC
15:29:41 <jralls> fell, OK. I think I've got it. It worked in my github repo, just pushed to code.
15:31:51 *** warlord has joined #gnucash
15:36:37 *** warlord has quit IRC
15:39:49 *** warlord has joined #gnucash
15:43:39 *** sbluhm has quit IRC
15:43:40 *** warlord has quit IRC
15:46:03 *** warlord has joined #gnucash
16:01:08 *** warlord has quit IRC
16:47:37 *** ArtGravity has joined #gnucash
16:47:37 *** ChanServ sets mode: +v ArtGravity
17:10:52 *** gncbot has joined #gnucash
17:37:42 *** gjanssens has quit IRC
17:56:35 *** raeburn has joined #gnucash
18:08:36 *** warlord has joined #gnucash
18:09:59 <warlord> jralls, we had one at the old house. Don't have one here.. But this particular outage appears to be from a transformer blowing and not something more "regular".
18:09:59 *** jw4 has quit IRC
18:10:45 <warlord> Anyways, power came back just around 5. Unfortunately the UPS died around 4:35-4:45.
18:10:47 *** jw4 has joined #gnucash
18:10:47 *** ChanServ sets mode: +v jw4
18:10:56 *** ChanServ sets mode: +qo warlord warlord
18:13:02 <jralls> Oh well. Murphy's law of UPSes: Power will always be out for 10 minutes longer than your battery capacity, regardless of how big a battery you have.
18:13:08 *** jralls sets mode: +o gncbot
18:13:54 <warlord> jralls, yeah. Sorry about that. Then, of course, it takes 15 minutes for ovirt to realize it's been rebooted... And then several more minutes for all the VMs to come back up.
18:14:05 <warlord> I'll send email later.. Right now my laptop is being wonky, and it's almost dinner time.
18:16:22 <jralls> OK, no worries. I got the one commit I needed pushed to code just before your transformer exploded.
18:16:52 *** guak has quit IRC
18:18:28 <jralls> Huh, no, you'd blown up well before I pushed. That's interesting, when my power goes the network goes with it and running the generator doesn't bring it back.
18:30:32 <warlord> My network runs so long as I have power (provided the network fiber isn't cut)
18:47:28 *** Pegasus_RPG has joined #gnucash
18:53:11 *** Pegasus_RPG has quit IRC
18:53:34 *** jcarl43 has quit IRC
19:00:04 <warlord> status email sent.
19:46:07 *** storyjesse has joined #gnucash
20:01:25 *** David has quit IRC
20:07:35 *** User_ has quit IRC
21:12:56 *** storyjesse has quit IRC
22:55:30 *** ArtGravity has quit IRC