Control: tags 1097951 + patch Control: tags 1097951 + pending Control: tags 1113548 + patch Control: tags 1113548 + pending
Dear maintainer, I've prepared an NMU for supercollider-sc3-plugins (versioned as 3.13.0~repack-1.1) and uploaded it to DELAYED/2. Please feel free to tell me if I should cancel it. cu Adrian
diffstat for supercollider-sc3-plugins-3.13.0~repack supercollider-sc3-plugins-3.13.0~repack changelog | 10 +++++ control | 4 +- patches/0001-Update-CMake-minimum-version-402.patch | 36 +++++++++++++++++++ patches/0001-nh_hall.hpp-needs-include-cstdint.patch | 24 ++++++++++++ patches/series | 2 + 5 files changed, 74 insertions(+), 2 deletions(-) diff -Nru supercollider-sc3-plugins-3.13.0~repack/debian/changelog supercollider-sc3-plugins-3.13.0~repack/debian/changelog --- supercollider-sc3-plugins-3.13.0~repack/debian/changelog 2024-05-20 12:34:43.000000000 +0300 +++ supercollider-sc3-plugins-3.13.0~repack/debian/changelog 2025-10-10 11:35:47.000000000 +0300 @@ -1,3 +1,13 @@ +supercollider-sc3-plugins (3.13.0~repack-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix FTBFS with GCC 15. (Closes: #1097951) + * Backport upstream fix for FTBFS with CMake 4. (Closes: #1113548) + * Architecture: any instead of hardcoding an architecture list, + build dependencies will determine where the package gets built. + + -- Adrian Bunk <[email protected]> Fri, 10 Oct 2025 11:35:47 +0300 + supercollider-sc3-plugins (3.13.0~repack-1) unstable; urgency=medium * changes COMMIT=cd37e2f09d84085c0c72a5016310574d7e8d6d53 for version 3.13.0 diff -Nru supercollider-sc3-plugins-3.13.0~repack/debian/control supercollider-sc3-plugins-3.13.0~repack/debian/control --- supercollider-sc3-plugins-3.13.0~repack/debian/control 2024-05-20 12:34:43.000000000 +0300 +++ supercollider-sc3-plugins-3.13.0~repack/debian/control 2025-10-10 11:35:47.000000000 +0300 @@ -34,7 +34,7 @@ and other capabilities for the sound server. Package: sc3-plugins-server -Architecture: i386 amd64 arm64 armhf +Architecture: any Depends: supercollider-server, ${shlibs:Depends}, @@ -61,7 +61,7 @@ the community collection of UGen plugins for SuperCollider. Package: ladspalist -Architecture: i386 amd64 arm64 armhf +Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} diff -Nru supercollider-sc3-plugins-3.13.0~repack/debian/patches/0001-nh_hall.hpp-needs-include-cstdint.patch supercollider-sc3-plugins-3.13.0~repack/debian/patches/0001-nh_hall.hpp-needs-include-cstdint.patch --- supercollider-sc3-plugins-3.13.0~repack/debian/patches/0001-nh_hall.hpp-needs-include-cstdint.patch 1970-01-01 02:00:00.000000000 +0200 +++ supercollider-sc3-plugins-3.13.0~repack/debian/patches/0001-nh_hall.hpp-needs-include-cstdint.patch 2025-10-10 11:35:47.000000000 +0300 @@ -0,0 +1,24 @@ +From ab3f46fec362698303b2f02fe737566717596828 Mon Sep 17 00:00:00 2001 +From: Adrian Bunk <[email protected]> +Date: Fri, 10 Oct 2025 14:15:38 +0300 +Subject: nh_hall.hpp needs #include <cstdint> + +--- + source/NHUGens/nh_hall.hpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/source/NHUGens/nh_hall.hpp b/source/NHUGens/nh_hall.hpp +index 0f43bdf..d3e0d3f 100644 +--- a/source/NHUGens/nh_hall.hpp ++++ b/source/NHUGens/nh_hall.hpp +@@ -162,6 +162,7 @@ occasionally. + #include <memory> // std::unique_ptr + #include <array> // std::array + #include <cmath> // cosf/sinf ++#include <cstdint> // uint16_t / uint32_t + + namespace nh_ugens { + +-- +2.30.2 + diff -Nru supercollider-sc3-plugins-3.13.0~repack/debian/patches/0001-Update-CMake-minimum-version-402.patch supercollider-sc3-plugins-3.13.0~repack/debian/patches/0001-Update-CMake-minimum-version-402.patch --- supercollider-sc3-plugins-3.13.0~repack/debian/patches/0001-Update-CMake-minimum-version-402.patch 1970-01-01 02:00:00.000000000 +0200 +++ supercollider-sc3-plugins-3.13.0~repack/debian/patches/0001-Update-CMake-minimum-version-402.patch 2025-10-10 11:35:47.000000000 +0300 @@ -0,0 +1,36 @@ +From 31683fbde8f4196ad9bc3893a18f9a416eb4623a Mon Sep 17 00:00:00 2001 +From: Marcin PÄ…czkowski <[email protected]> +Date: Sat, 20 Sep 2025 10:16:49 -0700 +Subject: Update CMake minimum version (#402) + +--------- + +Co-authored-by: Dennis Scheiba <[email protected]> +--- + CMakeLists.txt | 2 +- + source/StkInst/CMakeLists.txt | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 2a17f51..7f4fb71 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1,4 +1,4 @@ +-cmake_minimum_required (VERSION 2.8) ++cmake_minimum_required (VERSION 3.12) + set(SUPERNOVA_CMAKE_MINVERSION 3.1) + project (sc3-plugins) + +diff --git a/source/StkInst/CMakeLists.txt b/source/StkInst/CMakeLists.txt +index 24ef013..8ece9fc 100644 +--- a/source/StkInst/CMakeLists.txt ++++ b/source/StkInst/CMakeLists.txt +@@ -1,4 +1,4 @@ +-cmake_minimum_required (VERSION 2.8) ++cmake_minimum_required (VERSION 3.12) + set(PROJECT "StkInst") + project (${PROJECT}) + +-- +2.30.2 + diff -Nru supercollider-sc3-plugins-3.13.0~repack/debian/patches/series supercollider-sc3-plugins-3.13.0~repack/debian/patches/series --- supercollider-sc3-plugins-3.13.0~repack/debian/patches/series 2024-05-20 12:33:30.000000000 +0300 +++ supercollider-sc3-plugins-3.13.0~repack/debian/patches/series 2025-10-10 11:35:47.000000000 +0300 @@ -1,2 +1,4 @@ 01-install-destination-ladspalist.patch 02-no-local.patch +0001-nh_hall.hpp-needs-include-cstdint.patch +0001-Update-CMake-minimum-version-402.patch

