Bug#739186: inventor: FTBFS on s390x: error: cast from 'void*' to 'int' loses precision [-fpermissive]

2014-02-16 Thread Aurelien Jarno
Package: inventor
Version: 2.1.5-10-17
Severity: important
Tags: patch upstream
Justification: fails to build from source

inventor fails to build from source on s390x with the following error:
| In file included from So.c++:63:0:
| SoType.c++: In static member function 'static SoType 
SoType::fromName(SbName)':
| SoType.c++:338:35: error: cast from 'void*' to 'int' loses precision 
[-fpermissive]
| In file included from So.c++:67:0:
| SoOutput.c++: In member function 'int SoOutput::findReference(const SoBase*) 
const':
| SoOutput.c++:1468:21: error: cast from 'void*' to 'int' loses precision 
[-fpermissive]

The problem is that inventor uses an harcoded list of 64-bit
architectures, which doesn't includes s390x. The following patch fixes
the issue:

--- inventor-2.1.5-10/debian/patches/endianness.patch   2011-09-25 
03:15:31.0 +
+++ inventor-2.1.5-10/debian/patches/endianness.patch   2014-02-16 
15:58:23.0 +
@@ -53,7 +53,7 @@
  #endif

 +/* Added for Debian by Steve M. Robbins */
-+#if (_MIPS_SZPTR == 64 || __ia64 || __x86_64 || __alpha__ || __powerpc64__)
++#if (_MIPS_SZPTR == 64 || __ia64 || __x86_64 || __alpha__ || __powerpc64__ || 
__s390x__)
 +#  define USE_64BIT_HACKS 1
 +#else
 +#  define USE_64BIT_HACKS 0


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: s390x

Kernel: Linux 3.2.0-4-s390x (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Bug#704206 blocking the ppc64el architecture bootstrap

2014-08-24 Thread Aurelien Jarno
Dear maintainer,

The ppc64el architecture has been added to the Debian archive. Your
package teem fails to build as reported in bug #704206 and
the build log is available on [1].

It would be very nice if you can upload a fixed version of this package.
Don't hesitate to ask questions if you need help to fix this bug. If
you lack time for that, I can also proceed with an NMU.

Thanks,
Aurelien

[1] https://buildd.debian.org/status/logs.php?pkg=teemarch=ppc64el

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#732927 blocking the ppc64el architecture bootstrap

2014-08-24 Thread Aurelien Jarno
Dear maintainer,

The ppc64el architecture has been added to the Debian archive. Your
package polylib fails to build as reported in bug #732927 and
the build log is available on [1].

It would be very nice if you can upload a fixed version of this package.
Don't hesitate to ask questions if you need help to fix this bug. If
you lack time for that, I can also proceed with an NMU.

Thanks,
Aurelien

[1] https://buildd.debian.org/status/logs.php?pkg=polylibarch=ppc64el

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#727899 blocking the ppc64el architecture bootstrap

2014-08-24 Thread Aurelien Jarno
Dear maintainer,

The ppc64el architecture has been added to the Debian archive. Your
package hyantesite fails to build as reported in bug #727899 and
the build log is available on [1].

It would be very nice if you can upload a fixed version of this package.
Don't hesitate to ask questions if you need help to fix this bug. If
you lack time for that, I can also proceed with an NMU.

Thanks,
Aurelien

[1] https://buildd.debian.org/status/logs.php?pkg=hyantesitearch=ppc64el

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Re: Bug#727899 blocking the ppc64el architecture bootstrap

2014-08-26 Thread Aurelien Jarno
On Mon, Aug 25, 2014 at 09:52:41AM +0200, Vincent Danjean wrote:
   Hi,
 
 On 25/08/2014 05:28, Aurelien Jarno wrote:
  Dear maintainer,
  
  The ppc64el architecture has been added to the Debian archive. Your
  package hyantesite fails to build as reported in bug #727899 and
  the build log is available on [1].
  
  It would be very nice if you can upload a fixed version of this package.
  Don't hesitate to ask questions if you need help to fix this bug. If
  you lack time for that, I can also proceed with an NMU.
 
 It seems that the FTBFS comes from the fact that a shared library
 cannot be built. In configure results (standard tests), we can find:
 checking whether the powerpc64le-linux-gnu-gcc -std=gnu99 linker (/usr/bin/ld 
 -m elf64ppc) supports shared libraries... no
 
 Is it normal for this new platform (I think no)? Do you have an idea
 where this result comes from (before I look in details)?

The problem is that the libtool snippet included in configure is too old
to support this architecture. That's why using dh_autoreconf would
regenerate the configure script from a recent version.

This bug was supposed to have a patch attached to it, but I just
realized it doesn't have one. Sorry about that. Please find one 
attached.

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net
diff -u hyantesite-1.3.0/debian/rules hyantesite-1.3.0/debian/rules
--- hyantesite-1.3.0/debian/rules
+++ hyantesite-1.3.0/debian/rules
@@ -35,13 +35,7 @@
 
 config.status: configure
 	dh_testdir
-	# Add here commands to configure the package.
-ifneq $(wildcard /usr/share/misc/config.sub) 
-	cp -f /usr/share/misc/config.sub config.sub
-endif
-ifneq $(wildcard /usr/share/misc/config.guess) 
-	cp -f /usr/share/misc/config.guess config.guess
-endif
+	dh_autoreconf
 	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS=$(CFLAGS) --enable-doc
 
 
@@ -63,8 +57,8 @@
 	
 	# Add here commands to clean up after the build process.
 	test ! -f Makefile || $(MAKE) distclean
-	rm -f config.sub config.guess
-	
+	dh_autoreconf_clean
+
 	dh_clean
 	
 	# restore deleted file that would be ignored by dpkg-source when git is
diff -u hyantesite-1.3.0/debian/control hyantesite-1.3.0/debian/control
--- hyantesite-1.3.0/debian/control
+++ hyantesite-1.3.0/debian/control
@@ -2,7 +2,7 @@
 Priority: extra
 Maintainer: Debian Science Maintainers debian-science-maintainers@lists.alioth.debian.org
 Uploaders: serge guelton serge.guel...@enst-bretagne.fr
-Build-Depends: debhelper (= 7), autotools-dev, doxygen, help2man, dpkg (= 1.15.4) | install-info
+Build-Depends: debhelper (= 7), dh-autoreconf, doxygen, help2man, dpkg (= 1.15.4) | install-info
 Standards-Version: 3.9.3
 Section: science
 Vcs-Svn: svn://svn.debian.org/debian-science/packages/hyantesite
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Bug#720689: NMU diff for cernlib version 20061220+dfsg3-4.1

2014-08-28 Thread Aurelien Jarno
I have just done an NMU to fix this long standing issue. Please find the
diff of the NMU attached.

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net
diff -Nru cernlib-20061220+dfsg3/debian/cernlib-debian.mk cernlib-20061220+dfsg3/debian/cernlib-debian.mk
--- cernlib-20061220+dfsg3/debian/cernlib-debian.mk	2013-08-24 11:16:07.0 +0200
+++ cernlib-20061220+dfsg3/debian/cernlib-debian.mk	2014-08-28 19:07:11.0 +0200
@@ -177,7 +177,7 @@
 	-chmod a+x $(ADDONDIR)/scripts/[a-z]*
 
 debian/control.new: $(wildcard debian/control.d/*.control)
-	cat $^  $@
+	cat $(sort $^)  $@
 
 debian/control: debian/control.new
 	cp -f $ $@
diff -Nru cernlib-20061220+dfsg3/debian/changelog cernlib-20061220+dfsg3/debian/changelog
--- cernlib-20061220+dfsg3/debian/changelog	2013-08-24 11:16:07.0 +0200
+++ cernlib-20061220+dfsg3/debian/changelog	2014-08-28 19:07:37.0 +0200
@@ -1,3 +1,16 @@
+cernlib (20061220+dfsg3-4.1) unstable; urgency=medium
+
+  [ Aurelien Jarno ]
+  * Non-maintainer upload.
+
+  [ Mauricio Faria de Oliveira ]
+  * Fix 'debian/control.new' for GNU make 3.82+ (Closes: #720689)
+Thanks Michael Tautschnig. New versions of GNU make don't 'sort' the output
+of 'wildcard' anymore. This is reported in the following GNU make announce:
+https://lists.gnu.org/archive/html/info-gnu/2010-07/msg00023.html
+
+ -- Aurelien Jarno aure...@debian.org  Thu, 28 Aug 2014 19:07:13 +0200
+
 cernlib (20061220+dfsg3-4) unstable; urgency=low
 
   * cernlib-base-dev: depends on dpkg-dev to fix Multiarch support.
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Bug#752798: yes, please NMU (was: Re: Bug#752798 blocking the ppc64el architecture bootstrap)

2014-09-10 Thread Aurelien Jarno
On Mon, Aug 25, 2014 at 06:33:49AM +0200, Joost van Baal-Ilić wrote:
 Hi Aurelien,
 
 On Mon, Aug 25, 2014 at 05:28:04AM +0200, Aurelien Jarno wrote:
  
  The ppc64el architecture has been added to the Debian archive. Your
  package ticcutils fails to build as reported in bug #752798 and
  the build log is available on [1].
  
  It would be very nice if you can upload a fixed version of this package.
  Don't hesitate to ask questions if you need help to fix this bug. If
  you lack time for that, I can also proceed with an NMU.
  
  [1] https://buildd.debian.org/status/logs.php?pkg=ticcutilsarch=ppc64el
 
 Please NMU.  ETA of fix by me would be october 15.
 
 (I plan to convert the ticcutils packaging stuff at alioth from SVN to git and
 upload new upstream ticcutils 0.5 soonish.  I believe this means next to
 ticcutils, 7 other tightly related packages need to get upgraded to new
 upstream, see 
 https://qa.debian.org/developer.php?email=ko.vandersloot%40uvt.nl .)

Thanks. I have just done the NMU, please find the diff attached to this
mail.

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net
diff -Nru ticcutils-0.4/debian/changelog ticcutils-0.4/debian/changelog
--- ticcutils-0.4/debian/changelog	2013-08-01 16:26:13.0 +0200
+++ ticcutils-0.4/debian/changelog	2014-09-10 21:37:31.0 +0200
@@ -1,3 +1,10 @@
+ticcutils (0.4-5.1) unstable; urgency=medium
+
+  * Non-maintainer upload with maintainer permission. Thanks.
+  * Use dh-autoreconf to update autoconf and libtool files.
+
+ -- Aurelien Jarno aure...@debian.org  Wed, 10 Sep 2014 20:51:05 +0200
+
 ticcutils (0.4-5) unstable; urgency=low
 
   * debian/libticcutils2-dev.install, debian/libticcutils-dev.install,
diff -Nru ticcutils-0.4/debian/control ticcutils-0.4/debian/control
--- ticcutils-0.4/debian/control	2013-08-01 16:14:49.0 +0200
+++ ticcutils-0.4/debian/control	2014-09-10 20:50:14.0 +0200
@@ -3,7 +3,7 @@
 Priority: extra
 Maintainer: Debian Science Team debian-science-maintainers@lists.alioth.debian.org
 Uploaders: Joost van Baal-Ilić joos...@debian.org, Ko van der Sloot ko.vandersl...@uvt.nl
-Build-Depends: cdbs, debhelper (= 8), pkg-config, libxml2-dev
+Build-Depends: cdbs, debhelper (= 8), pkg-config, libxml2-dev, dh-autoreconf
 Standards-Version: 3.9.4
 Homepage: http://ilk.uvt.nl/
 Vcs-Svn: svn://svn.debian.org/svn/debian-science/packages/libticcutils/trunk
diff -Nru ticcutils-0.4/debian/rules ticcutils-0.4/debian/rules
--- ticcutils-0.4/debian/rules	2013-08-01 16:19:01.0 +0200
+++ ticcutils-0.4/debian/rules	2014-09-10 20:53:21.0 +0200
@@ -4,6 +4,7 @@
 # $URL: svn+ssh://svn.debian.org/svn/debian-science/packages/libticcutils/trunk/debian/rules $
 
 include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/autoreconf.mk
 include /usr/share/cdbs/1/class/autotools.mk
 
 # DEB_VERBOSE_ALL
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Bug#761702: chealpix: Please build-depends on libcfitsio-dev instead of libcfitsio3-dev

2014-09-15 Thread Aurelien Jarno
Package: chealpix
Version: 3.11.4-2
Severity: wishlist
Tags: sid

Dear maintainer,

With the latest upload of cfitsio, the development library has been
changed to libcfitsio-dev from libcfitsio3-dev, as we now have only one
version of the cfitsio library in the archive. libcfitsio3-dev is now a
transitional package depending on libcfitsio-dev. The goal is to get
this package removed after the Jessie release.

chealpix build-depends on libcfitsio3-dev. Could you please
change it to libcfitsio-dev, so that the libcfitsio3-dev transitional
package can later be removed? So far there is no real urgency to do so,
and thus there is no need for a specific upload to fix this bug. That said
if you prepare an upload, you can squash this change in. I'll upgrade the
severity of this bug (if still opened) after the Jessie release.

Thanks,
Aurelien

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#761703: chealpix: Please build-depends on libcfitsio-dev instead of libcfitsio3-dev

2014-09-15 Thread Aurelien Jarno
Package: chealpix
Version: 3.11.4-2
Severity: wishlist
Tags: sid

Dear maintainer,

With the latest upload of cfitsio, the development library has been
changed to libcfitsio-dev from libcfitsio3-dev, as we now have only one
version of the cfitsio library in the archive. libcfitsio3-dev is now a
transitional package depending on libcfitsio-dev. The goal is to get
this package removed after the Jessie release.

chealpix build-depends on libcfitsio3-dev. Could you please
change it to libcfitsio-dev, so that the libcfitsio3-dev transitional
package can later be removed? So far there is no real urgency to do so,
and thus there is no need for a specific upload to fix this bug. That said
if you prepare an upload, you can squash this change in. I'll upgrade the
severity of this bug (if still opened) after the Jessie release.

Thanks,
Aurelien

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#761707: fitsverify: Please build-depends on libcfitsio-dev instead of libcfitsio3-dev

2014-09-15 Thread Aurelien Jarno
Package: fitsverify
Version: 4.17-1
Severity: wishlist
Tags: sid

Dear maintainer,

With the latest upload of cfitsio, the development library has been
changed to libcfitsio-dev from libcfitsio3-dev, as we now have only one
version of the cfitsio library in the archive. libcfitsio3-dev is now a
transitional package depending on libcfitsio-dev. The goal is to get
this package removed after the Jessie release.

fitsverify build-depends on libcfitsio3-dev. Could you please
change it to libcfitsio-dev, so that the libcfitsio3-dev transitional
package can later be removed? So far there is no real urgency to do so,
and thus there is no need for a specific upload to fix this bug. That said
if you prepare an upload, you can squash this change in. I'll upgrade the
severity of this bug (if still opened) after the Jessie release.

Thanks,
Aurelien
ftools-fv 5.3+dfsg-5
gyoto 0.2.1-2
healpix-cxx 3.11.2-7
healpy 1.8.1-1
kst 2.0.3-2
kstars 4:4.14.0-1
libastro-fits-cfitsio-perl 1.10-1
pyfits 1:3.3-2
python-astropy 0.4.1+dfsg2-1
pyxplot 0.9.2-4
skycat 3.1.2+starlink1~b-8
slcfitsio 0.3.8+nosvn-4.1
tcl-fitstcl 2.3-3
wcslib 4.23-1

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#761709: gyoto: Please build-depends on libcfitsio-dev instead of libcfitsio3-dev

2014-09-15 Thread Aurelien Jarno
Package: gyoto
Version: 0.2.1-2
Severity: wishlist
Tags: sid

Dear maintainer,

With the latest upload of cfitsio, the development library has been
changed to libcfitsio-dev from libcfitsio3-dev, as we now have only one
version of the cfitsio library in the archive. libcfitsio3-dev is now a
transitional package depending on libcfitsio-dev. The goal is to get
this package removed after the Jessie release.

gyoto build-depends on libcfitsio3-dev. Could you please
change it to libcfitsio-dev, so that the libcfitsio3-dev transitional
package can later be removed? So far there is no real urgency to do so,
and thus there is no need for a specific upload to fix this bug. That said
if you prepare an upload, you can squash this change in. I'll upgrade the
severity of this bug (if still opened) after the Jessie release.

Thanks,
Aurelien
healpix-cxx 3.11.2-7
healpy 1.8.1-1
kst 2.0.3-2
kstars 4:4.14.0-1
libastro-fits-cfitsio-perl 1.10-1
pyfits 1:3.3-2
python-astropy 0.4.1+dfsg2-1
pyxplot 0.9.2-4
skycat 3.1.2+starlink1~b-8
slcfitsio 0.3.8+nosvn-4.1
tcl-fitstcl 2.3-3
wcslib 4.23-1

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#761710: healpix-cxx: Please build-depends on libcfitsio-dev instead of libcfitsio3-dev

2014-09-15 Thread Aurelien Jarno
Package: healpix-cxx
Version: 3.11.2-7
Severity: wishlist
Tags: sid

Dear maintainer,

With the latest upload of cfitsio, the development library has been
changed to libcfitsio-dev from libcfitsio3-dev, as we now have only one
version of the cfitsio library in the archive. libcfitsio3-dev is now a
transitional package depending on libcfitsio-dev. The goal is to get
this package removed after the Jessie release.

healpix-cxx build-depends on libcfitsio3-dev. Could you please
change it to libcfitsio-dev, so that the libcfitsio3-dev transitional
package can later be removed? So far there is no real urgency to do so,
and thus there is no need for a specific upload to fix this bug. That said
if you prepare an upload, you can squash this change in. I'll upgrade the
severity of this bug (if still opened) after the Jessie release.

Thanks,
Aurelien
healpy 1.8.1-1
kst 2.0.3-2
kstars 4:4.14.0-1
libastro-fits-cfitsio-perl 1.10-1
pyfits 1:3.3-2
python-astropy 0.4.1+dfsg2-1
pyxplot 0.9.2-4
skycat 3.1.2+starlink1~b-8
slcfitsio 0.3.8+nosvn-4.1
tcl-fitstcl 2.3-3
wcslib 4.23-1

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#761920: scilab: FTBFS on ppc64el: error: Could not detect the location of the Java

2014-09-16 Thread Aurelien Jarno
Source: scilab
Version: 5.5.0-3
Severity: important
Tags: patch

Dear Maintainer,

scilab FTBFS on ppc64el with the following error:

| checking if jni.h can be included... yes
| configure: error: Could not detect the location of the Java
| shared library. You will need to update java.m4
| to add support for this JVM configuration.
| Looking for JNI libs with ppc64le as machine hardware name
| Looking for /usr/lib/jvm/java-7-openjdk-ppc64el/jre/lib/ppc64le/libjava.so
| Looking for /usr/lib/jvm/java-7-openjdk-ppc64el/jre/lib/amd64/libjava.so
| Looking for /usr/lib/jvm/java-7-openjdk-ppc64el/jre/lib/i386/client/libjvm.so
| Looking for /usr/lib/jvm/java-7-openjdk-ppc64el/jre/bin/classic/libjvm.so
| Looking for /usr/lib/jvm/java-7-openjdk-ppc64el/lib/jvm.lib
| Looking for /usr/lib/jvm/java-7-openjdk-ppc64el/jre/lib/mipsel/libjava.so
| make: *** [debian/stamp-autotools] Error 1
| /usr/share/cdbs/1/class/autotools.mk:42: recipe for target 
'debian/stamp-autotools' failed

A full build log is available here:
https://buildd.debian.org/status/fetch.php?pkg=scilabarch=ppc64elver=5.5.0-3stamp=1410496986

As suggested by the error message, here is an update of m4/java.m4 to
support ppc64el. I have also changed the machine for ppc64 big endian,
which use the same directory as the little endian version. I guess it
was wrongly set as a 32-bit powerpc machine can run a 64-bit kernel.
Packages should be built using the linux32 wrapper on such machines.

diff -Nru scilab-5.5.0/debian/patches/m4-java-ppc64el.patch 
scilab-5.5.0/debian/patches/m4-java-ppc64el.patch
--- scilab-5.5.0/debian/patches/m4-java-ppc64el.patch   1970-01-01 
00:00:00.0 +
+++ scilab-5.5.0/debian/patches/m4-java-ppc64el.patch   2014-09-16 
18:47:50.0 +
@@ -0,0 +1,16 @@
+--- scilab-5.5.0.orig/m4/java.m4
 scilab-5.5.0/m4/java.m4
+@@ -471,9 +471,12 @@ AC_DEFUN([AC_JAVA_JNI_LIBS], [
+# Sun
+   machine=sparc
+   ;;
+-powerpc|ppc64)
++powerpc)
+   machine=ppc
+   ;;
++ppc64|ppc64le)
++  machine=ppc64
++  ;;
+ armv*)
+   machine=arm
+   ;;
diff -Nru scilab-5.5.0/debian/patches/series scilab-5.5.0/debian/patches/series
--- scilab-5.5.0/debian/patches/series  2014-08-02 10:48:00.0 +
+++ scilab-5.5.0/debian/patches/series  2014-09-16 18:47:55.0 +
@@ -6,3 +6,4 @@
 depend-scicos.diff
 missing-lib.diff
 m4-hdf5.patch
+m4-java-ppc64el.patch

Would it be possible to apply this patch in the next upload? Thanks in advance.

Aurelien

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: ppc64el (ppc64le)

Kernel: Linux 3.14-2-powerpc64le (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#804577: atlas: pre-computed timings for mips64el

2015-11-09 Thread Aurelien Jarno
Source: atlas
Version: 3.10.2-8 
Severity: wishlist
Tags: patch

Hi,

atlas takes a lot of time to build on mips64el as the package doesn't
have pre-computed timings for this architecture. I have done the work
on etler.debian.org, the mips(64)el porterbox. Please find attached the
file GENERIC64.tar.bz2 to be installed in debian/archdefs/mips64el
as well as the patch below:

--- atlas-3.10.2/debian/archdefs/README
+++ atlas-3.10.2/debian/archdefs/README
@@ -16,6 +16,7 @@
 - i386: from ATLAS 3.10.1 tarball
 - mips: ATLAS 3.10.1 / gabrielli.debian.org / sid / 2013-07-27
 - mipsel: ATLAS 3.10.1 / eder.debian.org / sid / 2013-06-07
+- mip64el: ATLAS 3.10.2 / etler.debian.org / sid / 2015-11-08
 - powerpc: ATLAS 3.10.1 / partch.debian.org / sid / 2013-06-06
 - ppc64el: ATLAS 3.10.2 / pastel.debian.net / sid / 2014-10-24
 - s390x: ATLAS 3.10.1 / zelenka.debian.org / sid / 2013-06-06
--- atlas-3.10.2/debian/source/include-binaries
+++ atlas-3.10.2/debian/source/include-binaries
@@ -9,3 +9,4 @@
 debian/archdefs/powerpc/GENERIC32.tar.bz2
 debian/archdefs/ppc64el/GENERIC64LE.tar.bz2
 debian/archdefs/s390x/IBMz964.tar.bz2
+debian/archdefs/mips64el/GENERIC64.tar.bz2

Could you please include it in the next upload?

Thanks,
Aurelien

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

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


GENERIC64.tar.bz2
Description: BZip2 compressed data
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Bug#810465: wxastrocapture: please switch to libusb 1.0

2016-01-08 Thread Aurelien Jarno
Package: wxastrocapture
Version: 1.8.1+git20140821+dfsg-1
Severity: wishlist

Dear Maintainer,

wxastrocapture has a build-depends on libusb-dev. A few years ago upstream
has released a new major version libusb 1.0 with a different API which
aims to fix design deficiencies with USB 2.0 and 3.0 in mind.

The old libusb 0.1 package is not supported upstream anymore and should
be considered deprecated.

If wxastrocapture supports the new libusb 1.0 library, please consider
switching the build-depends from libusb-dev to libusb-1.0-0-dev. If not
please inform upstream that porting the software to the new API is
recommended.

Thanks,
Aurelien

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#810464: visp: please switch to libusb 1.0

2016-01-08 Thread Aurelien Jarno
Package: visp
Version: 3.0.0-1
Severity: wishlist

Dear Maintainer,

visp has a build-depends on libusb-dev. A few years ago upstream
has released a new major version libusb 1.0 with a different API which
aims to fix design deficiencies with USB 2.0 and 3.0 in mind.

The old libusb 0.1 package is not supported upstream anymore and should
be considered deprecated.

If visp supports the new libusb 1.0 library, please consider
switching the build-depends from libusb-dev to libusb-1.0-0-dev. If not
please inform upstream that porting the software to the new API is
recommended.

Thanks,
Aurelien

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#810443: libticables: please switch to libusb 1.0

2016-01-08 Thread Aurelien Jarno
Package: libticables
Version: 1.3.4+dfsg-5
Severity: wishlist

Dear Maintainer,

libticables has a build-depends on libusb-dev. A few years ago upstream
has released a new major version libusb 1.0 with a different API which
aims to fix design deficiencies with USB 2.0 and 3.0 in mind.

The old libusb 0.1 package is not supported upstream anymore and should
be considered deprecated.

If libticables supports the new libusb 1.0 library, please consider
switching the build-depends from libusb-dev to libusb-1.0-0-dev. If not
please inform upstream that porting the software to the new API is
recommended.

Thanks,
Aurelien

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#833602: dolfin: please enable parallel building

2016-08-06 Thread Aurelien Jarno
Source: dolfin
Version: 2016.1.0-1
Severity: wishlist

Dear Maintainer,

dolfin takes a significant time to build even on fast architectures. It
appears it only use a single CPU during the build, while all build
daemons have multiple CPUs.

Therefore please enable parallel building. Given the package uses dh and
cmake, it should only be a matter of adding "--parallel" to the dh $@
call.

Thanks,
Aurelien

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#870547: librsl: hardcoded Pre-Depends on multiarch-support

2017-08-02 Thread Aurelien Jarno
Source: librsl
Version: 1.43-1.1
Tags: sid buster patch
User: debian-gl...@lists.debian.org
Usertags: multiarch-support-removal

Dear Maintainer,

The multiarch-support package has been introduced with squeeze so that
packages using the multiarch libraries can Pre-Depends on it to make
sure the multiarch path ares supported by the dynamic linker. As
dist-upgrades from such a distant release are not supported, the
Pre-Depends can now be dropped and then the package removed from the
archive.

Most of the packages added this Pre-Depends through debhelper and the
misc:Pre-Depends substvar, so a change in debhelper [1] was enough to
get rid of it. However it appears that your package uses a hardcoded
Pre-Depends, thus it needs to be removed manually. You will find a
patch attached to do so.

Please apply it as soon as possible as the multiarch-support package
will be removed from the archive for buster. Failing to do so will 
therefore make your package uninstallable. In case you don't have
time to do so, don't hesitate to ask for a NMU.

Thanks,
Aurelien

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=783898
diff -Nru librsl-1.43/debian/control librsl-1.43/debian/control
--- librsl-1.43/debian/control	2017-01-03 09:27:17.0 +
+++ librsl-1.43/debian/control	2017-08-02 19:31:53.0 +
@@ -12,7 +12,7 @@
 Package: librsl1
 Architecture: any
 Depends: ${misc:Depends}, ${shlibs:Depends}
-Pre-depends: multiarch-support
+Pre-depends: ${misc:Pre-Depends}
 Description: TRMM Radar Software Library
  RSL is a library produced by the NASA TRMM Satellite Validation Office and
  used to access several radar file formats. It can generated images directly
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Bug#885180: RM: hepmc -- RoQA; unmaintained, does not build for > 2 years

2017-12-25 Thread Aurelien Jarno
Package: ftp.debian.org
Severity: normal

hepmc does not build with gcc-5 or later (see bug#777901), and thus
requires a gcc 4.x to build, which has been last shipped in Jessie. This
problem has been forwarded upstream, but hasn't been fixed yet. This
problem has been there for almost 3 years and nobody seems to care about
it.

In addition to that hepmc build-depends on a package which is not
anymore in the archive (see bug#867090). Again nobody seems to care
about that, even if the bug is "only" 6 months old.

This package hasn't been part of the Stretch release and hasn't seen any
Debian upload or upstream activity for more than 5 years. I therefore
recommend to just remove this package from the archive. If someone
finally wants to maintain it and if upstream restarts its activity, it's
always possible to get the latest version of the package from
snapshot.debian.org.

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#870547: librsl: hardcoded Pre-Depends on multiarch-support

2018-01-20 Thread Aurelien Jarno
Control: tag -1 + pending

Dear maintainer,

I have prepared an NMU for librsl (versioned as 1.43-1.2), removing the
hardcoded Pre-Depends on multiarch-support (Bug#870547). You will find
the diff attached. I have uploaded it to DELAYED/15. Please feel free 
to tell me if I should delay it longer or cancel it altogether.

Regards,
Aurelien

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net
diff -Nru librsl-1.43/debian/changelog librsl-1.43/debian/changelog
--- librsl-1.43/debian/changelog	2017-01-03 10:27:17.0 +0100
+++ librsl-1.43/debian/changelog	2018-01-20 14:16:41.0 +0100
@@ -1,3 +1,11 @@
+librsl (1.43-1.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * debian/control: Drop explicit Pre-Depends on multiarch-support (Closes:
+#870547). 
+
+ -- Aurelien Jarno <aure...@debian.org>  Sat, 20 Jan 2018 14:16:41 +0100
+
 librsl (1.43-1.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru librsl-1.43/debian/control librsl-1.43/debian/control
--- librsl-1.43/debian/control	2017-01-03 10:27:17.0 +0100
+++ librsl-1.43/debian/control	2018-01-20 14:14:53.0 +0100
@@ -12,7 +12,7 @@
 Package: librsl1
 Architecture: any
 Depends: ${misc:Depends}, ${shlibs:Depends}
-Pre-depends: multiarch-support
+Pre-depends: ${misc:Pre-Depends}
 Description: TRMM Radar Software Library
  RSL is a library produced by the NASA TRMM Satellite Validation Office and
  used to access several radar file formats. It can generated images directly
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Accepted librsl 1.43-1.2 (source) into unstable

2018-02-04 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 20 Jan 2018 14:16:41 +0100
Source: librsl
Binary: librsl1 librsl-dev librsl-doc
Architecture: source
Version: 1.43-1.2
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 
<debian-science-maintainers@lists.alioth.debian.org>
Changed-By: Aurelien Jarno <aure...@debian.org>
Description:
 librsl-dev - Development files for RSL
 librsl-doc - HTML documentation for RSL
 librsl1- TRMM Radar Software Library
Closes: 870547
Changes:
 librsl (1.43-1.2) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * debian/control: Drop explicit Pre-Depends on multiarch-support (Closes:
 #870547).
Checksums-Sha1:
 ff2168ac3a36ffc051dbba1004d7b6f036912d1f 2108 librsl_1.43-1.2.dsc
 2d841bf76684644c2b97d9281f516020ac7a3fd6 7560 librsl_1.43-1.2.debian.tar.xz
 52bf5df1d67e48cff958a12277e4b77905b98348 5421 librsl_1.43-1.2_source.buildinfo
Checksums-Sha256:
 fbefcf8942098aad4de76f22149109cc6618a33841187d12081d3ae2c56cd579 2108 
librsl_1.43-1.2.dsc
 85ab2647054a9e0185f30c4d2c8e640ea8b24b40f5c8164d50a86d66987ddc19 7560 
librsl_1.43-1.2.debian.tar.xz
 390efcab21953002bd710cd5668d20146a26dec84060f02c5076930453bd1e7b 5421 
librsl_1.43-1.2_source.buildinfo
Files:
 3cfa3afc924e9a74760355b342e27f84 2108 science extra librsl_1.43-1.2.dsc
 699a0a69b40e40511c97895754b6de03 7560 science extra 
librsl_1.43-1.2.debian.tar.xz
 2899035b318651d1ab2ed5597461c65f 5421 science extra 
librsl_1.43-1.2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEUryGlb40+QrX1Ay4E4jA+JnoM2sFAlpjQXMACgkQE4jA+Jno
M2spGA//QDT6aZzwnJgt+mvOCZGYYrQbytqTxeIj8vV6UkhrneIEIEWEHpUB57QZ
VabrF9G5N6KxeCbg+BbHbpO+L+I+bjg+SRJiz+oqGAxAU01M6lxGhTzdO9xTL1il
ANcd0ov7L9dYqxilqUh8Xdxj4uYMFYaxU+19KjBfHxx3ovKb6oiP2HExzpGlwqrI
ianvQxZNRd2wbqYbX5q2YFnDBlis5cqCxxUHmnZxZLFYMi4wJyPSq0DQlX3V3eZ2
L/I/X4sA0qS841iqq+DK5KcREzOVh0UnuCmRNNrx1cwqRMfHuLv6KYn27BhO27fI
lz8oFogTl2w/dLMNdAKxi0oUbmtCJz9stAjejat2po2cSLbPHw+fbQB8A0Dn+7gm
3hmKxwR4cmpxGO3bjHWVrN86fdf94v0ZejriO5S4dvwcP6IU/lSgrtpTSAEQCPjA
8WFssMUhc3pfwVpzgRYmJy4JdtJpbAB6bu7Atg1w6SgseP+CQgMRMoK5ZC2/8chW
mKIsu8viKGcZRzV8qvrIAsndjR+US+ymmiZYaCTRSKZqNzVoK0Glc7saUPR6WgQY
z+7KoOU6uNEdP45qRTbrNYIf9QDuSHhaHX/mmpZgVEQhySYNI55JMx0dJZP/rxhE
8ciWpbLxIeNWybyOQaTAu1UXH23hlB1lqopYqzr2kL0WWq9Fnhc=
=Zvce
-END PGP SIGNATURE-


-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers