Package: src:actiona
Version: 3.9.1-1

Dear maintainer:

According to the build log, this is the contents of the "actionaz" package:

drwxr-xr-x root/root         0 2016-04-15 17:22 ./
drwxr-xr-x root/root         0 2016-04-15 17:22 ./usr/
drwxr-xr-x root/root         0 2016-04-15 17:22 ./usr/share/
drwxr-xr-x root/root         0 2016-04-15 17:22 ./usr/share/doc/
drwxr-xr-x root/root         0 2016-04-15 17:22 ./usr/share/doc/actionaz/
lrwxrwxrwx root/root         0 2016-04-15 17:22 
./usr/share/doc/actionaz/CHANGELOG.gz -> changelog.gz
-rw-r--r-- root/root      1204 2015-12-19 10:17 
./usr/share/doc/actionaz/changelog.Debian.gz
-rw-r--r-- root/root      4573 2015-11-04 19:46 
./usr/share/doc/actionaz/changelog.gz
-rw-r--r-- root/root      2258 2015-12-19 10:21 
./usr/share/doc/actionaz/copyright

However, "dpkg-buildpackage -A" takes more than 15 minutes
(in my computer) to generate it, which is quite suboptimal.

The following patch tries to fix that. The package already uses "dh"
so you will see that the patch is reasonable and clean.

[ Note: No "Arch: any" package has been harmed in creating the patch ]

Thanks.
--- a/debian/rules
+++ b/debian/rules
@@ -12,10 +12,14 @@ export QT_SELECT := qt5
 %:
        dh $@
 
-override_dh_auto_configure:
+override_dh_auto_configure-indep:
+
+override_dh_auto_configure-arch:
        dh_auto_configure -- DEFINES+=ACT_NO_UPDATER
 
-override_dh_auto_build:
+override_dh_auto_build-indep:
+
+override_dh_auto_build-arch:
        dh_auto_build
        make locale_release
 

Reply via email to