Your message dated Mon, 15 May 2017 10:19:28 +0000
with message-id <e1dad68-000fhg...@fasolo.debian.org>
and subject line Bug#845102: fixed in ogamesim 20130107-3
has caused the Debian Bug report #845102,
regarding ogamesim: FTBFS when built with dpkg-buildpackage -A 
(dpkg-genbuildinfo error)
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 ow...@bugs.debian.org
immediately.)


-- 
845102: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845102
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:ogamesim
Version: 20130107-2
Severity: serious
Tags: patch

Dear maintainer:

I tried to build this package in stretch with "dpkg-buildpackage -A"
(which is what the "Arch: all" autobuilder would do to build it)
but it failed:

--------------------------------------------------------------------------------
[...]
 debian/rules build-indep
dh_testdir
make -C csim for_linux
make[1]: Entering directory '/<<PKGBUILDDIR>>/csim'
gcc -c -MMD -g -O2 -fomit-frame-pointer parse_input.c -o obj/parse_input.o
gcc -c -MMD -g -O2 -fomit-frame-pointer unit.c -o obj/unit.o
gcc -c -MMD -g -O2 -fomit-frame-pointer units_info.c -o obj/units_info.o
gcc -c -MMD -g -O2 -fomit-frame-pointer report.c -o obj/report.o
gcc -c -MMD -g -O2 -fomit-frame-pointer sim.c -o obj/sim.o
gcc -c -MMD -g -O2 -fomit-frame-pointer main.c -o obj/main.o
umask 022 && gcc obj/parse_input.o obj/unit.o obj/units_info.o obj/report.o 
obj/sim.o obj/main.o -o csim 
size csim

[... snipped ...]

        's#^my\s+\$units_conf.*#my \$units_conf = "units.conf";#; \
         s#^my\s+\$lang.*#my \$lang = "en";#; \
         s#my\s+\$counter_file.*#my \$counter_file = "";#; \
         s#^my\s+\$simulator.*#my \$simulator = "/usr/games/ogamesim";#' \
        index.cgi
mkdir -p template
for tmpl in `ls www/template/|grep 'sim\...\.html$'`; do \
        cat www/template/$tmpl \
        |sed 
's~href="sim\.tar\.bz2"~href="'http://www.o-o-d.com/tool/sim/sim.tar.bz2'"~' \
        > template/$tmpl; \
done
install -m 0644 csim/csim.6 ogamesim.6
perl -pi -e 's/csim/ogamesim/g' ogamesim.6
touch build-stamp
 fakeroot debian/rules binary-indep
dh_testdir
dh_testroot
dh_clean -k
dh_clean: Compatibility levels before 9 are deprecated (level 5 in use)
dh_clean: dh_clean -k is deprecated; use dh_prep instead
dh_installdirs
dh_installdirs: Compatibility levels before 9 are deprecated (level 5 in use)
dh_install
dh_install: Compatibility levels before 9 are deprecated (level 5 in use)
dh_installdocs -A
dh_installchangelogs
dh_installchangelogs: Compatibility levels before 9 are deprecated (level 5 in 
use)
dh_installexamples
dh_installexamples: Compatibility levels before 9 are deprecated (level 5 in 
use)
dh_installman
dh_installman: Compatibility levels before 9 are deprecated (level 5 in use)
dh_shlibdeps -pogamesim
dh_gencontrol -pogamesim -- -v1.18-2
dpkg-gencontrol: warning: File::FcntlLock not available; using flock which is 
not NFS-safe
dh_gencontrol -pogamesim-www -- -v0.34-2
dpkg-gencontrol: warning: File::FcntlLock not available; using flock which is 
not NFS-safe
dh_link
dh_strip
dh_strip: Compatibility levels before 9 are deprecated (level 5 in use)
dh_compress -A
dh_fixperms
dh_installdeb
dh_installdeb: Compatibility levels before 9 are deprecated (level 5 in use)
dh_md5sums
touch install-stamp
dh_testdir
dh_testroot
dh_builddeb -pogamesim-www
dpkg-deb: building package 'ogamesim-www' in '../ogamesim-www_0.34-2_all.deb'.
 dpkg-genbuildinfo --build=all
dpkg-genbuildinfo: error: cannot fstat file ../ogamesim_1.18-2_amd64.deb: No 
such file or directory
dpkg-buildpackage: error: dpkg-genbuildinfo --build=all gave error exit status 2
--------------------------------------------------------------------------------

To reproduce please try to build the package with "dpkg-buildpackage -A".

This may be fixed by moving (and duplicating) the final part of install-stamp
into binary-indep and binary-arch, as in the patch below.

Thanks.

--- a/debian/rules
+++ b/debian/rules
@@ -80,8 +80,12 @@ install-stamp:
        dh_installchangelogs
        dh_installexamples
        dh_installman
-       dh_shlibdeps -p$(SIMULATOR)
-       dh_gencontrol -p$(SIMULATOR) -- -v$(SIMVERSION)
+       touch $@
+
+# Build architecture-independent files here.
+binary-indep: build install
+       dh_testdir
+       dh_testroot
        dh_gencontrol -p$(WEBGUI) -- -v$(GUIVERSION)
        dh_link
        dh_strip
@@ -89,18 +93,20 @@ install-stamp:
        dh_fixperms
        dh_installdeb
        dh_md5sums
-       touch $@
-
-# Build architecture-independent files here.
-binary-indep: build install
-       dh_testdir
-       dh_testroot
        dh_builddeb -p$(WEBGUI)
 
 # Build architecture-dependent files here.
 binary-arch: build install
        dh_testdir
        dh_testroot
+       dh_shlibdeps -p$(SIMULATOR)
+       dh_gencontrol -p$(SIMULATOR) -- -v$(SIMVERSION)
+       dh_link
+       dh_strip
+       dh_compress -A
+       dh_fixperms
+       dh_installdeb
+       dh_md5sums
        dh_builddeb -p$(SIMULATOR)
 
 binary: binary-indep binary-arch

--- End Message ---
--- Begin Message ---
Source: ogamesim
Source-Version: 20130107-3

We believe that the bug you reported is fixed in the latest version of
ogamesim, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 845...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dmitry E. Oboukhov <un...@debian.org> (supplier of updated ogamesim package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 15 May 2017 12:29:27 +0300
Source: ogamesim
Binary: ogamesim ogamesim-www
Architecture: source amd64 all
Version: 20130107-3
Distribution: unstable
Urgency: medium
Maintainer: Dmitry E. Oboukhov <un...@debian.org>
Changed-By: Dmitry E. Oboukhov <un...@debian.org>
Description:
 ogamesim   - Console Ogame Simulator
 ogamesim-www - WWW GUI for ogamesim
Closes: 845102
Changes:
 ogamesim (20130107-3) unstable; urgency=medium
 .
   * Fixed FTBFS (closes: #845102), thanks to Santiago Vila 
<sanv...@debian.org>.
Checksums-Sha1:
 f79c86c48d60973e608e8d63602c011b158d06de 1775 ogamesim_20130107-3.dsc
 a0afbf7ab26cbb56d386db8d42cab57c0bf50e9f 7130 ogamesim_20130107-3.diff.gz
 569c008f33345743ecc60c3e2825f0e1a0caf7a8 19850 ogamesim-dbgsym_1.18-3_amd64.deb
 52838ef602f0ae8ca977a70412d1274772c21646 64930 ogamesim-www_0.34-3_all.deb
 54d1e415a4fda6e17e8ab1e4ef7be1e66d15a787 13638 ogamesim_1.18-3_amd64.deb
 e3bcf5593767488c743b286266d42435a238d16f 5083 
ogamesim_20130107-3_amd64.buildinfo
Checksums-Sha256:
 3fa10b9c578d781a5870d72df42eaad0b94226c3ad156ef0ba556bc8d4a48677 1775 
ogamesim_20130107-3.dsc
 4e00995159c4b3f622186462cebc96a48526c941f572e3957e991919ad471aa4 7130 
ogamesim_20130107-3.diff.gz
 ddeb9c631518dacf7697f43ad0bc6e5201966a6b64e842e9ec191e01249d1fb5 19850 
ogamesim-dbgsym_1.18-3_amd64.deb
 c96f3140bbce5b42926ac8cfb1a6e984eb1aed91576162100394d72e029bfd13 64930 
ogamesim-www_0.34-3_all.deb
 9874a0c5e0cc451ea68fee35530d27dd066064191d5c19e3dccde26f958700aa 13638 
ogamesim_1.18-3_amd64.deb
 912f4db09eb9ae1284585a16891e0f5cb9a68a14e3f3cc440df7f6d1cdc2e4cb 5083 
ogamesim_20130107-3_amd64.buildinfo
Files:
 b011185560381973e085ebb3159afdc9 1775 games extra ogamesim_20130107-3.dsc
 c0bd88eadbbd04f6e7549e017e6e135d 7130 games extra ogamesim_20130107-3.diff.gz
 2677dee171267ea5ab0d41a1b2a82cc1 19850 debug extra 
ogamesim-dbgsym_1.18-3_amd64.deb
 005d9b310aea11a1a0c10d64d92bab93 64930 games extra ogamesim-www_0.34-3_all.deb
 84bc2b9010269dc5f964d2ea72e35950 13638 games extra ogamesim_1.18-3_amd64.deb
 8a2d001c77ab53916df6de25a548c3f7 5083 games extra 
ogamesim_20130107-3_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCgAGBQJZGX0PAAoJEI0flpoI7qdWp8cP/RsTEpV1pOVKW+XnzZShIjdp
rOP1h4Yc29tXIIT4pKx87K/3QizcEbHFQGCdmDXrJrHEQSgJh/etFKOIY4swm6/N
j+vNlf8uJlHLKBJHEFtX+kmAmbYyKXSkIVqDSQ2MJzu9hbp4JMy0HConApfbxVH1
hRPXMx3NxKV8XMDIgXa2FpDP8kBMHg4fNvB8FRgHD+CTVMj85DlWWrJ/Ndq1PGxO
37WgbywwrmtKndflTGR/4R4zC01gIrQYbcVqOYP800J2YoVjgW4AVaqUraOxUGGc
5s1wC47g3Hs2nZJn5x+VO+tzDHjMJMEZzz0NrEYorwANW7I7NSVdUVGJg0csqKZR
iY2SVYv/Dl+9ZbEnOB4xDGOjfs1l9lWzFqCSmgaPsey7GbiE8tSycgDeN9h1Xl7Z
a/og5RbImJREeUtE9Cb5U5F8vH1XrjtP6Ut7UDJUfdIDKAF/KkcltoXnRH5ctlKL
UFue4IE+ASLEOYcJnKAKI4g5zBHSTPJarFAWkdJ6yTg6Uhl9bY25jqGS1s7lh/My
zyBK7r5PVJcAEP5l4efsAqMT7anfs0TLzQcd0A/yPZV6LEQ3LSUJkEx2/WnJq6te
9l1n3u/HrAhED/TrkER2+WIzYgDci4zVpl9Pb1dQIvsHORPrI47Ap+0g1Ex8vK8o
Unsd7gxhseMczvZtNtp9
=I35u
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to