Processing of gringo_4.5.4-3_amd64.changes

2016-05-01 Thread Debian FTP Masters
gringo_4.5.4-3_amd64.changes uploaded successfully to localhost
along with the files:
  gringo_4.5.4-3.dsc
  gringo_4.5.4-3.debian.tar.xz
  gringo-dbgsym_4.5.4-3_amd64.deb
  gringo_4.5.4-3_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.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


arachne-pnr is marked for autoremoval from testing

2016-05-01 Thread Debian testing autoremoval watch
arachne-pnr 0.1+20151224git1a4fdf9-1 is marked for autoremoval from testing on 
2016-06-07

It (build-)depends on packages with these RC bugs:
822408: yosys: FTBFS: error: expected unqualified-id before '(' token


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


gringo is marked for autoremoval from testing

2016-05-01 Thread Debian testing autoremoval watch
gringo 4.5.4-1 is marked for autoremoval from testing on 2016-06-07

It is affected by these RC bugs:
822383: gringo: FTBFS: error: 'pow' is not a member of 'std'


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


yosys is marked for autoremoval from testing

2016-05-01 Thread Debian testing autoremoval watch
yosys 0.6-4 is marked for autoremoval from testing on 2016-06-07

It is affected by these RC bugs:
822408: yosys: FTBFS: error: expected unqualified-id before '(' token


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


asl is marked for autoremoval from testing

2016-05-01 Thread Debian testing autoremoval watch
asl 0.1.6-1 is marked for autoremoval from testing on 2016-05-23

It is affected by these RC bugs:
822469: asl: FTBFS: error: expected unqualified-id before 'sizeof'


-- 
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#823174: ros-pluginlib: debian/rules uses non-portable shell syntax; please make the build reproducible (shell)

2016-05-01 Thread Daniel Shahaf
Source: ros-pluginlib
Version: 1.10.1-3
Severity: minor
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: environment

Dear Maintainer,

While working on the “reproducible builds” effort, we have noticed that
ros-pluginlib could not be built reproducibly; the diff between two
builds is:


https://tests.reproducible-builds.org/rb-pkg/unstable/amd64/ros-pluginlib.html
│   │   │   │ 
-add_definitions(-DCMAKE_LIBRARY_ARCHITECTURE=\"${CMAKE_LIBRARY_ARCHITECTURE}\")
│   │   │   │ 
+add_definitions(-DCMAKE_LIBRARY_ARCHITECTURE=\\"${CMAKE_LIBRARY_ARCHITECTURE}\\")

This difference is down to debian/rules calling echo(1) with an argument
that contains a literal backslash.  The behaviour of echo(1) in that
case is (according to POSIX) implementation-defined.  Since debian/rules
uses echo(1) from the building user's shell, the build output differs
when the building user uses SHELL=bash v. SHELL=dash:

% s=\'foobar\'; LC_ALL=C dash -c "echo $s" 
foo\bar
% s=\'foobar\'; LC_ALL=C bash -c "echo $s" 
foo\\bar
%

The following patch removes the use of implementation-defined behaviour:

[[[
diff --git a/debian/rules b/debian/rules
index 9e5b691..c867402 100755
--- a/debian/rules
+++ b/debian/rules
@@ -10,7 +10,7 @@ override_dh_auto_test:
 
 override_dh_auto_configure:
dh_auto_configure
-   echo 
'add_definitions(-DCMAKE_LIBRARY_ARCHITECTURE=\\"$${CMAKE_LIBRARY_ARCHITECTURE}\\")'
 >> build/catkin_generated/installspace/pluginlibConfig.cmake
+   printf 'add_definitions(-DCMAKE_LIBRARY_ARCHITECTURE=\\"%s\\")' 
'$${CMAKE_LIBRARY_ARCHITECTURE}' >> 
build/catkin_generated/installspace/pluginlibConfig.cmake
 
 override_dh_auto_install:
dh_auto_install --destdir=debian/tmp
]]]

This patch should also make the build reproducible, but I didn't test that.

Note that when built under bash, pluginlibConfig.cmake would contain
additional backslashes; I'm not sure what their effect would be.

Cheers,

Daniel

-- 
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#822120: marked as done (Boost 1.55 to be removed; your attention required)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 08:35:04 +
with message-id <20160501083504.gc6...@chase.mapreri.org>
and subject line Fixed in 1:0.101.1-1
has caused the Debian Bug report #822120,
regarding Boost 1.55 to be removed; your attention required
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.)


-- 
822120: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=822120
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: feel++
Severity: normal

Boost 1.55 has not built correctly since the GCC 5 introduction in July 2015 
and I plan
to ask for its removal from unstable very shortly.  It has already been removed 
from
testing.

The package feel++ appeared on a list of reverse dependencies generated 
using 'dak rm -Rn boost1.55' (see below).  This bug is to request an
upload with updated boost dependencies.

If your package build-depends on the default boost, then a simple rebuild will 
suffice.
If your package uses 1.55-versioned build-deps, then please check whether you 
can
move to default boost.  Or if not, at least move to 1.58.

Output from ssh mirror.ftp-master.debian.org "dak rm -Rn boost1.55" follows.

Checking reverse dependencies...
# Broken Depends:
ball: ballview [amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc ppc64el s390x]
  libball1.4 [amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc ppc64el s390x]
  libballview1.4 [amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc ppc64el s390x]
  python-ball [amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc ppc64el s390x]
  python-ballview [amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc ppc64el s390x]
cufflinks/non-free: cufflinks [amd64]
diet: diet-agent [amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc ppc64el s390x]
  libdiet-admin2.8 [amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc ppc64el s390x]
  libdiet-client2.8 [amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc ppc64el s390x]
  libdiet-dagda2.8 [amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc ppc64el s390x]
  libdiet-sed2.8 [amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc ppc64el s390x]
feel++: feel++-apps [amd64 i386 powerpc]
libfeel++1 [amd64 i386 powerpc]
gqrx-sdr: gqrx-sdr [kfreebsd-amd64 kfreebsd-i386]
gr-air-modes: gr-air-modes [kfreebsd-amd64 kfreebsd-i386]
  libair-modes0 [kfreebsd-amd64 kfreebsd-i386]
gr-osmosdr: gr-osmosdr [kfreebsd-amd64 kfreebsd-i386]
libgnuradio-osmosdr0.1.3 [kfreebsd-amd64 kfreebsd-i386]
kig: kig [hurd-i386]
librime: librime-bin [hurd-i386]
 librime1 [hurd-i386]
limereg: limereg [mips mipsel]
mongodb: mongodb-clients [hurd-i386 kfreebsd-i386]
 mongodb-server [hurd-i386 kfreebsd-i386]
openvrml: libopenvrml9 [amd64 armel armhf i386 mips mipsel powerpc ppc64el 
s390x]
  openvrml-lookat [amd64 armel armhf i386 mips mipsel powerpc ppc64el 
s390x]
pcb2gcode: pcb2gcode [kfreebsd-amd64 kfreebsd-i386]
qbittorrent: qbittorrent [kfreebsd-amd64 kfreebsd-i386]
 qbittorrent-nox [kfreebsd-amd64 kfreebsd-i386]
qpid-cpp: libqpidcommon2 [amd64 arm64 i386 mipsel powerpc ppc64el]
  qpidd [amd64 arm64 i386 mipsel powerpc ppc64el]
smc: smc [amd64 armel armhf i386 kfreebsd-amd64 kfreebsd-i386 mips mipsel 
powerpc s390x]
swift-im: libswiften-dev [amd64 arm64 armel armhf i386 mips mipsel powerpc 
ppc64el s390x]
  libswiften2 [amd64 arm64 armel armhf i386 mips mipsel powerpc ppc64el 
s390x]
  swift-im [amd64 arm64 armel armhf i386 mips mipsel powerpc ppc64el 
s390x]
--- End Message ---
--- Begin Message ---
Version: 1:0.101.1-1

I managed to forget to include the bugs in the changelog, so closing
them manually.

The bug you have reported has been fixed in the last update, about to be
installed in the archive.


The updated changelog:

feel++ (1:0.101.1-1) unstable; urgency=medium

  * Team upload.

  [ Mattia Rizzolo ]
  * New upstream version.
+ Fix building with gcc5.  Closes: #777848, #811714
+ Use vtk6.  Closes: #821876
+ Use boost1.58.  Closes: #822120
  * debian/control:
+ Run wrap-and-sort.
+ Build-depend on slepc-dev instead of the versioned libslepc3.4.2-dev.
+ Move packaging to git.
+ Add new build-deps: libopenturns, 

Bug#811714: marked as done (FTBFS: unknown type name 'matrix'; did you mean 'Feel::tag::matrix')

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 08:35:04 +
with message-id <20160501083504.gc6...@chase.mapreri.org>
and subject line Fixed in 1:0.101.1-1
has caused the Debian Bug report #811714,
regarding FTBFS: unknown type name 'matrix'; did you mean 'Feel::tag::matrix'
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.)


-- 
811714: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811714
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: feel++
Version: 1:0.99.0-final.1-1
Severity: important
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-6 gcc-6-unknown-type-name

This package fails to build with GCC 6.  GCC 6 has not been released
yet, but it's expected that GCC 6 will become the default compiler for
stretch.

Note that only the first error is reported; there might be more.  You
can find a snapshot of GCC 6 in experimental.  To build with GCC 6,
you can set CC=gcc-6 CXX=g++-6 explicitly.

You may be able to find out more about this issue at
https://gcc.gnu.org/gcc-6/changes.html

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
> cd /build/feel++-aBi8dr/feel++-0.99.0-final.1/obj-x86_64-linux-gnu/feel && 
> /usr/bin/clang++-3.5   -DBOOST_FILESYSTEM_VERSION=3 
> -DBOOST_NO_CXX11_SCOPED_ENUMS -DBOOST_NO_CXX11_VARIADIC_TEMPLATES 
> -DBOOST_NO_SCOPED_ENUMS -DBOOST_PARAMETER_MAX_ARITY=24 
> -DBOOST_RESULT_OF_USE_TR1 -DBOOST_TEST_DYN_LINK -DBOOST_UBLAS_MOVE_SEMANTICS 
> -DFEELPP_HAS_DLFCN_H -DFEELPP_HAS_DLOPEN -DFEELPP_HAS_GMSH=1 
> -DFEELPP_HAS_MPI=1 -DFEELPP_HAS_MPI_H=1 -DFEELPP_HAS_PETSC 
> -DFEELPP_HAS_PETSC_H -DGMSH_EXECUTABLE=/usr/bin/gmsh -DHAVE_LIBDL -DIN_GINAC 
> -D_FEELPP_HAS_GMSH_ -Dfeelpp_EXPORTS 
> -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/contrib 
> -I/usr/lib/openmpi/include -I/usr/lib/openmpi/include/openmpi 
> -I/usr/include/hdf5/openmpi 
> -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/obj-x86_64-linux-gnu/contrib/cln/include
>  -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/contrib/ginac 
> -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/obj-x86_64-linux-gnu/contrib/ginac
>  -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/contrib/ginac/gina
> c 
> -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/obj-x86_64-linux-gnu/contrib/ginac/ginac
>  -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/contrib/nlopt/api 
> -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/contrib/eigen -I/usr/include/ANN 
> -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/obj-x86_64-linux-gnu/contrib/gflags/include
>  
> -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/obj-x86_64-linux-gnu/contrib/glog/include
>  -I/usr/include/python2.7 -I/usr/lib/petscdir/3.4.2/include 
> -I/usr/lib/petscdir/3.4.2/linux-gnu-c-opt/include -I/usr/include/suitesparse 
> -I/usr/include/scotch -I/usr/lib/x86_64-linux-gnu/hdf5/openmpi/include 
> -I/usr/lib/petsc/include -I/usr/lib/petsc/linux-gnu-c-opt/include 
> -I/usr/lib/slepc/linux-gnu-c-opt/include -I/usr/lib/slepc/include 
> -I/usr/include/gmsh -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/contrib/gmsh 
> -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/obj-x86_64-linux-gnu 
> -I/build/feel++-aBi8dr/feel++-0.99.0-final.1 
> -I/build/feel++-aBi8dr/feel++-0.99.0-final.1/contrib/gmm/include  -g -O2 
> -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wdate-time 
> -D_FORTIFY_SOURCE=2 -std=c++0x -std=c++11 -ftemplate-depth=1024 
> -stdlib=libstdc++ -O2 -DNDEBUG -g0 -fPIC-Wall -Wno-unused 
> -Wno-sign-compare  -Wno-deprecated-register -fmacro-backtrace-limit=0 
> -ftemplate-backtrace-limit=0 -UBOOST_UBLAS_TYPE_CHECK -o 
> CMakeFiles/feelpp.dir/feelalg/preconditioner.cpp.o -c 
> /build/feel++-aBi8dr/feel++-0.99.0-final.1/feel/feelalg/preconditioner.cpp
> In file included from 
> /build/feel++-aBi8dr/feel++-0.99.0-final.1/feel/feelalg/preconditioner.cpp:29:
> In file included from 
> /build/feel++-aBi8dr/feel++-0.99.0-final.1/feel/feelalg/preconditioner.hpp:35:
> In file included from 
> /build/feel++-aBi8dr/feel++-0.99.0-final.1/feel/feelalg/matrixsparse.hpp:56:
> /usr/include/boost/numeric/ublas/matrix.hpp:1387:35: error: unknown type name 
> 'matrix'; did you mean 'Feel::tag::matrix'?
> fixed_matrix  = (matrix m) {
>   ^
> /build/feel++-aBi8dr/feel++-0.99.0-final.1/feel/feelcore/parameter.hpp:69:27: 
> note: 'Feel::tag::matrix' declared here
> BOOST_PARAMETER_NAME( matrix )
>   ^
> /usr/include/boost/parameter/name.hpp:140:7: note: expanded from macro 
> 'BOOST_PARAMETER_NAME'
> )(name) \
>   ^
> 

Bug#821876: marked as done (libfeel++-dev: Depends on libvtk5-dev, which will be removed)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 08:35:04 +
with message-id <20160501083504.gc6...@chase.mapreri.org>
and subject line Fixed in 1:0.101.1-1
has caused the Debian Bug report #821876,
regarding libfeel++-dev: Depends on libvtk5-dev, which will be removed
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.)


-- 
821876: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=821876
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libfeel++-dev
Severity: serious
Justification: Depends on vtk5
Control: block 798164 with -1

Dear Maintainer,

Your package depends on vtk 5.x, which should not be in stretch.
Please switch to vtk 6.x or drop the dependency.

--
tobi

-- 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.3.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
--- End Message ---
--- Begin Message ---
Version: 1:0.101.1-1

I managed to forget to include the bugs in the changelog, so closing
them manually.

The bug you have reported has been fixed in the last update, about to be
installed in the archive.


The updated changelog:

feel++ (1:0.101.1-1) unstable; urgency=medium

  * Team upload.

  [ Mattia Rizzolo ]
  * New upstream version.
+ Fix building with gcc5.  Closes: #777848, #811714
+ Use vtk6.  Closes: #821876
+ Use boost1.58.  Closes: #822120
  * debian/control:
+ Run wrap-and-sort.
+ Build-depend on slepc-dev instead of the versioned libslepc3.4.2-dev.
+ Move packaging to git.
+ Add new build-deps: libopenturns, libreadline, libscotch, libtrilinos-ml,
  libvtk6, paraview, petsc.
+ Remove build-depends on cdbs.
+ Stop building the -dbg package.  There are automatic debug packages now.
+ Stop building for ia64 and sparc, those architectures are gone now.
+ Bump Standards-Version to 3.9.8, no changes needed.
+ Make the descriptions policy compliant.
+ Disable building on powerpc: probably it won't be able anymore.
  * debian/watch: update for the move to github.
  * debian/rules:
+ Rewrite using the dh sequencer. (also bump compat level to 9).
+ Don't do parallel building.  The build really requires a lot of ram.

  [ Gianfranco Costamagna ]
  * debian/control:
+ Use default clang version.
+ Add astyle dependency.
  * debian/rules:
+ Remove PETSC hack on rules file.
+ Build with debug symbols.
+ Disable doxygen documentation, upstream didn't provide the api directory.
  * debian/patches/fix-scotch.patch: fix scotch include cmake script.

 -- Mattia Rizzolo   Sat, 30 Apr 2016 22:24:42 +


-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  https://mapreri.org : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


signature.asc
Description: PGP signature
--- End Message ---
-- 
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#822383: marked as done (gringo: FTBFS: error: 'pow' is not a member of 'std')

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 May 2016 07:20:48 +
with message-id 
and subject line Bug#822383: fixed in gringo 4.5.4-2
has caused the Debian Bug report #822383,
regarding gringo: FTBFS: error: 'pow' is not a member of 'std'
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.)


-- 
822383: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=822383
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gringo
Version: 4.5.4-1
Severity: serious

This package fails to build in unstable:

> sbuild (Debian sbuild) 0.68.0 (15 Jan 2016) on dl580gen9-02.hlinux
...
> g++ -o build/release/libgringo/src/term.o -c -g -O2 -fPIE 
> -fstack-protector-strong -Wformat -Werror=format-security -std=c++11 -O3 
> -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -DNDEBUG -DNDEBUG=1 -DWITH_LUA=1 
> -DWITH_PYTHON=1 -I/usr/include/lua5.2 -I/usr/include/python2.7 -Ilibgringo 
> -Ibuild/release/libgringo/src -Ilibgringo/src -Ilibprogram_opts 
> -Ilibprogram_opts/src libgringo/src/term.cc
> libgringo/src/term.cc: In member function 'virtual double 
> Gringo::FunctionTerm::estimate(double, const VarSet&) const':
> libgringo/src/term.cc:1848:37: error: 'pow' is not a member of 'std'
>  double root = std::max(1.0, std::pow(((*name).empty() ? size : 
> size/2.0), 1.0/args.size()));
>  ^
> scons: *** [build/release/libgringo/src/term.o] Error 1
> scons: building terminated because of errors.
> debian/rules:49: recipe for target 'override_dh_auto_build' failed
> make[1]: *** [override_dh_auto_build] Error 2

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise
--- End Message ---
--- Begin Message ---
Source: gringo
Source-Version: 4.5.4-2

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

Debian distribution maintenance software
pp.
Thomas Krennwallner  (supplier of updated gringo 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: Sun, 01 May 2016 08:47:29 +0200
Source: gringo
Binary: gringo
Architecture: source amd64
Version: 4.5.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Thomas Krennwallner 
Description:
 gringo - grounding tools for (disjunctive) logic programs
Closes: 822383
Changes:
 gringo (4.5.4-2) unstable; urgency=medium
 .
   * Bug fix: "FTBFS: error: 'pow' is not a member of 'std'", thanks to
 Martin Michlmayr (Closes: #822383).
   * Add patch to fix random python multithreading segfaults (upstream bug 117)
   * Add patch to fix #min/#max translation bug (upstream bug 119)
   * Build with liblua5.3
   * Bump Standards-Version to 3.9.8
Checksums-Sha1:
 c43b7ba91692a2c3878abf728c593ff2227e69fd 2056 gringo_4.5.4-2.dsc
 daac6e09a795711ec9637a21b102b055dc586dc2 10464 gringo_4.5.4-2.debian.tar.xz
 ed66e65af4942fa3c857420187ad43fee35d13ce 28247694 
gringo-dbgsym_4.5.4-2_amd64.deb
 448bbd605964a478657c17df862738c80042e811 1839910 gringo_4.5.4-2_amd64.deb
Checksums-Sha256:
 ff554b448edb20a4dab4ff0762bb09ea8c684418ef5b5a71a120687c9839b8d7 2056 
gringo_4.5.4-2.dsc
 52d8da8870d9a2f398c0e6030e8e7b656545ea42462149c9542e2a445dfdb95a 10464 
gringo_4.5.4-2.debian.tar.xz
 ecfd7a5e7093a2f5ea13c95b4ff80ec580ca36640a4f2b0e57387928422f5dca 28247694 
gringo-dbgsym_4.5.4-2_amd64.deb
 7bbd157d2ba8fb452b78e945f4f77fd5f5062deda677bc02fb68c95bece127bd 1839910 
gringo_4.5.4-2_amd64.deb
Files:
 c606da6e48a4e077b7954197cb4a47d6 2056 interpreters extra gringo_4.5.4-2.dsc
 a7ed5e2a5602015d35e3e92086eaaab8 10464 interpreters extra 
gringo_4.5.4-2.debian.tar.xz
 606cfa5391a88920f0d4db612c155ea4 28247694 debug extra 
gringo-dbgsym_4.5.4-2_amd64.deb
 92c6a12d01dfe35ec69c8d6cc0fac23c 1839910 interpreters extra 
gringo_4.5.4-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJahnAAoJECeX33SmZpqpHzgP/13UExUqxkUkEGZdufF1CDLT
zHiv80Rb0UedPLHNgmCCLU5enBxf+I5knaGOF0hhusDdILpDJd6FlXyNroUHANV8

gringo_4.5.4-2_amd64.changes ACCEPTED into unstable

2016-05-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 01 May 2016 08:47:29 +0200
Source: gringo
Binary: gringo
Architecture: source amd64
Version: 4.5.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Thomas Krennwallner 
Description:
 gringo - grounding tools for (disjunctive) logic programs
Closes: 822383
Changes:
 gringo (4.5.4-2) unstable; urgency=medium
 .
   * Bug fix: "FTBFS: error: 'pow' is not a member of 'std'", thanks to
 Martin Michlmayr (Closes: #822383).
   * Add patch to fix random python multithreading segfaults (upstream bug 117)
   * Add patch to fix #min/#max translation bug (upstream bug 119)
   * Build with liblua5.3
   * Bump Standards-Version to 3.9.8
Checksums-Sha1:
 c43b7ba91692a2c3878abf728c593ff2227e69fd 2056 gringo_4.5.4-2.dsc
 daac6e09a795711ec9637a21b102b055dc586dc2 10464 gringo_4.5.4-2.debian.tar.xz
 ed66e65af4942fa3c857420187ad43fee35d13ce 28247694 
gringo-dbgsym_4.5.4-2_amd64.deb
 448bbd605964a478657c17df862738c80042e811 1839910 gringo_4.5.4-2_amd64.deb
Checksums-Sha256:
 ff554b448edb20a4dab4ff0762bb09ea8c684418ef5b5a71a120687c9839b8d7 2056 
gringo_4.5.4-2.dsc
 52d8da8870d9a2f398c0e6030e8e7b656545ea42462149c9542e2a445dfdb95a 10464 
gringo_4.5.4-2.debian.tar.xz
 ecfd7a5e7093a2f5ea13c95b4ff80ec580ca36640a4f2b0e57387928422f5dca 28247694 
gringo-dbgsym_4.5.4-2_amd64.deb
 7bbd157d2ba8fb452b78e945f4f77fd5f5062deda677bc02fb68c95bece127bd 1839910 
gringo_4.5.4-2_amd64.deb
Files:
 c606da6e48a4e077b7954197cb4a47d6 2056 interpreters extra gringo_4.5.4-2.dsc
 a7ed5e2a5602015d35e3e92086eaaab8 10464 interpreters extra 
gringo_4.5.4-2.debian.tar.xz
 606cfa5391a88920f0d4db612c155ea4 28247694 debug extra 
gringo-dbgsym_4.5.4-2_amd64.deb
 92c6a12d01dfe35ec69c8d6cc0fac23c 1839910 interpreters extra 
gringo_4.5.4-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJahnAAoJECeX33SmZpqpHzgP/13UExUqxkUkEGZdufF1CDLT
zHiv80Rb0UedPLHNgmCCLU5enBxf+I5knaGOF0hhusDdILpDJd6FlXyNroUHANV8
+EFwnsfbqiGJWXhJ4YTCQRgtklx9EInTBsjV5x/D8aaUjVT2eeOgp6PyTfRMbNa5
9hVGa29GDOdF0/o3vPV6BGUk79MezL5LlH5rOodOS1CHqwUUW8w0Rvo5EPIHf6Kx
DCsscskBCzJDSTTWDm3lEAvUDto1qrhZAAo81nvJbtq8a0DbFHr6eGrVohG3lECY
S7bAzpszw3CuosiCDY428ass+nPW8LTM2jXISbo3QlQ7dFUzkqvjIkkXgee6ftE0
ZFnF0yoV2ehAlicj1vIs+ceYU1R3fPTpPQZCJrtgNiNhrFJZl0210uaPEM3uhYeA
RdTInZ8Umd8YjMIAoxmq/S/M8ggl/kqxiY4SkFoBFCklr+loZpmkjgohHn2kXf1C
2RmQUNbX0H0Iq/ufaKhoIWsyq1Y6jQIDqjOxi6tE2wgxKR5/adiEH2rvPnDVnLbq
mGlKzuJmPXALmeGY0LKFqECUW/0EIv5B6HgG/+Z5wURtespXfL0+rJnfW3gee+Bi
za0BfVQOBnAntBINlb747Hsr77friOGuULjtUOB6Rh9w++3LTlA3rJTj6p9TcX9W
xtwsMMjeng0LVHU3VO9/
=zBQ+
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


clasp_3.1.4-2_amd64.changes ACCEPTED into unstable

2016-05-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 01 May 2016 08:51:17 +0200
Source: clasp
Binary: clasp
Architecture: source amd64
Version: 3.1.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Thomas Krennwallner 
Description:
 clasp  - conflict-driven nogood learning answer set solver
Changes:
 clasp (3.1.4-2) unstable; urgency=medium
 .
   * Add patch to fix wrong number of optimal models in parallel mode
 (upstream bug 116)
   * Bump Standards-Version to 3.9.8
Checksums-Sha1:
 27e564992ea83bd7f68fa4d2cfe01dc97f5699d7 2016 clasp_3.1.4-2.dsc
 9bfad6dfbd94dff0dcd5cb9e061cac2eba689b2d 7040 clasp_3.1.4-2.debian.tar.xz
 11d7e57625652eb848431798f43c0f95d3a86554 4125434 clasp-dbgsym_3.1.4-2_amd64.deb
 97b68335e7ddd6db3920934c2086048dd19aa75e 464272 clasp_3.1.4-2_amd64.deb
Checksums-Sha256:
 6ebecea6814ac219bcda2eb39faafb16841e3a91c4b089b36f5495739106e721 2016 
clasp_3.1.4-2.dsc
 a8842f5bf0ecec45a82aff6252d6c3564286475c89437cca115b811e32bd5981 7040 
clasp_3.1.4-2.debian.tar.xz
 bba8eb5a5b37e46a79bde78f969ceb8f0090ce02f78821f75012d8ad6faaabf6 4125434 
clasp-dbgsym_3.1.4-2_amd64.deb
 192dc10b3da3177d987269f53b6920c28c13668b3f3161f0c900a881d58eca50 464272 
clasp_3.1.4-2_amd64.deb
Files:
 832245909c0c7fa48c62ab0c8ff14804 2016 interpreters extra clasp_3.1.4-2.dsc
 6b0c80be0c55ebb1150a60f6e585e9cd 7040 interpreters extra 
clasp_3.1.4-2.debian.tar.xz
 180e4efc5958a199a68a2c66e703872c 4125434 debug extra 
clasp-dbgsym_3.1.4-2_amd64.deb
 49e9111adcd18e974cef8dcc76c95040 464272 interpreters extra 
clasp_3.1.4-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJaqQAAoJECeX33SmZpqpkkoP/RFqWnVLgf47AB1rs7dOrgXb
KDKHItW5OGc9g7oMQyQ9biYiNAi4PQsAbrKDZX/GQHVBIR3GtoHd67q6Acr4eSAb
T3LUm1afaU1rFip7fgDCEeAwD1U4bl64eZJOmYmRG/X3CO3DJ1AzJ+RvJptQX2aJ
R11fkd5DcXg0QYKWi+QSp7sjZEqDxYs8XnqI7GNDG1IuyJST55tLeZYmP6twYuyg
75UFqfi4K25rVw6qug3xQdUaNBYWKqaFN4v5WpIcnzhFhZm/rayHEI//oxznubxe
D6j4OeNj3LdBeOQRUrOQaSHk9ue9kFXRrSjZmf4eW4nS2qqVhgWcqsGnALL7uK1N
8zx/2fEqcaBGkOgHh8aVgodVTh3U4MYSt6M7zeMPsWpENpx4nHeYv7NBOJSPr93J
aB8/IGNRROg15HBk64Q4j6uCVKlgPSmNmUSkVOiF3+PEO/HpA3/t/oM9pPOePHxa
o9YCiJNKkKLtNtk+HuFkQJ5Gq/Gd1rs9CNO3XReW12BziLjZUqnq5qeXjlyI5BR5
DcOXuXfzvYZcitaI0aEpp//fF2eMLhMEYBRVMI8/KNHavmS+yuergWMGjHMCyB2Q
TpFgp/fWqvSz8Zini6tXq/cmgFVpxuqGc67U9Qi5sAiNkSXwNNOJzH8t0pCXWVfL
thZ/8YYqb6GFO9v5NKGq
=E+Pz
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


Processing of clasp_3.1.4-2_amd64.changes

2016-05-01 Thread Debian FTP Masters
clasp_3.1.4-2_amd64.changes uploaded successfully to localhost
along with the files:
  clasp_3.1.4-2.dsc
  clasp_3.1.4-2.debian.tar.xz
  clasp-dbgsym_3.1.4-2_amd64.deb
  clasp_3.1.4-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.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