Package Details: regina-rexx-doc 1:3.9.7-3

Git Clone URL: https://aur.archlinux.org/regina-rexx.git (read-only, click to copy)
Package Base: regina-rexx
Description: Documentation for Regina REXX and RegUtil (both in PDF), and some demo scripts
Upstream URL: https://regina-rexx.sourceforge.io/
Keywords: programming rexx scripting
Licenses: LGPL-2.0-or-later
Replaces: regina-rexx-das-doc
Submitter: kseistrup
Maintainer: kseistrup
Last Packager: kseistrup
Votes: 15
Popularity: 0.33
First Submitted: 2024-05-10 09:28 (UTC)
Last Updated: 2025-11-21 08:40 (UTC)

Dependencies (1)

Required by (1)

Sources (1)

Latest Comments

1 2 Next › Last »

kseistrup commented on 2025-11-26 06:44 (UTC)

@micwoj92, you're right. Thanks.

micwoj92 commented on 2025-11-23 19:40 (UTC)

Then it was only in package(), where the failure was in build step.

kseistrup commented on 2025-11-21 08:12 (UTC)

Thank you, Detective!

The package is now building with make -j1, as you suggested. What baffles me, though, is that we already had ptions=('!makeflags') down in the package_regina-rexx() function. According to PKGBUILD(5) that should disable the MAKEFLAGS setting. Or is it only if the user has set the environment variable that is it disabled?

micwoj92 commented on 2025-11-20 20:33 (UTC)

With -j2 it also builds. I have rebuilt 10 times and failures start to occur with 3 or more. So I think safest way is:

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -37,7 +37,7 @@ build() {
     --libdir=/usr/lib \
     --sysconfdir=/etc

-  make
+  make -j1
 }

 package_regina-rexx() {

And then to report to upstream

kseistrup commented on 2025-11-20 20:06 (UTC)

@micwoj92, I'm unsure if it makes a difference, but I use the “Convenience way” (mentioned on the DeveloperWiki) when building in a chroot. Just in case.

As for the MAKEFLAGS I have MAKEFLAGS="-j2", just to speed things up a little without taking over the machine. If the makeflags appear to be a problem, I can add options=('!makeflags) to the PKGBUILD.

micwoj92 commented on 2025-11-20 19:59 (UTC)

What is your MAKEFLAGS in /etc/makepkg.conf? When building with multiple cores I got this build error, but when running with make -j1 it works every time.

kseistrup commented on 2025-11-20 18:35 (UTC)

@micwoj92 The package builds here whether I choose to build/update the package directly from AUR, or in a clean chroot. No errors encounted.

micwoj92 commented on 2025-11-19 07:07 (UTC)

How are you building it? In clean chroot? https://wiki.archlinux.org/title/DeveloperWiki:Building_in_a_clean_chroot

kseistrup commented on 2025-11-18 19:27 (UTC)

Thanks. Apart from the errors you get it looks like what I see here. I'm sorry, I don't know what to suggest.

micwoj92 commented on 2025-11-18 19:19 (UTC)

Can entire build log be of any help? I've also included versions of packages installed. https://gist.github.com/micwoj92/c11a6db48c6a84888496ed08ab7a46a1