Bug#1050329: sexpp FTBFS with nocheck profile

2023-09-30 Thread Karel van Gruiten
Hello!
Please excuse me for writing a mail about this bug as a non-Debian developer.
I had read on a problem with the GnuPG2 package (#1033155) that Daniel is on 
the LowThresholdNmu list.
If I understood it correctly, there is already a patch for this bug. So could 
such a non-maintainer upload be the solution here as well?
Again, sorry for this unasked post, but since 10/24 is approaching, I just 
wrote it as a simple Thundbird user on Debian.
Kind regards
Karel



Bug#1050329: sexpp FTBFS with nocheck profile

2023-09-24 Thread Mechtilde Stehmann

Hello Daniel,

when do you plan to fix this little problem?

I'm the maintainer of several packages depending on thunderbird, which 
depends on librnp0, which depends on libsexpp0.


I want to prevent the autoremoval of all those packages.

Kind regards

--
Mechtilde Stehmann
## Debian Developer
## PGP encryption welcome
## F0E3 7F3D C87A 4998 2899  39E7 F287 7BBA 141A AD7F


OpenPGP_signature.asc
Description: OpenPGP digital signature


Bug#1050329: sexpp FTBFS with nocheck profile

2023-08-23 Thread Helmut Grohne
Source: sexpp
Version: 0.8.7-3
Severity: serious
Justification: since trixie, nocheck FTBFS is serious
Tags: ftbfs patch

Hi,

trying to build sexpp with the nocheck build profile fails, because the
variable for disabling tests is subtly misspelled and therefore tests
are not deactivated. I'm attaching a patch for your convenience.

Helmut
diff --minimal -Nru sexpp-0.8.7/debian/changelog sexpp-0.8.7/debian/changelog
--- sexpp-0.8.7/debian/changelog2023-08-15 02:17:57.0 +0200
+++ sexpp-0.8.7/debian/changelog2023-08-23 10:34:18.0 +0200
@@ -1,3 +1,10 @@
+sexpp (0.8.7-3.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix nocheck FTBFS. (Closes: #-1)
+
+ -- Helmut Grohne   Wed, 23 Aug 2023 10:34:18 +0200
+
 sexpp (0.8.7-3) unstable; urgency=medium
 
   * drop .symbols file, since the C++ name mangling makes it too fragile
diff --minimal -Nru sexpp-0.8.7/debian/rules sexpp-0.8.7/debian/rules
--- sexpp-0.8.7/debian/rules2023-06-27 23:56:59.0 +0200
+++ sexpp-0.8.7/debian/rules2023-08-23 10:34:15.0 +0200
@@ -8,7 +8,7 @@
 CONFIGURE_OPTIONS = -DBUILD_SHARED_LIBS=on
 
 ifneq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
-CONFIGURE_OPTIONS += -DWITH_SEXPP_TESTS=off
+CONFIGURE_OPTIONS += -DWITH_SEXP_TESTS=off
 endif
 
 override_dh_auto_configure: