forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kf5crash - make x11 patch exclusive to linux - enable win/macOS builds kf5syntaxhighlighting - fix building on non-Win by removing the cli tool from all platforms
- Loading branch information
Showing
32 changed files
with
61 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: ecm | ||
Version: 5.66.0 | ||
Version: 5.73.0 | ||
Homepage: https://github.com/KDE/extra-cmake-modules | ||
Description: Extra CMake Modules (ECM), extra modules and scripts for CMake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5archive | ||
Version: 5.64.0-1 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/karchive/html/index.html | ||
Description: File compression | ||
Build-Depends: ecm, qt5-base[core], zlib, bzip2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5completion | ||
Version: 5.64.0 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/kcompletion/html/index.html | ||
Description: Text completion helpers and widgets | ||
Build-Depends: ecm, qt5-tools, kf5config, kf5widgetsaddons |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5config | ||
Version: 5.64.0 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/kconfig/html/index.html | ||
Description: Configuration system | ||
Build-Depends: ecm, qt5-base, qt5-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5coreaddons | ||
Version: 5.64.0 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/kcoreaddons/html/index.html | ||
Description: Addons to QtCore | ||
Build-Depends: ecm, qt5-base, qt5-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Source: kf5crash | ||
Version: 5.64.0 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/kcrash/html/index.html | ||
Description: KCrash provides support for intercepting and handling application crashes. | ||
Supports: linux | ||
Build-Depends: ecm, kf5coreaddons, kf5widgetsaddons | ||
Build-Depends: ecm, kf5coreaddons, kf5windowsystem, qt5-x11extras (linux) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 8a9d1c6..0d5fb3f 100644 | ||
index 8c66d85..b9d9499 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -12,7 +12,7 @@ feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKA | ||
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) | ||
@@ -19,6 +19,7 @@ include(KDECMakeSettings) | ||
|
||
set(REQUIRED_QT_VERSION 5.11.0) | ||
-find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core) | ||
+find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core X11Extras) | ||
include(KDEInstallDirs) | ||
include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) | ||
include(KDECMakeSettings) | ||
if (NOT APPLE) | ||
find_package(X11) | ||
+ find_package(X11Extras) | ||
endif() | ||
|
||
set(HAVE_X11 ${X11_FOUND}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5guiaddons | ||
Version: 5.64.0 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/kguiaddons/html/index.html | ||
Description: Addons to QtGui | ||
Build-Depends: ecm, qt5-winextras (windows), qt5-x11extras (linux), qt5-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: kf5holidays | ||
Version: 5.64.0-1 | ||
Version: 5.73.0 | ||
Description: Holiday calculation library | ||
Build-Depends: ecm, qt5-base[core], qt5-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
Source: kf5i18n | ||
Version: 5.64.0 | ||
Port-Version: 1 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/ki18n/html/index.html | ||
Description: Advanced internationalization framework | ||
Build-Depends: ecm, qt5-declarative, qt5-tools, gettext |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5itemmodels | ||
Version: 5.64.0 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/kitemmodels/html/index.html | ||
Description: Models for Qt Model/View system | ||
Build-Depends: ecm, qt5-tools, qt5-base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5itemviews | ||
Version: 5.64.0 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/kitemviews/html/index.html | ||
Description: Widget addons for Qt Model/View | ||
Build-Depends: ecm, qt5-tools, qt5-base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5plotting | ||
Version: 5.64.0-1 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/kplotting/html/index.html | ||
Description: Lightweight plotting framework | ||
Build-Depends: ecm, qt5-base[core], qt5-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5syntaxhighlighting | ||
Version: 5.64.0-1 | ||
Version: 5.73.0 | ||
Homepage: https://github.com/KDE/syntax-highlighting | ||
Description: Syntax highlighting engine for Kate syntax definitions | ||
Build-Depends: ecm, qt5-base[core], qt5-tools, qt5-xmlpatterns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5widgetsaddons | ||
Version: 5.64.0 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/kwidgetsaddons/html/index.html | ||
Description: Addons to QtWidgets | ||
Build-Depends: ecm, qt5-base, qt5-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: kf5windowsystem | ||
Version: 5.64.0 | ||
Version: 5.73.0 | ||
Homepage: https://api.kde.org/frameworks/kwindowsystem/html/ | ||
Description: Access to the windowing system | ||
Build-Depends: ecm, qt5-winextras (windows), qt5-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters