Your message dated Fri, 01 Aug 2014 03:39:09 +0000
with message-id <e1xd3gt-0007do...@franck.debian.org>
and subject line Bug#756696: fixed in ruby-hdfeos5 1.2-3
has caused the Debian Bug report #756696,
regarding ruby-hdfeos5: [hdf5 transition] please support hdf5 1.8.13 new
packaging layout
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.)
--
756696: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756696
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: ruby-hdfeos5
Version: 1.2-2
Severity: important
Tags: patch
User: p...@debian.org
Usertags: HDF5-transition
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Hi,
The hdf5 1.8.13 package in experimental features a new layout for
headers and libraries, so that all the binary packages are now
co-installable.
Please find attached a patch proposal to support both the current
and the new layouts.
Because this bug is in the way of the hdf5 transition I intend to NMU
in a few days. I apologize for the urge, and I hope this approach won't
offend you. Please tell me otherwise.
Kind regards,
_g.
- -- System Information:
Debian Release: jessie/sid
APT prefers testing
APT policy: (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 3.14-1-486
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQEcBAEBCAAGBQJT2sf4AAoJEO/obGx//s+DHEYH/0iIh7KMfh+Cnu3zvW7IkGlQ
KF77rNDn4RrEZIbzkc57WyR23oMuriLsykCJXtAWz23RW3PjHzy+1wktiFk2gnuG
mSiWrnEQ++4eAzJLpu43AIsYNnm6+xlovEeU0Fer1COfk7QPgzuuCCRuAx9SNbrr
n7wAY3OcwGM/n9oWIOcvH34X6Fp0gFkYXaNMfx+wm9tGgQ8WqueJ94rKEDKBK0Mg
IxSzuBKV/hoUHmmcATCGuP1H8VWUr8LeNKafNM6aLZQIGmhQ3oFOEiHecjJyn3LD
eSk2PlErLKucv+9Inh0t2Jby7c4OMsl4VisQIzBAdKUPNnAGLrZVbVQJgScJniY=
=9jdu
-----END PGP SIGNATURE-----
diff -Nru ruby-hdfeos5-1.2/debian/changelog ruby-hdfeos5-1.2/debian/changelog
--- ruby-hdfeos5-1.2/debian/changelog 2014-07-22 20:46:48.000000000 +0200
+++ ruby-hdfeos5-1.2/debian/changelog 2014-07-26 18:26:51.000000000 +0200
@@ -1,3 +1,13 @@
+ruby-hdfeos5 (1.2-2.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Support hdf5 1.8.13 new packaging layout.
+ * New patch 0004-hdf5-dir.patch to hard code parameter
+ --with-hdf5-dir to extconf.rb, because dh_ruby doesn't allow
+ passing extra parameters.
+
+ -- Gilles Filippini <p...@debian.org> Sat, 26 Jul 2014 16:47:19 +0200
+
ruby-hdfeos5 (1.2-2) unstable; urgency=medium
* Fix FTBFS: add multiarch search path (Closes: #753188)
diff -Nru ruby-hdfeos5-1.2/debian/patches/0004-hdf5-dir.patch ruby-hdfeos5-1.2/debian/patches/0004-hdf5-dir.patch
--- ruby-hdfeos5-1.2/debian/patches/0004-hdf5-dir.patch 1970-01-01 01:00:00.000000000 +0100
+++ ruby-hdfeos5-1.2/debian/patches/0004-hdf5-dir.patch 2014-07-26 18:17:47.000000000 +0200
@@ -0,0 +1,10 @@
+Index: ruby-hdfeos5-1.2/extconf.rb
+===================================================================
+--- ruby-hdfeos5-1.2.orig/extconf.rb 2014-07-26 18:17:18.871956985 +0200
++++ ruby-hdfeos5-1.2/extconf.rb 2014-07-26 18:17:45.180828598 +0200
+@@ -1,4 +1,5 @@
+ require "mkmf"
++$configure_args["--with-hdf5-dir"] = ENV["HDF5_DIR"]
+
+ require "rbconfig" unless defined? RbConfig
+ $vendorarchdir=RbConfig::CONFIG['vendorarchdir']
diff -Nru ruby-hdfeos5-1.2/debian/patches/series ruby-hdfeos5-1.2/debian/patches/series
--- ruby-hdfeos5-1.2/debian/patches/series 2014-07-22 20:46:48.000000000 +0200
+++ ruby-hdfeos5-1.2/debian/patches/series 2014-07-26 18:26:19.000000000 +0200
@@ -1,3 +1,4 @@
0001-Fix-NArray-Library-Path.patch
0002-Fix-test-data-path.patch
0003-Fix-printf-debugging.patch
+0004-hdf5-dir.patch
diff -Nru ruby-hdfeos5-1.2/debian/rules ruby-hdfeos5-1.2/debian/rules
--- ruby-hdfeos5-1.2/debian/rules 2014-07-22 20:46:48.000000000 +0200
+++ ruby-hdfeos5-1.2/debian/rules 2014-07-31 18:26:13.000000000 +0200
@@ -1,5 +1,11 @@
#!/usr/bin/make -f
+ifneq ($(wildcard /usr/lib/$(DEB_HOST_MULTIARCH)/hdf5/serial/libhdf5.so),)
+ export HDF5_DIR := /usr/lib/$(DEB_HOST_MULTIARCH)/hdf5/serial
+else
+ export HDF5_DIR := /usr
+endif
+
%:
dh $@ --with ruby --buildsystem ruby
--- End Message ---
--- Begin Message ---
Source: ruby-hdfeos5
Source-Version: 1.2-3
We believe that the bug you reported is fixed in the latest version of
ruby-hdfeos5, 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 756...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Youhei SASAKI <uwab...@gfd-dennou.org> (supplier of updated ruby-hdfeos5
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: Fri, 01 Aug 2014 10:55:51 +0900
Source: ruby-hdfeos5
Binary: ruby-hdfeos5 ruby-hdfeos5-dbg libhdfeos5-ruby libhdfeos5-ruby1.9.1
libhdfeos5-ruby1.9.1-dbg libhdfeos5-ruby-doc
Architecture: source amd64 all
Version: 1.2-3
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
Changed-By: Youhei SASAKI <uwab...@gfd-dennou.org>
Description:
libhdfeos5-ruby - Transitional package for ruby-hdfeos5
libhdfeos5-ruby-doc - Transitional package for ruby-hdfeos5
libhdfeos5-ruby1.9.1 - Transitional package for ruby-hdfeos5
libhdfeos5-ruby1.9.1-dbg - Transitional package for ruby-hdfeos5-dbg
ruby-hdfeos5 - Ruby interface to the HDF-EOS5 library
ruby-hdfeos5-dbg - Ruby interface to the HDF-EOS5 library (debug symbol)
Closes: 756696
Changes:
ruby-hdfeos5 (1.2-3) unstable; urgency=medium
.
* Support newer hdf5 package layouts (Closes: #756696)
Thanks to Gilles Filippini <p...@debian.org>
Checksums-Sha1:
98885ff19dd124230953d1bc1317a224863a269d 2406 ruby-hdfeos5_1.2-3.dsc
df5cbb9bfd9814cda3112cab8c098818d9f09b73 8244 ruby-hdfeos5_1.2-3.debian.tar.xz
b9dc08b044a22ec01ea8cc2f94446aa0aeed50c0 67098 ruby-hdfeos5_1.2-3_amd64.deb
9a82316c7e5f0fabe58e75e8f52b620d38b6ffc6 214688
ruby-hdfeos5-dbg_1.2-3_amd64.deb
3a9c3f1c0d4c80c0339054d39cf0327ad5e49f5b 6104 libhdfeos5-ruby_1.2-3_all.deb
7609f589d60fbc18d18db23bd9675750f2c59cb9 6118
libhdfeos5-ruby1.9.1_1.2-3_all.deb
aad0b947b7c04e9bf9a082b2bf36f03d52156773 6126
libhdfeos5-ruby1.9.1-dbg_1.2-3_all.deb
381d488432ae0a035ab2f83e9a1e8e30b6f4015e 6112 libhdfeos5-ruby-doc_1.2-3_all.deb
Checksums-Sha256:
f5397789c210a8563f58b47171d76cc3907f9e8bafb19c55b5ee4827e48b8ec0 2406
ruby-hdfeos5_1.2-3.dsc
e5bf9c96d65c0ad102a6093d5bb40479295f7a5763c2967d3d1b3d124d9d2fb8 8244
ruby-hdfeos5_1.2-3.debian.tar.xz
439a061c62612030a9ead8047bc3fa4ae9d679899926ecc29b0cfcb2413932eb 67098
ruby-hdfeos5_1.2-3_amd64.deb
d3bcd216022fb7bccde8184aba57480023eb690f34c05374b82dcd746f39b95c 214688
ruby-hdfeos5-dbg_1.2-3_amd64.deb
11d29122d40337514ee1910756590c8c2ef09e0c35114c661782a63dfe83adf4 6104
libhdfeos5-ruby_1.2-3_all.deb
965a74e4b5e5e85de1f24cf1ed0830cfdad01c038120f1bdea0b721cfb259d5f 6118
libhdfeos5-ruby1.9.1_1.2-3_all.deb
f2b5c2f124a0df5fd5dd7eb0e195b28e24c7462b76f0eedbc5fc814c6536a45d 6126
libhdfeos5-ruby1.9.1-dbg_1.2-3_all.deb
6df08fd7e94d1062fd8f5efeeed4b228d20b8f6337989e47d191e4b056702ccd 6112
libhdfeos5-ruby-doc_1.2-3_all.deb
Files:
71c0efbdfb425bf74b4874d644adac0f 67098 ruby optional
ruby-hdfeos5_1.2-3_amd64.deb
7f84ec1eae7524ee384c8e14e48f6c76 214688 debug extra
ruby-hdfeos5-dbg_1.2-3_amd64.deb
ceb82564b444c1f6ffea184c6fb1a382 6104 oldlibs extra
libhdfeos5-ruby_1.2-3_all.deb
4272a8c9c6d684faf2c06abb8eb49358 6118 oldlibs extra
libhdfeos5-ruby1.9.1_1.2-3_all.deb
a202d3006afb4fba84b91ed4a98caad8 6126 oldlibs extra
libhdfeos5-ruby1.9.1-dbg_1.2-3_all.deb
cf66439d59b7c15a5916a2cd4dd3649d 6112 oldlibs extra
libhdfeos5-ruby-doc_1.2-3_all.deb
3862982fef17a509544155edd8359bc7 2406 ruby optional ruby-hdfeos5_1.2-3.dsc
9aacd47c430ce2d52d1029ae47bf6056 8244 ruby optional
ruby-hdfeos5_1.2-3.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQIcBAEBCgAGBQJT2vQsAAoJEJOU81SJHX4HMicP/R9BRDTfQuVACcdOtk3wF9dP
O4EgNZQ30H7K8QOrCafcWiwSQWWwXRKEHDl/jmgxo7ODC5jxHPP+xgLi7wh3YOgG
8zkX1IKAoHupHlUhgLZn34h/SuySf7h93E4uS7sXpuvdk/00mllpKeVnFPfYs8dS
kx4vCq/CFwYoLrGsOZaq4zmQ/a3rQOg5JWSnxbZOClt4sMJE8X8GpJXVxDfUw3o9
361ybx/4xp8jYl959M5Qmyu6TvT+aS43z5iiQjkALRD98a0nX0wiJQoafJojB/yw
Z31wMDITly1y0kVl2HigsQROka8SGfThs806OArr9d2TVUAK+N4VTnc/IRXEb0AD
YbPawHV/c7LLz9TG+bPKWvzYv0xbVVmXJw7up8ZiKoA8GOUJj+vKd7WT1M+NPXN0
YWwayV1SwaRAcyjynTBlx6xGr85eKzvWRNwZRRukJju+WQiYLL75g/tDSgMWvoL0
xZhe+dKd3LgGbFz7OZ1ZTlqPyRBlKmg/tCiMZrHCUMNm6uhXON3Za4jCGcM6MB1K
hjdT+xg0TmOYB1EQvDPLkLNVfuIjySV55lHCk7RPS8jfzOXwrNbo3Y8sXaM5ctbi
5lAwsZuxUNvHwop6hAxqvIh60wFpBNhpUUO4kapDn6n9ggF/N1PaojBiY8R8Wdd9
b9m+CC3r8n8RlW0Uw49A
=IkwL
-----END PGP SIGNATURE-----
--- End Message ---
_______________________________________________
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel