diff -Nru elpa-2016.05.001/debian/changelog elpa-2016.05.001/debian/changelog --- elpa-2016.05.001/debian/changelog 2018-07-17 13:30:31.000000000 +0000 +++ elpa-2016.05.001/debian/changelog 2018-06-24 19:21:02.000000000 +0000 @@ -1,20 +1,14 @@ -elpa (2016.05.001-4.2ubuntu4) cosmic; urgency=medium +elpa (2016.05.001-6) unstable; urgency=medium - * No-change rebuild for libgfortran soname change. + * Acknowledge NMUs. - -- Matthias Klose Tue, 17 Jul 2018 13:30:31 +0000 + -- Michael Banck Sun, 24 Jun 2018 21:21:02 +0200 -elpa (2016.05.001-4.2ubuntu3) cosmic; urgency=medium +elpa (2016.05.001-5) unstable; urgency=medium - * Build with -O2 on ppc64el. + * debian/libelpa-dev.install: Install header files as well. - -- Matthias Klose Tue, 19 Jun 2018 10:26:40 +0200 - -elpa (2016.05.001-4.2build1) cosmic; urgency=medium - - * No-change rebuild for dune openmpi soname change. - - -- Matthias Klose Sun, 13 May 2018 21:46:05 +0000 + -- Michael Banck Sun, 24 Jun 2018 12:04:38 +0200 elpa (2016.05.001-4.2) unstable; urgency=medium diff -Nru elpa-2016.05.001/debian/control elpa-2016.05.001/debian/control --- elpa-2016.05.001/debian/control 2017-09-10 02:41:50.000000000 +0000 +++ elpa-2016.05.001/debian/control 2018-06-24 19:19:52.000000000 +0000 @@ -13,8 +13,8 @@ mpi-default-dev Standards-Version: 4.1.0 Homepage: http://elpa.mpcdf.mpg.de/ -Vcs-Browser: https://anonscm.debian.org/viewvc/debichem/unstable/elpa/ -Vcs-Svn: svn://anonscm.debian.org/debichem/unstable/elpa/ +Vcs-Browser: https://salsa.debian.org/debichem-team/elpa +Vcs-Git: https://salsa.debian.org/debichem-team/elpa.git Package: libelpa4 Architecture: any diff -Nru elpa-2016.05.001/debian/libelpa-dev.install elpa-2016.05.001/debian/libelpa-dev.install --- elpa-2016.05.001/debian/libelpa-dev.install 2016-02-29 13:21:16.000000000 +0000 +++ elpa-2016.05.001/debian/libelpa-dev.install 2018-06-24 19:15:44.000000000 +0000 @@ -1,4 +1,5 @@ usr/include/elpa/modules +usr/include/elpa/elpa usr/lib/*/libelpa.a usr/lib/*/libelpa.so usr/lib/*/pkgconfig/elpa-*.pc diff -Nru elpa-2016.05.001/debian/rules elpa-2016.05.001/debian/rules --- elpa-2016.05.001/debian/rules 2018-06-19 08:26:40.000000000 +0000 +++ elpa-2016.05.001/debian/rules 2018-06-24 19:19:52.000000000 +0000 @@ -23,13 +23,6 @@ export MPIEXEC=mpiexec -n 1 endif -ifneq ($(filter $(DEB_BUILD_ARCH), ppc64el),) - export DEB_CFLAGS_MAINT_APPEND=-O2 - export DEB_CXXFLAGS_MAINT_APPEND=-O2 - export DEB_FCFLAGS_MAINT_APPEND=-O2 - export DEB_FFLAGS_MAINT_APPEND=-O2 -endif - %: dh $@ @@ -39,12 +32,6 @@ ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) override_dh_auto_test: @echo "Running tests with matrix size ${ELPA_TEST_SCALE}" -ifneq (,$(filter $(DEB_HOST_ARCH), ppc64el)) - -$(MAKE) -j1 check || cat test-suite.log - grep Total.time *.log - grep -A1 ^Matrix.size *.log - -./elpa2_print_kernels -else $(MAKE) -j1 check || cat test-suite.log grep Total.time *.log grep -A1 ^Matrix.size *.log @@ -52,4 +39,3 @@ # error out in case of test suite failures if grep ^FAIL test-suite.log; then exit 1; fi endif -endif