Your message dated Wed, 12 Aug 2015 16:00:44 +0000
with message-id <e1zpysk-0007ir...@franck.debian.org>
and subject line Bug#790085: fixed in pillow 2.9.0-1
has caused the Debian Bug report #790085,
regarding pillow: FTBFS with Python 3.5
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.)


-- 
790085: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=790085
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: pillow
Severity: normal

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Dear Maintainer,

debian/rules adds $DEB_HOST_MULTIARCH to $SOABI, but this is incorrect
for Python 3.5, where the arch triplet is already included in $SOABI.
Attached is a patch that only conditionally adds the triplet for
versions earlier than Python 3.5.  It's probably not the most elegant
patch, but it wfm.

- -- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.0.0-2-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

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

iQIcBAEBCAAGBQJVjcmwAAoJEBJutWOnSwa/3/IQAKQTa5TzCf6jkLwFeuvqkUj/
FOEhKGiQfePmwJqUDDnCM2Zc67Bgk8pJf5rO8557iihH4+6snI8ip6WQBmGTjTWJ
eVsKLdFgeLZDciIxoU0botwVnWBMb5NeokAwQZHhLSe2ELmYiu4s9jkC/N7vEgFZ
vD+vQg0jngFTX+Xxnro6y+3xXHeke6HvsBqThQ2Wn/QXq3v0jquhpKIg73CceQnM
O6u66u/EASGZm+fA0lsxucS55EZdmzh29hUYMwvU1E/kqtyNLw4seybQ7u9EdO7V
X5Vnry6Ss9w4ewxlKicnJ8cPc5ecMUdVZCL/du2e59DzG/mx9tgoLhPJVXAdg2TR
WVVLwRFrtmGr2FUvh7LJIGZehuq50ffAWS310+rNS7GE1MkZverILPlF3Jfn9kSB
jOZ1vJ6IZC1McH0Wu5kR9yqmMDSrt/SULmD+i/+2rQ9NxtEyCqDUMV+wsXZSN4rr
b+IPdGnWG1GzZUNmsxCAgdIhx956MnY44OWEdqrCuqoUlKSQTzcrULbATIgOKIlT
dHaSuuB+g3YLmcbwfsGw28RGIOPAMTUnLq8kwG65MML2yp8P1sklMi18I/wruW3k
dMSjZZAaPpdmGfXkhjfO+PYLE0taWxrtBveauDqU1l4kfUCePre0y8PTzjxkPd/k
xawN7C4XUbCCum3wuF6H
=z1HP
-----END PGP SIGNATURE-----
=== modified file 'debian/rules'
--- debian/rules	2015-06-01 17:15:59 +0000
+++ debian/rules	2015-06-26 21:48:20 +0000
@@ -155,7 +155,13 @@
 		libImaging/ImDib.h \
 		debian/python3-pil/$$incdir
 
-	abitag=.$$(python$* -c "import sysconfig; print(sysconfig.get_config_var('SOABI'))")-$(DEB_HOST_MULTIARCH); \
+	if `python$* -c "import sys; sys.exit(sys.version_info < (3,5))"`; \
+	then \
+		abitag=.$$(python$* -c "import sysconfig; print(sysconfig.get_config_var('SOABI'))"); \
+	else \
+		abitag=.$$(python$* -c "import sysconfig; print(sysconfig.get_config_var('SOABI'))")-$(DEB_HOST_MULTIARCH); \
+	fi; \
+	echo $$abitag; \
 	dh_movefiles -ppython3-pil.imagetk \
 	    --sourcedir=debian/python3-pil \
 		usr/lib/python3/$(call py_sitename_sh, $*)/PIL/_imagingtk$$abitag.so \
@@ -177,7 +183,12 @@
 		! -type d ! \( -name '*.so' -o -name '*.h' \) | xargs rm -f
 	find debian/python3-pil*-dbg -depth -empty -exec rmdir {} \;
 
-	abitag=.$$(python$*-dbg -c "import sysconfig; print(sysconfig.get_config_var('SOABI'))")-$(DEB_HOST_MULTIARCH); \
+	if `python$* -c "import sys; sys.exit(sys.version_info < (3,5))"`; \
+	then \
+		abitag=.$$(python$*-dbg -c "import sysconfig; print(sysconfig.get_config_var('SOABI'))"); \
+	else \
+		abitag=.$$(python$*-dbg -c "import sysconfig; print(sysconfig.get_config_var('SOABI'))")-$(DEB_HOST_MULTIARCH); \
+	fi; \
 	dh_movefiles -ppython3-pil.imagetk-dbg \
 	    --sourcedir=debian/python3-pil-dbg \
 		usr/lib/python3/$(call py_sitename_sh, $*)/PIL/_imagingtk$$abitag.so


--- End Message ---
--- Begin Message ---
Source: pillow
Source-Version: 2.9.0-1

We believe that the bug you reported is fixed in the latest version of
pillow, 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 790...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose <d...@debian.org> (supplier of updated pillow 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: SHA256

Format: 1.8
Date: Wed, 12 Aug 2015 02:59:31 +0200
Source: pillow
Binary: python-pil python-pil-dbg python-pil.imagetk python-pil.imagetk-dbg 
python3-pil python3-pil-dbg python3-pil.imagetk python3-pil.imagetk-dbg 
python-pil-doc python-imaging
Architecture: source all amd64
Version: 2.9.0-1
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose <d...@debian.org>
Changed-By: Matthias Klose <d...@debian.org>
Description:
 python-imaging - Python Imaging Library compatibility layer
 python-pil - Python Imaging Library (Pillow fork)
 python-pil-dbg - Python Imaging Library (debug extension)
 python-pil-doc - Examples for the Python Imaging Library
 python-pil.imagetk - Python Imaging Library - ImageTk Module (Pillow fork)
 python-pil.imagetk-dbg - Python Imaging Library - ImageTk Module (debug 
extension)
 python3-pil - Python Imaging Library (Python3)
 python3-pil-dbg - Python Imaging Library (Python3 debug extension)
 python3-pil.imagetk - Python Imaging Library - ImageTk Module (Python3)
 python3-pil.imagetk-dbg - Python Imaging Library - ImageTk Module (Python3 
debug extension)
Closes: 790085
Changes:
 pillow (2.9.0-1) unstable; urgency=medium
 .
   * Pillow 2.9.0 release.
   * d/rules: Don't add $DEB_HOST_MULTIARCH to SOABI for Python 3.5 since
     it's already included there. Closes: #790085.
Checksums-Sha1:
 5d6a15eaf5bbe56af553b74058a5286a6e93effd 2681 pillow_2.9.0-1.dsc
 d023770c75e3ddf204b21c3c03ce8b44e3a9cf69 9387803 pillow_2.9.0.orig.tar.gz
 2f23b8f46f04bc77a9a76c07a29c8deb40f52ede 14160 pillow_2.9.0-1.debian.tar.xz
 018e8144e47514a58809cd2df71a4a3adb2ce793 9652 python-imaging_2.9.0-1_all.deb
 88e973e862b9e0c0d4773467a7caee74aad4cf02 446096 
python-pil-dbg_2.9.0-1_amd64.deb
 c032186653b3fa5c4feb019162a2d9262caff489 18658 python-pil-doc_2.9.0-1_all.deb
 60a72c4775d62d672208cf414d7447f7439bfb45 13258 
python-pil.imagetk-dbg_2.9.0-1_amd64.deb
 ee92c0c96e65d76ba0b2267dc7f319c56cd00a1f 13668 
python-pil.imagetk_2.9.0-1_amd64.deb
 654532becf37466049ad0393856f604ba280fbf1 313008 python-pil_2.9.0-1_amd64.deb
 21b7199ced1a15dbed850491cf7c97738b1e5a45 454806 
python3-pil-dbg_2.9.0-1_amd64.deb
 7471aad95171720ef17b8169c62e17fd3699d12b 13218 
python3-pil.imagetk-dbg_2.9.0-1_amd64.deb
 e0effa5308da35cd2dfb844ef2dfd90a3bebfed5 13746 
python3-pil.imagetk_2.9.0-1_amd64.deb
 0ead04c015030bf1d589314ab4b30bd4faf1a3a9 313762 python3-pil_2.9.0-1_amd64.deb
Checksums-Sha256:
 7e08c7eaa91143d7454a03dd9913d5e5a8daceb713e15cc901bbeb85164c9c58 2681 
pillow_2.9.0-1.dsc
 7e7bedb05389e8c6ddd8e89b6147fbb03217786f8d32fa70d7d348bac4dde9a8 9387803 
pillow_2.9.0.orig.tar.gz
 5f0f5d39682066c05f5e6dd0a696d91b867d895fca20f889067b1df75f437f5a 14160 
pillow_2.9.0-1.debian.tar.xz
 1b411e8b59ec498cfed9d399e341d30b18fc7db77924be902d1e559cacc8e819 9652 
python-imaging_2.9.0-1_all.deb
 ba9133ce20b17e99a2d8d4ec15466d133ef9c172c17cd65e4a13e3b5ef220d5c 446096 
python-pil-dbg_2.9.0-1_amd64.deb
 fe45d4acc6281b9debcd8feaee66b640d75bc245adc402c69d4f68d03e74e3e6 18658 
python-pil-doc_2.9.0-1_all.deb
 61a0015ff544e949ab67a53c8ea3310cce67192773a13914dfdd6af37856bc17 13258 
python-pil.imagetk-dbg_2.9.0-1_amd64.deb
 b7f7219061ace8e403ac6deedd089cd8464d509dae9cdaf7f188b74c292f4f1e 13668 
python-pil.imagetk_2.9.0-1_amd64.deb
 e05ecbf803da928b930e5f5960cf6865683e270c43c81ef84950d24243c5b613 313008 
python-pil_2.9.0-1_amd64.deb
 0c6e151766733b643515262773b137cf4d27ef48b6e597e91338919e70fe1317 454806 
python3-pil-dbg_2.9.0-1_amd64.deb
 d0423a8c85a2798936d7a9ce9593d8a5ae46ff567fee908c87b3fdb1223be6b2 13218 
python3-pil.imagetk-dbg_2.9.0-1_amd64.deb
 5dd94f4a16fa72ceb3eb0a1207b71dad27a9bb57a461d86980d2efa09906bf32 13746 
python3-pil.imagetk_2.9.0-1_amd64.deb
 aaf059698ef6eff03dfaf39af14986879a31636caf19ad23f26e67c62756047b 313762 
python3-pil_2.9.0-1_amd64.deb
Files:
 34e1ae7f72e1e8a21bb410bd06a79db1 2681 python optional pillow_2.9.0-1.dsc
 7bb1d3e6cdd644a10d44f2e99e24a971 9387803 python optional 
pillow_2.9.0.orig.tar.gz
 eb5f04d28792ef9ce674b2ebeef010a5 14160 python optional 
pillow_2.9.0-1.debian.tar.xz
 18daa43e056b356517f9f07e4c0f5df7 9652 python optional 
python-imaging_2.9.0-1_all.deb
 1cbc5d5315569b0d028ec455809eab54 446096 debug extra 
python-pil-dbg_2.9.0-1_amd64.deb
 8c491fc0849776e7a301f8504d3f04b0 18658 doc optional 
python-pil-doc_2.9.0-1_all.deb
 e4c99b921d6987ed3a972e9c9de70d70 13258 debug extra 
python-pil.imagetk-dbg_2.9.0-1_amd64.deb
 793a92cea96876bd736571faf2506c7b 13668 python optional 
python-pil.imagetk_2.9.0-1_amd64.deb
 dd4e39f67a713df2a644c34d9896384d 313008 python optional 
python-pil_2.9.0-1_amd64.deb
 c067616bc991ea61fb8a636706bd2daf 454806 debug extra 
python3-pil-dbg_2.9.0-1_amd64.deb
 c7f2fb6df2c712c621be1af4b7a42ce1 13218 debug extra 
python3-pil.imagetk-dbg_2.9.0-1_amd64.deb
 457a9bb8f246437d0418d6c61717be7d 13746 python optional 
python3-pil.imagetk_2.9.0-1_amd64.deb
 42c31ab9b757466264d420223a1c0cf6 313762 python optional 
python3-pil_2.9.0-1_amd64.deb

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

iQIcBAEBCAAGBQJVy1ayAAoJEL1+qmB3j6b1VxYP/R15W2Nv/rK8MTUeYseOtHWG
cMJwBCaqbRSBaZGD7hzCAPkf/R9rqe8jY2jCLQkQUpDn9+VeWQYX30D8qglZfHqt
bTpcq50HSiFtBCB3WTIfTdZhPB31G3bLD55ypk85lgP5Xp4A9bMka0F2uslEFsF1
7aWkFWzqf/ee6Uqz4LQs7vH66Brb+b5Gr+zlt2v5S4UeIECQCg7cB8ZGqRxQpJ5Y
ZxdqGJUTonmBY70l+j/2Ss09OE1NNChZ0j+MG6myL2PJj7164l6ACtPMm37+cRCC
nK9eaDnFZX3FN7fA4xtQH36HPGfTUxyvIMmBqgoUlPo1UFf0HmFHKFvn8XL611re
EYAFQjOR13gviqfkJKfKOaw3gYNzmXDMMheCXftDIml32z2qjfnjaj6n5ci1mlag
ZmeNSdcB53QKjZ6/f8e5DgvKnUi9HFJVXlFHyASBz0LhT9xFVmEDm3zJ4lYsE14F
tayKgo62OEnv+++NFOHCLFsJtbHyKi1+LimqLPzSVmQrWusig9FVoPrbiyx8B5e0
jdEZoXGxBuLIPh8d8A1an93KdG1+1HXNn1lgy4JiQotYQPOi3MgsD29F/Mz+cdkH
YTgdDfwehH902WtLaMyJdaFU5blDf1mlZ3ulI2wj49i19YeoTGG+u9a6Vg7m+hTN
mQDPBXNf5CGp2qrcwO/5
=vuHs
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to