Your message dated Thu, 24 Jun 2010 18:17:16 +0000
with message-id <e1orqze-00064y...@ries.debian.org>
and subject line Bug#568649: fixed in gwp 0.4.0-1.3
has caused the Debian Bug report #568649,
regarding FTBFS: python LOCALMODLIBS causes -lssl link failure
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.)
--
568649: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=568649
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gwp
Version: 0.4.0-1.2
Severity: important
Tags: patch
Justification: fails to build from source
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu karmic ubuntu-patch
This package's configure script improperly refers to python's LOCALMODLIBS,
which should not be referenced by programs linking with python.
http://launchpadlibrarian.net/38666414/buildlog_ubuntu-lucid-i386.gwp_0.4.0-1.2build1_FAILEDTOBUILD.txt.gz
i486-linux-gnu-gcc -Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment
-Wuninitialized -Wparentheses -Wpointer-arith -Wmissing-prototypes
-DPREFIX=\"/usr\" -DSYSCONFDIR=\"/usr/etc\" -DLIBDIR=\"/usr/lib\"
-DDATADIR=\"/usr/share\" -D_GNU_SOURCE -O1 -g -Wall -g -O2
-Wl,-Bsymbolic-functions -o gwp [...] -L/usr/lib/python2.6/config -lssl [...]
/usr/bin/ld: cannot find -lssl
collect2: ld returned 1 exit status
------------------
In Ubuntu, we've applied the attached patch to achieve the following:
* Remove invalid reference to python's LOCALMODLIBS to fix -lssl FTBFS
(LP: #517918)
We thought you might be interested in doing the same.
--- gwp-0.4.0.orig/configure.in
+++ gwp-0.4.0/configure.in
@@ -100,10 +100,11 @@
PY_LIB_LOC="-L$PY_EXEC_PREFIX/lib/python$PY_VERSION/config"
PY_CFLAGS="-I$PY_PREFIX/include/python$PY_VERSION"
PY_MAKEFILE="$PY_EXEC_PREFIX/lib/python$PY_VERSION/config/Makefile"
- PY_LOCALMODLIBS=`sed -n -e 's/^LOCALMODLIBS=\(.*\)/\1/p'
$PY_MAKEFILE`
+ # Only python itself should reference python's LOCALMODLIBS
+ # PY_LOCALMODLIBS=`sed -n -e 's/^LOCALMODLIBS=\(.*\)/\1/p'
$PY_MAKEFILE`
PY_BASEMODLIBS=`sed -n -e 's/^BASEMODLIBS=\(.*\)/\1/p'
$PY_MAKEFILE`
PY_OTHER_LIBS=`sed -n -e 's/^LIBS=\(.*\)/\1/p' $PY_MAKEFILE`
- PY_EXTRA_LIBS="$PY_LOCALMODLIBS $PY_BASEMODLIBS $PY_OTHER_LIBS"
+ PY_EXTRA_LIBS="$PY_BASEMODLIBS $PY_OTHER_LIBS"
AC_SUBST(PY_LIBS)
AC_SUBST(PY_LIB_LOC)
AC_SUBST(PY_CFLAGS)
--- gwp-0.4.0.orig/configure
+++ gwp-0.4.0/configure
@@ -20136,10 +20136,11 @@
PY_LIB_LOC="-L$PY_EXEC_PREFIX/lib/python$PY_VERSION/config"
PY_CFLAGS="-I$PY_PREFIX/include/python$PY_VERSION"
PY_MAKEFILE="$PY_EXEC_PREFIX/lib/python$PY_VERSION/config/Makefile"
- PY_LOCALMODLIBS=`sed -n -e 's/^LOCALMODLIBS=\(.*\)/\1/p'
$PY_MAKEFILE`
+ # Only python itself should reference python's LOCALMODLIBS
+ # PY_LOCALMODLIBS=`sed -n -e 's/^LOCALMODLIBS=\(.*\)/\1/p'
$PY_MAKEFILE`
PY_BASEMODLIBS=`sed -n -e 's/^BASEMODLIBS=\(.*\)/\1/p'
$PY_MAKEFILE`
PY_OTHER_LIBS=`sed -n -e 's/^LIBS=\(.*\)/\1/p' $PY_MAKEFILE`
- PY_EXTRA_LIBS="$PY_LOCALMODLIBS $PY_BASEMODLIBS $PY_OTHER_LIBS"
+ PY_EXTRA_LIBS="$PY_BASEMODLIBS $PY_OTHER_LIBS"
--- End Message ---
--- Begin Message ---
Source: gwp
Source-Version: 0.4.0-1.3
We believe that the bug you reported is fixed in the latest version of
gwp, which is due to be installed in the Debian FTP archive:
gwp_0.4.0-1.3.diff.gz
to contrib/g/gwp/gwp_0.4.0-1.3.diff.gz
gwp_0.4.0-1.3.dsc
to contrib/g/gwp/gwp_0.4.0-1.3.dsc
gwp_0.4.0-1.3_i386.deb
to contrib/g/gwp/gwp_0.4.0-1.3_i386.deb
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 568...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Jakub Wilk <jw...@debian.org> (supplier of updated gwp 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...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Tue, 22 Jun 2010 19:13:06 +0200
Source: gwp
Binary: gwp
Architecture: source i386
Version: 0.4.0-1.3
Distribution: unstable
Urgency: low
Maintainer: Lucas Di Pentima <lu...@lunix.com.ar>
Changed-By: Jakub Wilk <jw...@debian.org>
Description:
gwp - a VGA Planets strategy game client for GNOME
Closes: 568649
Changes:
gwp (0.4.0-1.3) unstable; urgency=low
.
* Non-maintainer upload.
* Patch the configure script to remove reference to LOCALMODLIBS
(closes: #568649). Thanks to Kamal Mostafa for the patch.
* Add ${misc:Depends}.
Checksums-Sha1:
dde67ce19d23c6f61ebea251b03ded15e8341eb0 1665 gwp_0.4.0-1.3.dsc
5acc9490624f6a2687a52ba2116001a374d7ae26 22019 gwp_0.4.0-1.3.diff.gz
e28b0ef1f015c5018ab37074fc8f8d8c14eed483 1862230 gwp_0.4.0-1.3_i386.deb
Checksums-Sha256:
cbbb04833caceae7f1c02173efd52a5610e946e65cde768d796a9932bc837979 1665
gwp_0.4.0-1.3.dsc
0a6b247db3a699b7276f85524369cffb8f9925ffac27754976c658cfa5ff37e3 22019
gwp_0.4.0-1.3.diff.gz
1f03605d4b9954cb38e67667a247e392f205cbcae43a394f2b99b960386fe9a3 1862230
gwp_0.4.0-1.3_i386.deb
Files:
f0d6d6474209eb4b5139845c01407cf8 1665 contrib/games optional gwp_0.4.0-1.3.dsc
1598ce48f06fe0c1f5d5944ba67095d7 22019 contrib/games optional
gwp_0.4.0-1.3.diff.gz
75ca85812cb569cada03258fe56ad242 1862230 contrib/games optional
gwp_0.4.0-1.3_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iQIcBAEBCAAGBQJMIPd8AAoJEC1Os6YBVHX1HToQAIBsFARByaKuCdwbHJc0bSUn
E/rlbb73/xvaq2HpRGro/eya+18s5wQZcln1xa9KwUuavl+8OyphYBTi7/HBh4mw
o1xRozOvG0Rm0VtqIkAUlKSvY2x/O7XAjUkEP4idfhlAyaTZNoa5V3+N5urD1oBt
g0RfQjXVwrfz5LkEw8xq4iSjHEKF5mF8s1wCp+4qU9SQzrQQx1YDZfOPF/HXQhT2
YOp/uP9p+yJ3SgZuYKv4ycOQRtFqzZQy5eUyTDsrvuJf7kHSikz21khbuO4ZS2s+
DW3BLetriq+SgGEeEhKb6E1pznwne6bO7DDHVzcXtTVitWuDdds9kRc3+VJbj2GY
rT2ZS8eBPEJQpkANzV1nu5kCIr/9qKkbgz9NNy02nMBTKonEJ4EJYKXoG0tPw4fU
uh01FiuQG8/P4jWLP7i8C/XXrGupGRhNpnRGpt7QIjZe9Ay1UEAwSGtfxV5jQ/De
Emxa9FoMab5ktApIM8EjsAeO+SMETSZCRxeyFA/bnH712CZ5YKKs90uVW1GavM7+
M0IJXZFX1YPPdbIN3zF/pssfCNWOXgxE/TqCxOhScpXl5SixZ+/OTD2wxsC/+Rbz
D746zurnyVlKB62/zyEXLuvBY7uHIuo7HpDvrO3Ndu3tlpoQrj+mXsEtrgNlgCHc
Si755kcLxk5Od3T6Nf99
=qoDj
-----END PGP SIGNATURE-----
--- End Message ---