Your message dated Fri, 3 Apr 2026 15:15:02 +0300
with message-id <ac-vRnUZk4_KSw17@localhost>
and subject line Fixed since 1.3.1+dfsg-6
has caused the Debian Bug report #913991,
regarding frogatto: please enable parallel building
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
913991: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=913991
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: frogatto
Version: 1.3.1+dfsg-4
Severity: wishlist
Tags: patch
Hi,
frogatto seems to build fine with multiple build jobs when building.
Thus, my suggestion is to enable the parallel build (reading the number
of jobs from DEB_BUILD_OPTIONS, and adding it to the make invocation)
to speed up the build when requested (see also Policy ยง4.9.1).
The patch also removes the DEB_BUILD_PARALLEL variable, which is not
used as no cdbs buildsystem class is used, and uses the MAKE variable
instead of directly invoking make.
Thanks,
--
Pino
--- a/debian/rules
+++ b/debian/rules
@@ -17,7 +17,9 @@ UPSTREAM_CLEAN_VERSION := $(shell echo $
DEB_DH_GENCONTROL_ARGS = -- -VUVersion=$(UPSTREAM_CLEAN_VERSION)
-DEB_BUILD_PARALLEL = 1
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+ NJOBS := -j $(patsubst parallel=%,%,$(filter
parallel=%,$(DEB_BUILD_OPTIONS)))
+endif
clean::
find -name \*.o -delete
@@ -26,7 +28,7 @@ clean::
rm -f game frogatto.6
build/frogatto:: frogatto.6
- make USE_CCACHE=no
+ $(MAKE) $(NJOBS) USE_CCACHE=no
frogatto.6: debian/frogatto.pod
pod2man --section=6 $< > $@
--- End Message ---
--- Begin Message ---
Version: 1.3.1+dfsg-6
frogatto (1.3.1+dfsg-6) unstable; urgency=medium
...
* Drop cdbs and use debhelper only; Bump debhelper to v13.
...
-- Martin Quinson <[email protected]> Thu, 25 Aug 2022 22:42:15 +0200
--- End Message ---