diff -Nru metis-5.1.0.dfsg/debian/changelog metis-5.1.0.dfsg/debian/changelog --- metis-5.1.0.dfsg/debian/changelog 2020-05-17 21:24:53.000000000 +0000 +++ metis-5.1.0.dfsg/debian/changelog 2020-05-19 20:30:01.000000000 +0000 @@ -1,3 +1,11 @@ +metis (5.1.0.dfsg-7) unstable; urgency=medium + + * [57b088f] Use another graph files for tests + * [be06482] Ignore quilt dir + * [4edacc3] Add reprotest allow to fail + + -- Anton Gladky Tue, 19 May 2020 22:30:01 +0200 + metis (5.1.0.dfsg-6) unstable; urgency=medium [ Jelmer Vernooij ] diff -Nru metis-5.1.0.dfsg/debian/.gitlab-ci.yml metis-5.1.0.dfsg/debian/.gitlab-ci.yml --- metis-5.1.0.dfsg/debian/.gitlab-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ metis-5.1.0.dfsg/debian/.gitlab-ci.yml 2020-05-19 20:24:52.000000000 +0000 @@ -0,0 +1,6 @@ +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml + +reprotest: + allow_failure: true diff -Nru metis-5.1.0.dfsg/debian/patches/01_fix_installation_paths.patch metis-5.1.0.dfsg/debian/patches/01_fix_installation_paths.patch --- metis-5.1.0.dfsg/debian/patches/01_fix_installation_paths.patch 2020-05-17 21:22:31.000000000 +0000 +++ metis-5.1.0.dfsg/debian/patches/01_fix_installation_paths.patch 2020-05-19 20:19:43.000000000 +0000 @@ -2,10 +2,10 @@ Bug-Debian: https://bugs.debian.org/708045 Author: Anton Gladky Last-Update: 2013-05-13 -Index: metis-5.1.0.dfsg/CMakeLists.txt +Index: metis/CMakeLists.txt =================================================================== ---- metis-5.1.0.dfsg.orig/CMakeLists.txt -+++ metis-5.1.0.dfsg/CMakeLists.txt +--- metis.orig/CMakeLists.txt ++++ metis/CMakeLists.txt @@ -1,8 +1,9 @@ cmake_minimum_required(VERSION 2.8) project(METIS) @@ -40,15 +40,15 @@ add_subdirectory("programs") + +ENABLE_TESTING() -+ADD_TEST(gpmetis "${CMAKE_BINARY_DIR}/programs/gpmetis" "${CMAKE_SOURCE_DIR}/graphs/4elt.graph" "20") -+ADD_TEST(graphchk "${CMAKE_BINARY_DIR}/programs/graphchk" "${CMAKE_SOURCE_DIR}/graphs/4elt.graph") ++ADD_TEST(gpmetis "${CMAKE_BINARY_DIR}/programs/gpmetis" "${CMAKE_SOURCE_DIR}/graphs/test.mgraph" "5") ++ADD_TEST(graphchk "${CMAKE_BINARY_DIR}/programs/graphchk" "${CMAKE_SOURCE_DIR}/graphs/test.mgraph") +ADD_TEST(m2gmetis "${CMAKE_BINARY_DIR}/programs/m2gmetis" "${CMAKE_SOURCE_DIR}/graphs/metis.mesh" "${CMAKE_SOURCE_DIR}/graphs/4elt.graph") +ADD_TEST(mpmetis "${CMAKE_BINARY_DIR}/programs/mpmetis" "${CMAKE_SOURCE_DIR}/graphs/metis.mesh" "10") +ADD_TEST(ndmetis "${CMAKE_BINARY_DIR}/programs/ndmetis" "${CMAKE_SOURCE_DIR}/graphs/4elt.graph" "20") -Index: metis-5.1.0.dfsg/libmetis/CMakeLists.txt +Index: metis/libmetis/CMakeLists.txt =================================================================== ---- metis-5.1.0.dfsg.orig/libmetis/CMakeLists.txt -+++ metis-5.1.0.dfsg/libmetis/CMakeLists.txt +--- metis.orig/libmetis/CMakeLists.txt ++++ metis/libmetis/CMakeLists.txt @@ -4,13 +4,17 @@ include_directories(.) file(GLOB metis_sources *.c) # Build libmetis. @@ -70,10 +70,10 @@ + RUNTIME DESTINATION "${CMAKE_INSTALL_LIBDIR}" + ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}") endif() -Index: metis-5.1.0.dfsg/programs/CMakeLists.txt +Index: metis/programs/CMakeLists.txt =================================================================== ---- metis-5.1.0.dfsg.orig/programs/CMakeLists.txt -+++ metis-5.1.0.dfsg/programs/CMakeLists.txt +--- metis.orig/programs/CMakeLists.txt ++++ metis/programs/CMakeLists.txt @@ -15,7 +15,7 @@ endforeach(prog) if(METIS_INSTALL) @@ -83,19 +83,19 @@ endif() # Try to find subversion revision. -Index: metis-5.1.0.dfsg/include/CMakeLists.txt +Index: metis/include/CMakeLists.txt =================================================================== ---- metis-5.1.0.dfsg.orig/include/CMakeLists.txt -+++ metis-5.1.0.dfsg/include/CMakeLists.txt +--- metis.orig/include/CMakeLists.txt ++++ metis/include/CMakeLists.txt @@ -1,3 +1,3 @@ if(METIS_INSTALL) - install(FILES metis.h DESTINATION include) + install(FILES metis.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) endif() -Index: metis-5.1.0.dfsg/GKlib/CMakeLists.txt +Index: metis/GKlib/CMakeLists.txt =================================================================== ---- metis-5.1.0.dfsg.orig/GKlib/CMakeLists.txt -+++ metis-5.1.0.dfsg/GKlib/CMakeLists.txt +--- metis.orig/GKlib/CMakeLists.txt ++++ metis/GKlib/CMakeLists.txt @@ -8,6 +8,10 @@ include(GKlibSystem.cmake) include_directories(".")