Your message dated Tue, 15 Jul 2014 22:04:06 +0000
with message-id <[email protected]>
and subject line Bug#745792: fixed in encfs 1.7.4-3.1
has caused the Debian Bug report #745792,
regarding [PATCH] Fixing FTBFS on i386 and kfreebsd-i386
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.)
--
745792: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745792
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160
Package: encfs
Version: 1.7.4-3
Control: tag -1 patch
Hi,
Here's a patch with a workaround for the output of `DEB_HOST_GNU_TYPE`
that's making encfs FTBFS on `linux-i386` and `kfreebsd-i386` since
1.7.4-3.
The output is `i486-linux-gnu` which do not match with
`/usr/lib/i386-linux-gnu` that `--with-libboost-dir` expects during
the `./configure`.
Kind regards.
- --
Jose Luis Rivas - @ghostbar
The Debian Project
GPG: 0xCACAB118
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iEYEAREDAAYFAlNZ8jwACgkQOKCtW8rKsRhaLwCfeCxqA9B/diJFiVvh7jYOtcaZ
sCwAoJnhxefjTe77bNCPtuK+LpJ7lBbJ
=1W7V
-----END PGP SIGNATURE-----
From: Jose Luis Rivas <[email protected]>
Date: Thu, 24 Apr 2014 22:06:21 -0700
Subject: [PATCH] Using MOD_ARCH instead of DEB_HOST_GNU_TYPE
DEB_HOST_GNU_TYPE on i386 architectures shows `i486-linux-gnu` or
`i486-kfreebsd-gnu` while configure is expecting `i386-linux-gnu` or
`i486-kfreebsd-gnu` which makes it break when loading the Boost library
during the `./configure` with `--with-boost-libdir`. Using MOD_ARCH
catches this input checking if DEB_HOST_GNU_CPU is `i486` and converting
it then to `i386` while bypassing the other types.
---
debian/rules | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/debian/rules b/debian/rules
index 3255b55..bf6c939 100755
--- a/debian/rules
+++ b/debian/rules
@@ -24,6 +24,12 @@ else
CFLAGS += -O2
endif
+ifeq ($(DEB_HOST_GNU_CPU),i486)
+ MOD_ARCH = i386
+else
+ MOD_ARCH = $(DEB_HOST_GNU_CPU)
+endif
+
export CFLAGS
export LDFLAGS
@@ -31,7 +37,7 @@ config.status: configure
dh_testdir
# Add here commands to configure the package.
#-autoreconf -fi
- ./configure $(CONFARG) || ./configure $(CONFARG)
--with-boost-libdir=/usr/lib/$(DEB_HOST_GNU_TYPE)
+ ./configure $(CONFARG) || ./configure $(CONFARG)
--with-boost-libdir=/usr/lib/$(MOD_ARCH)-$(DEB_HOST_GNU_SYSTEM)
touch config.status
build: build-stamp
@@ -49,7 +55,7 @@ clean:
dh_testdir
dh_testroot
rm -f build-stamp
- ./configure $(CONFARG) || ./configure $(CONFARG)
--with-boost-libdir=/usr/lib/$(DEB_HOST_GNU_TYPE)
+ ./configure $(CONFARG) || ./configure $(CONFARG)
--with-boost-libdir=/usr/lib/$(MOD_ARCH)-$(DEB_HOST_GNU_SYSTEM)
$(MAKE) distclean || true
-rm -f config.log
#ifneq "$(wildcard /usr/share/misc/config.sub)" ""
--
2.0.0.rc0
--- End Message ---
--- Begin Message ---
Source: encfs
Source-Version: 1.7.4-3.1
We believe that the bug you reported is fixed in the latest version of
encfs, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
gregor herrmann <[email protected]> (supplier of updated encfs 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 [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Sun, 13 Jul 2014 23:24:43 +0200
Source: encfs
Binary: encfs
Architecture: source amd64
Version: 1.7.4-3.1
Distribution: unstable
Urgency: medium
Maintainer: Eduard Bloch <[email protected]>
Changed-By: gregor herrmann <[email protected]>
Description:
encfs - encrypted virtual filesystem
Closes: 745792
Changes:
encfs (1.7.4-3.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Fix "[PATCH] Fixing FTBFS on i386 and kfreebsd-i386":
- debian/rules: use DEB_HOST_MULTIARCH to tell configure where to find
boost libraries
- debian/control: build-depend on dpkg-dev >= 1.16.0
(Closes: #745792)
Checksums-Sha1:
871e7f1a564eb8aba9e34c2858d5cb3b38c95828 1998 encfs_1.7.4-3.1.dsc
9deb4941ff26eff99834009def214cb8043c07a4 20028 encfs_1.7.4-3.1.debian.tar.xz
64f38d5987de0f502e15cb3e8a7949189fdb1b9a 300870 encfs_1.7.4-3.1_amd64.deb
Checksums-Sha256:
117d5a90fadb6b0b5292ff3e52344a602830b9550e5405089e50ae57a178d522 1998
encfs_1.7.4-3.1.dsc
66c5f494382f5ebd7186b5454920ace40ced67d07035412af698acd90b9296a6 20028
encfs_1.7.4-3.1.debian.tar.xz
0aca3f44f94a4258a1cb7df9211bd3a9d9b006b5fc0f130a3eda73752b8b67e4 300870
encfs_1.7.4-3.1_amd64.deb
Files:
585c74366d44141ae5cf2e6cf54051a5 300870 utils optional
encfs_1.7.4-3.1_amd64.deb
d0f317c3dbd37f7b379f92aa5cd9ea3e 1998 utils optional encfs_1.7.4-3.1.dsc
e0ed1c6384da17fd652938288ba3a356 20028 utils optional
encfs_1.7.4-3.1.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQJ8BAEBCgBmBQJTwvlmXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGsUwP/0ztU7ZdP3BTnorCRHuJ/J0w
wsy5t1eo9cDOxAqrTySHL0TYjbZ/eOzZkac+sUu0oQCmMUMrA/94BcHnVry9b25x
0ni0kPm72jiwY69l5+VTnRlyYosu2GKEQ8eZVlGSX/hMO3EEdXlN2gte7RGKX9Cq
PtCzxvkUZ18tjfd86uSAq36Fjep2Gxqg6NgrobtG1nX3TzHgKuC7RaE7T0kMplEd
oHv/Assxk7VlBbfIqav4DwTFbPo21f8xizn2xOTepSaQF3ODUwbEoSjZnv4li/uM
LMzCt9QHlPuRBRwG+RQuiWoC81JuO66jS551hAHY8Rtzk/vqkpHQ21naXGXEnJDw
3i8d2KrRp6PwsVqHIp9Jlm22Yiv6tGpd9nXzglE1QovI7hh7PH3EVtI+acR4tYee
/jlu8YTFS4t+/zb4iaD3qwE5v+sT5hHFjcpmi0XDA1kh8by9E8cQlhMfKWGmFRdG
/iGfxILYWmkmJaUDtbrLypGOCh6n8cTjScUiSAfmHBrENDkB6TBYMwvyX/74G8sp
hHPIEPVD/UJRh5AJn7mtcVg4BCCQIYxWfIkC/5TxRGfmESXbohFB0BLvOjWQ46b+
+4jNMib2mJgg9lPzI477xIVEID0IHqcp8cnpe9RG25RKXzZTTT6D3uaC8qRfys/O
f+J5DDjl7bMUQGp0Y6Kd
=i8TI
-----END PGP SIGNATURE-----
--- End Message ---