Bug#806048: iipimage: FTBFS when built with dpkg-buildpackage -A (No such file or directory)

2016-04-08 Thread Santiago Vila
tags 806048 + patch
thanks

The following patch should fix this issue, by using a new file called

debian/iipimage-server.install

instead of overriding dh_install. dh will know what it has to do in each case.

Thanks.diff --git a/debian/iipimage-server.install b/debian/iipimage-server.install
new file mode 100644
index 000..c202cf1
--- /dev/null
+++ b/debian/iipimage-server.install
@@ -0,0 +1,3 @@
+src/iipsrv.fcgi usr/lib/iipimage-server
+debian/iipsrv.conf  etc/apache2/mods-available
+debian/iipsrv.load  etc/apache2/mods-available
diff --git a/debian/rules b/debian/rules
index 04fe0cc..eaad717 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,11 +18,6 @@ override_dh_auto_configure:
 override_dh_clean-arch:
rm -rf fcgi
 
-override_dh_install:
-   dh_install src/iipsrv.fcgi usr/lib/iipimage-server/
-   dh_install debian/iipsrv.conf etc/apache2/mods-available
-   dh_install debian/iipsrv.load etc/apache2/mods-available
-
 override_dh_auto_install:
# for some reason it install fcgi headers
 


Bug#806048: iipimage: FTBFS when built with dpkg-buildpackage -A (No such file or directory)

2015-11-24 Thread Santiago Vila
Package: src:iipimage
Version: 0.9.9-3
User: sanv...@debian.org
Usertags: binary-indep
Severity: important

Dear maintainer:

I tried to build this package with "dpkg-buildpackage -A"
(i.e. only architecture-independent packages), and it failed:


[...]
 fakeroot debian/rules binary-indep
dh binary-indep --with autotools_dev
   dh_testroot -i
   dh_prep -i
   debian/rules override_dh_auto_install
make[1]: Entering directory '/<>'
# for some reason it install fcgi headers
make[1]: Leaving directory '/<>'
   debian/rules override_dh_install
make[1]: Entering directory '/<>'
dh_install src/iipsrv.fcgi usr/lib/iipimage-server/
cp: cannot stat 'debian/tmp/src/iipsrv.fcgi': No such file or directory
dh_install: cp --reflink=auto -a debian/tmp/src/iipsrv.fcgi 
debian/iipimage-doc/usr/lib/iipimage-server// returned exit code 1
debian/rules:22: recipe for target 'override_dh_install' failed
make[1]: *** [override_dh_install] Error 2
make[1]: Leaving directory '/<>'
debian/rules:12: recipe for target 'binary-indep' failed
make: *** [binary-indep] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary-indep gave error exit 
status 2


Sorry not to have a fix, as I am reporting many bugs similar to
this one, but I can give some general hints:

* If all the arch-independent packages are dummy transitional packages
released with jessie, the easy fix is to drop them now.
 
* If not, debian/rules should be modified so that the binary-indep
target works in all cases, even when binary-arch is not used (this is
what the "Architecture: all" autobuilder does). For that:

* If you are using debhelper, you might want to use options -a and -i
for dh_* commands so that they do not act on packages they do not
have to act.

* Also, if you are using dh, the (independently) optional targets
override_dh_foo-arch and override_dh_foo-indep (for several values
of "foo") may be useful to write a debian/rules which behaves exactly
as desired.


After checking that both "dpkg-buildpackage -A" and "dpkg-buildpackage -B"
work properly, this package will be suitable to be uploaded in
source-only form if you wish (you might want to try it).

Thanks.