Control: tags 890672 + pending
Dear maintainer,
I've prepared an NMU for x42-plugins (versioned as 20170428-1.1) and
uploaded it to DELAYED/14. Please feel free to tell me if I should
cancel it.
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
diff -Nru x42-plugins-20170428/debian/changelog x42-plugins-20170428/debian/changelog
--- x42-plugins-20170428/debian/changelog 2017-06-26 00:32:24.000000000 +0300
+++ x42-plugins-20170428/debian/changelog 2018-03-20 20:30:37.000000000 +0200
@@ -1,3 +1,11 @@
+x42-plugins (20170428-1.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Add patch from Aurelien Jarno to fix FTBFS with glibc 2.27.
+ (Closes: #890672)
+
+ -- Adrian Bunk <[email protected]> Tue, 20 Mar 2018 20:30:37 +0200
+
x42-plugins (20170428-1) unstable; urgency=medium
* New upstream version 20170428
diff -Nru x42-plugins-20170428/debian/patches/pow10f.patch x42-plugins-20170428/debian/patches/pow10f.patch
--- x42-plugins-20170428/debian/patches/pow10f.patch 1970-01-01 02:00:00.000000000 +0200
+++ x42-plugins-20170428/debian/patches/pow10f.patch 2018-03-20 20:30:34.000000000 +0200
@@ -0,0 +1,15 @@
+Description: Replace deprecated pow10f by exp10f.
+Author: Aurelien Jarno <[email protected]>
+Forwarded: no
+
+--- x42-plugins-20170428.orig/meters.lv2/gui/phasewheel.c
++++ x42-plugins-20170428/meters.lv2/gui/phasewheel.c
+@@ -812,7 +812,7 @@ static bool cb_set_gain (RobWidget* hand
+ queue_draw(ui->m2);
+ }
+ #ifdef __USE_GNU
+- const float thresh = pow10f(.05 * (MIN_CUTOFF - val));
++ const float thresh = exp10f(.05 * (MIN_CUTOFF - val));
+ #else
+ const float thresh = powf(10, .05 * (MIN_CUTOFF - val));
+ #endif
diff -Nru x42-plugins-20170428/debian/patches/series x42-plugins-20170428/debian/patches/series
--- x42-plugins-20170428/debian/patches/series 1970-01-01 02:00:00.000000000 +0200
+++ x42-plugins-20170428/debian/patches/series 2018-03-20 20:30:34.000000000 +0200
@@ -0,0 +1 @@
+pow10f.patch