Your message dated Thu, 29 Sep 2022 22:05:14 +0000
with message-id <e1oe1ec-0003vb...@fasolo.debian.org>
and subject line Bug#1004022: fixed in clasp 3.3.5-4.1
has caused the Debian Bug report #1004022,
regarding clasp: Clasp FTBFS with glibc 2.34
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.)


-- 
1004022: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1004022
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: clasp
Version: 3.3.5-4
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu jammy ubuntu-patch
X-Debbugs-Cc: sl...@ubuntu.com

Dear Maintainer,

Once glibc will be upgraded to 2.34+ clasp will FTBFS.

In Ubuntu, the attached patch was applied to fix this issue:

  * d/p/use-system-catch-for-glibc-2.34-compat.patch: Fix FTBFS with glibc-2.34
    - Add catch v1 build-dependency
    - Make use of system provided catch v1 (CTest) library


Thanks for considering the patch.

Cheers,
  Lukas


-- System Information:
Debian Release: 11.0
  APT prefers impish-updates
  APT policy: (500, 'impish-updates'), (500, 'impish-security'), (500, 
'impish'), (100, 'impish-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.13.0-23-generic (SMP w/4 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, TAINT_OOT_MODULE
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), 
LANGUAGE=de_DE:en_GB:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru clasp-3.3.5/debian/control clasp-3.3.5/debian/control
--- clasp-3.3.5/debian/control  2020-12-26 22:25:24.000000000 +0100
+++ clasp-3.3.5/debian/control  2022-01-19 14:36:04.000000000 +0100
@@ -6,6 +6,7 @@
 Build-Depends: debhelper-compat (= 13),
  dpkg-dev (>= 1.16.1~),
  g++-10 (>= 10.2.1),
+ catch,
  cmake (>= 3.1.0)
 Rules-Requires-Root: no
 Standards-Version: 4.5.1
diff -Nru clasp-3.3.5/debian/patches/series clasp-3.3.5/debian/patches/series
--- clasp-3.3.5/debian/patches/series   2020-12-26 21:49:38.000000000 +0100
+++ clasp-3.3.5/debian/patches/series   2022-01-19 14:24:03.000000000 +0100
@@ -1,2 +1,3 @@
 clasp-manpage.patch
 link-libatomic-check-gcc.patch
+use-system-catch-for-glibc-2.34-compat.patch
diff -Nru 
clasp-3.3.5/debian/patches/use-system-catch-for-glibc-2.34-compat.patch 
clasp-3.3.5/debian/patches/use-system-catch-for-glibc-2.34-compat.patch
--- clasp-3.3.5/debian/patches/use-system-catch-for-glibc-2.34-compat.patch     
1970-01-01 01:00:00.000000000 +0100
+++ clasp-3.3.5/debian/patches/use-system-catch-for-glibc-2.34-compat.patch     
2022-01-19 14:35:31.000000000 +0100
@@ -0,0 +1,296 @@
+Description: Fix 'catch' (CTest) compatibility with glibc-2.34
+ The clasp package contains an embedded copy of the 'catch' v1 (CTest)
+ library. That copy is outdated and incompatible with glibc-2.34.
+ This patch updates the test sources to use the system provided versions of
+ 'catch' instead, to fix this issue.
+ C.f.: https://github.com/catchorg/Catch2/issues/2178
+Author: Lukas Märdian <sl...@ubuntu.com>
+Origin: vendor, Ubuntu
+Forwarded: no
+Bug: https://github.com/potassco/clasp/issues/73
+Last-Update: 2022-01-18
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- clasp-3.3.5.orig/libpotassco/tests/main.cpp
++++ clasp-3.3.5/libpotassco/tests/main.cpp
+@@ -16,4 +16,4 @@ int enableDebugHeap() {
+ static int eh = enableDebugHeap();
+ #endif
+ #define CATCH_CONFIG_MAIN  // This tells Catch to provide a main() - only do 
this in one cpp file
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+--- clasp-3.3.5.orig/libpotassco/tests/test_application.cpp
++++ clasp-3.3.5/libpotassco/tests/test_application.cpp
+@@ -18,7 +18,7 @@
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
DEALINGS
+ // IN THE SOFTWARE.
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ #include <potassco/application.h>
+ #include <potassco/program_opts/typed_value.h>
+ #include <signal.h>
+--- clasp-3.3.5.orig/libpotassco/tests/test_aspif.cpp
++++ clasp-3.3.5/libpotassco/tests/test_aspif.cpp
+@@ -24,7 +24,7 @@
+ #ifdef _MSC_VER
+ #pragma warning (disable : 4996)
+ #endif
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ #include "test_common.h"
+ #include <potassco/aspif.h>
+ #include <potassco/rule_utils.h>
+--- clasp-3.3.5.orig/libpotassco/tests/test_options.cpp
++++ clasp-3.3.5/libpotassco/tests/test_options.cpp
+@@ -18,7 +18,7 @@
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
DEALINGS
+ // IN THE SOFTWARE.
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ #include <potassco/program_opts/program_options.h>
+ #include <potassco/program_opts/typed_value.h>
+ #include <potassco/program_opts/errors.h>
+--- clasp-3.3.5.orig/libpotassco/tests/test_smodels.cpp
++++ clasp-3.3.5/libpotassco/tests/test_smodels.cpp
+@@ -22,7 +22,7 @@
+ // IN THE SOFTWARE.
+ //
+ 
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ #include "test_common.h"
+ #include <potassco/convert.h>
+ #include <sstream>
+--- clasp-3.3.5.orig/libpotassco/tests/test_string_convert.cpp
++++ clasp-3.3.5/libpotassco/tests/test_string_convert.cpp
+@@ -18,7 +18,7 @@
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
DEALINGS
+ // IN THE SOFTWARE.
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ #include <potassco/string_convert.h>
+ #include <string>
+ #include <vector>
+--- clasp-3.3.5.orig/libpotassco/tests/test_text.cpp
++++ clasp-3.3.5/libpotassco/tests/test_text.cpp
+@@ -22,7 +22,7 @@
+ // IN THE SOFTWARE.
+ //
+ 
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ #include "test_common.h"
+ #include <potassco/aspif_text.h>
+ #include <potassco/aspif.h>
+--- clasp-3.3.5.orig/libpotassco/tests/test_value.cpp
++++ clasp-3.3.5/libpotassco/tests/test_value.cpp
+@@ -18,7 +18,7 @@
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
DEALINGS
+ // IN THE SOFTWARE.
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ #include <potassco/program_opts/value_store.h>
+ #include <potassco/program_opts/mapped_value.h>
+ #include <potassco/program_opts/typed_value.h>
+--- clasp-3.3.5.orig/tests/clause_creator_test.cpp
++++ clasp-3.3.5/tests/clause_creator_test.cpp
+@@ -24,7 +24,7 @@
+ #include <clasp/clause.h>
+ #include <clasp/solver.h>
+ #include <algorithm>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Clasp { namespace Test {
+ using namespace Clasp::mt;
+ 
+--- clasp-3.3.5.orig/tests/clause_test.cpp
++++ clasp-3.3.5/tests/clause_test.cpp
+@@ -24,7 +24,7 @@
+ #include <clasp/clause.h>
+ #include <clasp/solver.h>
+ #include <algorithm>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ #ifdef _MSC_VER
+ #pragma warning (disable : 4267) //  conversion from 'size_t' to unsigned int
+ #pragma once
+--- clasp-3.3.5.orig/tests/cli_test.cpp
++++ clasp-3.3.5/tests/cli_test.cpp
+@@ -26,7 +26,7 @@
+ #include <clasp/unfounded_check.h>
+ #include <clasp/logic_program.h>
+ #include <fstream>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Clasp {
+ static bool operator==(const ScheduleStrategy& lhs, const ScheduleStrategy& 
rhs) {
+       return lhs.type == rhs.type && lhs.base == rhs.base && lhs.len == 
rhs.len && lhs.grow == rhs.grow;
+--- clasp-3.3.5.orig/tests/decision_heuristic_test.cpp
++++ clasp-3.3.5/tests/decision_heuristic_test.cpp
+@@ -27,7 +27,7 @@
+ #include <clasp/clause.h>
+ #include <clasp/solver.h>
+ #include "lpcompare.h"
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Clasp { namespace Test {
+ using namespace Clasp::Asp;
+ 
/////////////////////////////////////////////////////////////////////////////////////////
+--- clasp-3.3.5.orig/tests/dependency_graph_test.cpp
++++ clasp-3.3.5/tests/dependency_graph_test.cpp
+@@ -24,7 +24,7 @@
+ #include <clasp/dependency_graph.h>
+ #include <clasp/solver.h>
+ #include "lpcompare.h"
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Clasp { namespace Test {
+ using namespace Clasp::Asp;
+ 
+--- clasp-3.3.5.orig/tests/dlp_builder_test.cpp
++++ clasp-3.3.5/tests/dlp_builder_test.cpp
+@@ -26,7 +26,7 @@
+ #include <clasp/unfounded_check.h>
+ #include "lpcompare.h"
+ #include <sstream>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ using namespace std;
+ namespace Clasp { namespace Test {
+ using namespace Clasp::Asp;
+--- clasp-3.3.5.orig/tests/enumerator_test.cpp
++++ clasp-3.3.5/tests/enumerator_test.cpp
+@@ -28,7 +28,7 @@
+ #include <clasp/model_enumerators.h>
+ #include "lpcompare.h"
+ #include <sstream>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ using namespace std;
+ namespace Clasp { namespace Test {
+ using namespace Clasp::Asp;
+--- clasp-3.3.5.orig/tests/facade_test.cpp
++++ clasp-3.3.5/tests/facade_test.cpp
+@@ -35,7 +35,7 @@
+ #endif
+ #include "lpcompare.h"
+ #include <signal.h>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Clasp { namespace Test {
+ using namespace Clasp::mt;
+ 
+--- clasp-3.3.5.orig/tests/literal_test.cpp
++++ clasp-3.3.5/tests/literal_test.cpp
+@@ -22,7 +22,7 @@
+ // IN THE SOFTWARE.
+ //
+ #include <clasp/solver_types.h>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Clasp { namespace Test {
+ 
+ static bool testBin(const Literal& p) {
+--- clasp-3.3.5.orig/tests/minimize_test.cpp
++++ clasp-3.3.5/tests/minimize_test.cpp
+@@ -28,7 +28,7 @@
+ #include <clasp/solver.h>
+ #include <clasp/solve_algorithms.h>
+ #include <algorithm>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Clasp { namespace Test {
+ namespace {
+ struct BranchAndBoundTest {
+--- clasp-3.3.5.orig/tests/parser_test.cpp
++++ clasp-3.3.5/tests/parser_test.cpp
+@@ -29,7 +29,7 @@
+ #include <potassco/smodels.h>
+ #include <potassco/string_convert.h>
+ #include "lpcompare.h"
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Clasp { namespace Test {
+ 
+ template <class Api>
+--- clasp-3.3.5.orig/tests/program_builder_test.cpp
++++ clasp-3.3.5/tests/program_builder_test.cpp
+@@ -27,7 +27,7 @@
+ #include <clasp/unfounded_check.h>
+ #include <clasp/minimize_constraint.h>
+ #include "lpcompare.h"
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ using namespace std;
+ namespace Clasp { namespace Test {
+ using namespace Clasp::Asp;
+--- clasp-3.3.5.orig/tests/rule_test.cpp
++++ clasp-3.3.5/tests/rule_test.cpp
+@@ -27,7 +27,7 @@
+ #include <clasp/solver.h>
+ #include "lpcompare.h"
+ #include <utility>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Potassco {
+ static bool operator==(const LitSpan& lhs, const LitSpan& rhs) {
+       return lhs.size == rhs.size && std::equal(begin(lhs), end(lhs), 
begin(rhs));
+--- clasp-3.3.5.orig/tests/satelite_test.cpp
++++ clasp-3.3.5/tests/satelite_test.cpp
+@@ -27,7 +27,7 @@
+ #include <clasp/clause.h>
+ #include <clasp/parser.h>
+ #include <algorithm>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ #ifdef _MSC_VER
+ #pragma warning (disable : 4267) //  conversion from 'size_t' to unsigned int
+ #pragma once
+--- clasp-3.3.5.orig/tests/solver_test.cpp
++++ clasp-3.3.5/tests/solver_test.cpp
+@@ -25,7 +25,7 @@
+ #include <clasp/clause.h>
+ #include <clasp/statistics.h>
+ #include <clasp/weight_constraint.h>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Clasp { namespace Test {
+ using namespace Clasp::mt;
+ struct TestingConstraint : public Constraint {
+--- clasp-3.3.5.orig/tests/test_main.cpp
++++ clasp-3.3.5/tests/test_main.cpp
+@@ -22,7 +22,7 @@
+ // IN THE SOFTWARE.
+ //
+ #define CATCH_CONFIG_RUNNER
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ #if defined (_MSC_VER) && _MSC_VER >= 1200
+ #include <crtdbg.h>
+ #endif
+--- clasp-3.3.5.orig/tests/unfounded_check_test.cpp
++++ clasp-3.3.5/tests/unfounded_check_test.cpp
+@@ -26,7 +26,7 @@
+ #include <clasp/clause.h>
+ #include "lpcompare.h"
+ #include <memory>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ namespace Clasp { namespace Test {
+ using namespace Clasp::Asp;
+ 
+--- clasp-3.3.5.orig/tests/weight_constraint_test.cpp
++++ clasp-3.3.5/tests/weight_constraint_test.cpp
+@@ -24,7 +24,7 @@
+ #include <clasp/weight_constraint.h>
+ #include <clasp/solver.h>
+ #include <algorithm>
+-#include "catch.hpp"
++#include <catch/catch.hpp>
+ using namespace std;
+ 
+ namespace Clasp { namespace Test {

--- End Message ---
--- Begin Message ---
Source: clasp
Source-Version: 3.3.5-4.1
Done: Sebastian Ramacher <sramac...@debian.org>

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

Debian distribution maintenance software
pp.
Sebastian Ramacher <sramac...@debian.org> (supplier of updated clasp 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: Wed, 28 Sep 2022 23:21:38 +0200
Source: clasp
Architecture: source
Version: 3.3.5-4.1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 
<debian-science-maintain...@lists.alioth.debian.org>
Changed-By: Sebastian Ramacher <sramac...@debian.org>
Closes: 1004022
Changes:
 clasp (3.3.5-4.1) unstable; urgency=medium
 .
   * Non-maintainer upload
 .
   [ Lukas Märdian ]
   * Use system-provided catch (Closes: #1004022)
Checksums-Sha1:
 45735505a25a69b07b3a33c4c24666faaa9b4ae5 2035 clasp_3.3.5-4.1.dsc
 3c44aee8369201dc3bf12b4ffe25670b82d5e8ba 10332 clasp_3.3.5-4.1.debian.tar.xz
Checksums-Sha256:
 a5ce778b143bcdf9f3c19099bd9b8f7ec91d7d250dc0e0855abb15112ab11e36 2035 
clasp_3.3.5-4.1.dsc
 4367792626f59a79622586248e67adc8331ebdff25b3f8e375cd6788161bdbc2 10332 
clasp_3.3.5-4.1.debian.tar.xz
Files:
 fe0687cdb7e78803834145a29d61ede6 2035 interpreters optional clasp_3.3.5-4.1.dsc
 9c25231bd64d1f2bbf2b2ce3c79c0b9c 10332 interpreters optional 
clasp_3.3.5-4.1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAmM0u90ACgkQafL8UW6n
GZOmSw//ad05yCdoUttbf3uMlI3S39dRsjAuFO0Ax+q11KfueWvAa71nuPQssXU3
H6xqBRUkV8b7hBPl7bV8+vzeUGVJe7JPsfSiM+Y08YLwNXZ2wIKXfnfied+HPbmY
UrwjSLa5zJbgqmWWdMNIHDAPr/Ef1ZN6ZKZFvDLn0reYejpin/N7L32w0EmdjdI8
TvCzSkRh6ndhgBqIkFOrxp1KP7aY0itBMe1gbsK4YlnURueW0J4NehpiCoi4UB6d
wk7In5P1csxeL7FUaMGsaDm6YGvA7AgurUM+u+LhYdkJzwQ4QbSpvSeYEUlLhy+z
36xojXZ6oP3C4toI33Xzu8UutumS/Cb5Ug4xxPH5IJSo2NnjuLg4hSF3Q9f89bOF
ykXJOwPhBrUD88P4TfQSFx2RKRJ0KjUzjlw4B+QilxkmiZSTarFhtuOZ3VM65iIT
Xah/tZ0EifbcHlBNlvfE05ht6md2afQBXXswBQPa+tXnt5rGbbwLgPH7iKMaS/Zd
bynDoOHgqnMVqJ0PoAfDb8pbfL5CVe7jtNkgM5+SMgBwRo7VsZmuSZ/IGGVEMi/J
tfX+z0KIRwYkkL533xTYY0hpvf9uPoVrcvyQRZrMuaADN6sN02gTBqCSxtwU27rI
ye6aI+il+UW91Tw8lHS0FkT1npKoHKbGodyjwkrO2/LBDgZDbZk=
=N3Ij
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to