[neon/extras/qcoro/Neon/release] debian: Remove upstream applied patches.

Sandro Knauß null at kde.org
Mon May 22 00:13:36 BST 2023


Git commit 79592bf327c69bb7a728152709e45af459fb7ee1 by Sandro Knauß.
Committed on 27/11/2022 at 14:32.
Pushed by carlosdem into branch 'Neon/release'.

Remove upstream applied patches.

M  +1    -0    debian/changelog
D  +0    -1    debian/patches/series
D  +0    -54   debian/patches/upstream_Only-enable-Werror-and-related-flags-in-debug-mode-f.patch

https://invent.kde.org/neon/extras/qcoro/commit/79592bf327c69bb7a728152709e45af459fb7ee1

diff --git a/debian/changelog b/debian/changelog
index 7bdf1e2..67942de 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ qcoro (0.7.0-1) UNRELEASED; urgency=medium
 
   [ Sandro Knauß ]
   * New upstream release (0.7.0).
+  * Remove upstream applied patches.
 
  -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org>  Sun, 27 Nov 2022 13:58:51 +0100
 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 5d00e8e..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-upstream_Only-enable-Werror-and-related-flags-in-debug-mode-f.patch
diff --git a/debian/patches/upstream_Only-enable-Werror-and-related-flags-in-debug-mode-f.patch b/debian/patches/upstream_Only-enable-Werror-and-related-flags-in-debug-mode-f.patch
deleted file mode 100644
index 7c310ad..0000000
--- a/debian/patches/upstream_Only-enable-Werror-and-related-flags-in-debug-mode-f.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From eba5ec31ba7a270df91986f9af94f688151da9e6 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= <dvratil at kde.org>
-Date: Sun, 10 Jul 2022 22:23:07 +0200
-Subject: [PATCH] Only enable -Werror (and related flags) in debug mode (fixes
- #94)
-
----
- .github/workflows/build.yml | 2 +-
- CMakeLists.txt              | 7 ++++---
- 2 files changed, 5 insertions(+), 4 deletions(-)
-
-diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
-index 6e4a1c9..7174e70 100644
---- a/.github/workflows/build.yml
-+++ b/.github/workflows/build.yml
-@@ -9,7 +9,7 @@ on:
- 
- 
- env:
--  BUILD_TYPE: RelWithDebInfo
-+  BUILD_TYPE: Debug
-   QTEST_FUNCTION_TIMEOUT: 60000
- 
- 
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 4a8d2a2..b4d46a3 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -88,10 +88,10 @@ set(CMAKE_CXX_STANDARD 20)
- set(CMAKE_AUTOMOC ON)
- 
- if (MSVC)
--    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4 /WX")
-+    set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /W4 /WX")
-     # Disable warning C5054: "operator '&': deprecated between enumerations of different types" caused by QtWidgets/qsizepolicy.h
-     # Disable warning C4127: "conditional expression is constant" caused by QtCore/qiterable.h
--    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd5054 /wd4127")
-+    set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /wd5054 /wd4127")
- 
-     if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
-         # Explicitly enable exceptions support for clang-cl (it's only enabled by CMake when targeting the Windows-MSVC platform,
-@@ -99,7 +99,8 @@ if (MSVC)
-         set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHsc")
-     endif()
- else()
--    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Werror -pedantic")
-+    # Only enable strict warnings in debug mode
-+    set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Wextra -Werror -pedantic")
- endif()
- 
- if (QCORO_ENABLE_ASAN)
--- 
-2.35.1
-



More information about the Neon-commits mailing list