diff options
48 files changed, 176 insertions, 98 deletions
diff --git a/ports/ecm/portfile.cmake b/ports/ecm/portfile.cmake index 279c7c328..44552bb16 100644 --- a/ports/ecm/portfile.cmake +++ b/ports/ecm/portfile.cmake @@ -1,11 +1,9 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO KDE/extra-cmake-modules - REF v5.75.0 - SHA512 486845a91967c89dec42f9120757c7b883006713d0957e9bd21dfacb2911225fe45680590ef3dc5e0d45a9dbc81cf99e1514fb4922b1a027bcba3864da883076 + REF v5.81.0 + SHA512 562e99f3368ec5c834dbcbfb055c06da3e3302ac8e03d5d71be9f2fc682bbb02836c009c41777a7f90e4d6d3a4b13412aea29fdba985588b7d59e2dc59c9beb2 HEAD_REF master - PATCHES - "do-not-override-custom-clang-format-files.patch" ) vcpkg_configure_cmake( diff --git a/ports/ecm/vcpkg.json b/ports/ecm/vcpkg.json index 0d343e0fd..ffa6b3f9a 100644 --- a/ports/ecm/vcpkg.json +++ b/ports/ecm/vcpkg.json @@ -1,6 +1,6 @@ { "name": "ecm", - "version": "5.75.0", + "version": "5.81.0", "description": "Extra CMake Modules (ECM), extra modules and scripts for CMake", "homepage": "https://github.com/KDE/extra-cmake-modules" } diff --git a/ports/kf5archive/portfile.cmake b/ports/kf5archive/portfile.cmake index 1b97f8dde..b9b117752 100644 --- a/ports/kf5archive/portfile.cmake +++ b/ports/kf5archive/portfile.cmake @@ -1,12 +1,13 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/karchive
- REF v5.75.0
- SHA512 4a909626f776cc9ebf9acd0e16bcda9e2e0e5dd29bd52b27140baa9905758a028f542ccd40e98c5432a4d9eac2908e36e1f9329e40cc4cf835e15557c96175f1
+ REF v5.81.0
+ SHA512 f0dee63016f67e385f538ee82679fe7a5ca2c876cfb71d83a808107df8c1ec58ceceb8eb8d7422b0b0a08359dc7a00474b6a7b18be9d33c557c102d8492d1d57
HEAD_REF master
)
vcpkg_configure_cmake(
+ DISABLE_PARALLEL_CONFIGURE
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
@@ -29,4 +30,4 @@ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/etc) file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/etc)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
-file(INSTALL ${SOURCE_PATH}/LICENSES/ DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright)
\ No newline at end of file +file(INSTALL ${SOURCE_PATH}/LICENSES/ DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright)
diff --git a/ports/kf5archive/vcpkg.json b/ports/kf5archive/vcpkg.json index 744e7ecf9..e12c4c5a7 100644 --- a/ports/kf5archive/vcpkg.json +++ b/ports/kf5archive/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5archive", - "version": "5.75.0", + "version": "5.81.0", "description": "File compression", "homepage": "https://api.kde.org/frameworks/karchive/html/index.html", "dependencies": [ diff --git a/ports/kf5completion/add-qdbus-to-required-libraries.patch b/ports/kf5completion/add-qdbus-to-required-libraries.patch deleted file mode 100644 index 89add3816..000000000 --- a/ports/kf5completion/add-qdbus-to-required-libraries.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -32,7 +32,7 @@ ecm_setup_version(PROJECT VARIABLE_PREFIX KCOMPLETION - # Dependencies - set(REQUIRED_QT_VERSION 5.12.0) - --find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Widgets) -+find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Widgets DBus) - - find_package(KF5Config ${KF5_DEP_VERSION} REQUIRED) - find_package(KF5WidgetsAddons ${KF5_DEP_VERSION} REQUIRED) diff --git a/ports/kf5completion/portfile.cmake b/ports/kf5completion/portfile.cmake index fd4f0c2f2..0e78c1a51 100644 --- a/ports/kf5completion/portfile.cmake +++ b/ports/kf5completion/portfile.cmake @@ -1,12 +1,9 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/kcompletion
- REF v5.75.0
- SHA512 f4ff54b518f51b399392ee8f4be27bcc15a45be993b6a76305a16c84d6a85629017b8c4c27f19ff2c37699eeb3a455b9b6e5c7551716a55f0f7ecce2f2a2240b
+ REF v5.81.0
+ SHA512 eedb843ffc29bd35ef758d47ea7650d4485c33552916e09ca6d0e62b35f96bf29c0e903bd318e6703b8a14d045e9e36ee60ac6d505340cf7bfefaa8f1e8f7b05
HEAD_REF master
- # reported issue, just a manual workaround until the issue is fixed upstream
- PATCHES
- "add-qdbus-to-required-libraries.patch"
)
vcpkg_configure_cmake(
diff --git a/ports/kf5completion/vcpkg.json b/ports/kf5completion/vcpkg.json index 8a799ccf8..272bab352 100644 --- a/ports/kf5completion/vcpkg.json +++ b/ports/kf5completion/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5completion", - "version": "5.75.0", + "version": "5.81.0", "description": "Text completion helpers and widgets", "homepage": "https://api.kde.org/frameworks/kcompletion/html/index.html", "dependencies": [ diff --git a/ports/kf5config/portfile.cmake b/ports/kf5config/portfile.cmake index d7bfb4469..dba961502 100644 --- a/ports/kf5config/portfile.cmake +++ b/ports/kf5config/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/kconfig
- REF v5.75.0
- SHA512 66789adf41114354cd2602b4bc6215f99026c1735547ab9c1449fff18dca7cf1e5786dcc8030499b8449498d14ece33aad9d9955109331f5c8c3914d1eccfd50
+ REF v5.81.0
+ SHA512 148bdca3f3548b892abacf25f82d2bb4a3eb7a3dc559b30722e7e12a8fdcb240ff86d5e56396efd17d65d40a7b7dd9568a8d204ac48c073b132fe3e93a903c98
HEAD_REF master
)
diff --git a/ports/kf5config/vcpkg.json b/ports/kf5config/vcpkg.json index 858fda317..b9efc0934 100644 --- a/ports/kf5config/vcpkg.json +++ b/ports/kf5config/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5config", - "version": "5.75.0", + "version": "5.81.0", "description": "Configuration system", "homepage": "https://api.kde.org/frameworks/kconfig/html/index.html", "dependencies": [ diff --git a/ports/kf5coreaddons/portfile.cmake b/ports/kf5coreaddons/portfile.cmake index be69ef74d..24fcf1274 100644 --- a/ports/kf5coreaddons/portfile.cmake +++ b/ports/kf5coreaddons/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/kcoreaddons
- REF v5.75.0
- SHA512 bf17c323dbf2164a1d8e265ff97f01dd683b0f285c59755dd2f49a842666af0eaba3f6f73496d2f9690088b1cc7fe37e671218f039e8b3be0ce1ac5e2bbe13c3
+ REF v5.81.0
+ SHA512 438b2a6fbb040e9442bdfd7f29388165ed8df3bbb676d93efd86ccaa2106c9b5d3b9561eecb10fb14f54d46dac8f0c969c424ec9e351e18ee2c742de418596b9
)
vcpkg_configure_cmake(
diff --git a/ports/kf5coreaddons/vcpkg.json b/ports/kf5coreaddons/vcpkg.json index 294d42158..1ac0a149a 100644 --- a/ports/kf5coreaddons/vcpkg.json +++ b/ports/kf5coreaddons/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5coreaddons", - "version": "5.75.0", + "version": "5.81.0", "description": "Addons to QtCore", "homepage": "https://api.kde.org/frameworks/kcoreaddons/html/index.html", "dependencies": [ diff --git a/ports/kf5crash/add_x11extras.patch b/ports/kf5crash/add_x11extras.patch deleted file mode 100644 index 9a260ab52..000000000 --- a/ports/kf5crash/add_x11extras.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 8c66d85..f2d89cb 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -17,8 +17,9 @@ include(KDEInstallDirs) - include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) - include(KDECMakeSettings) - --if (NOT APPLE) -+if (UNIX AND NOT APPLE) - find_package(X11) -+ find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED COMPONENTS X11Extras) - endif() - - set(HAVE_X11 ${X11_FOUND}) diff --git a/ports/kf5crash/portfile.cmake b/ports/kf5crash/portfile.cmake index 5e12a93ea..0fa8caf06 100644 --- a/ports/kf5crash/portfile.cmake +++ b/ports/kf5crash/portfile.cmake @@ -1,11 +1,9 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO KDE/kcrash - REF v5.75.0 - SHA512 f6784d2db20bd90194a1ae8134e344a899f8c28d934783fbc104d2719e8340955278059ea5a237eeda550b4c4484e45c6d4b7c09425b0d1bb0b0025d8e214596 + REF v5.81.0 + SHA512 29ab36a46f4dbbe104c2c8d1ce0d4f2f43399c7fb3cbc34210d52e51c8b6ef6261890ebc36d9010c2aea9b90867a07732a4736176fa008c85a009ebd6582dd32 HEAD_REF master - PATCHES - add_x11extras.patch ) vcpkg_configure_cmake( diff --git a/ports/kf5crash/vcpkg.json b/ports/kf5crash/vcpkg.json index b7c09c9b7..8c58963ad 100644 --- a/ports/kf5crash/vcpkg.json +++ b/ports/kf5crash/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5crash", - "version": "5.75.0", + "version": "5.81.0", "description": "KCrash provides support for intercepting and handling application crashes.", "homepage": "https://api.kde.org/frameworks/kcrash/html/index.html", "supports": "linux", diff --git a/ports/kf5guiaddons/portfile.cmake b/ports/kf5guiaddons/portfile.cmake index 4a933a915..16cc5b0e7 100644 --- a/ports/kf5guiaddons/portfile.cmake +++ b/ports/kf5guiaddons/portfile.cmake @@ -1,12 +1,22 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/kguiaddons
- REF v5.75.0
- SHA512 d016e2e8c6fecd037cab025acd129305a3c062e0f98b537f1454dccfb13d9a6765f1974588416fcd8d23ae9c9efdb2276c3cbab15e21df62aea07059142dd12b
+ REF v5.81.0
+ SHA512 67e909f4d1fab700e087d6e5dad8ac8652ff2a42b64cf9f65be87be9ffb30324c074477af7c762689f5725d3f661e09c2f06d22eacd6870a543fb6d1e21ee9b6
HEAD_REF master
)
+vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
+ FEATURES
+ wayland WITH_WAYLAND
+)
+
+if("wayland" IN_LIST FEATURES AND NOT VCPKG_TARGET_IS_LINUX)
+ message(FATAL_ERROR "Feature wayland is only supported on Linux.")
+endif()
+
vcpkg_configure_cmake(
+ DISABLE_PARALLEL_CONFIGURE
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
@@ -14,6 +24,8 @@ vcpkg_configure_cmake( -DBUILD_MAN_DOCS=OFF
-DBUILD_QTHELP_DOCS=OFF
-DBUILD_TESTING=OFF
+ -DQtWaylandScanner_EXECUTABLE=${CURRENT_INSTALLED_DIR}/tools/qt5-wayland/bin/qtwaylandscanner
+ ${FEATURE_OPTIONS}
)
vcpkg_install_cmake()
@@ -31,4 +43,4 @@ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/etc)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/etc)
-file(INSTALL ${SOURCE_PATH}/LICENSES/ DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright)
\ No newline at end of file +file(INSTALL ${SOURCE_PATH}/LICENSES/ DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright)
diff --git a/ports/kf5guiaddons/vcpkg.json b/ports/kf5guiaddons/vcpkg.json index 55fd0fdb1..6058cd96e 100644 --- a/ports/kf5guiaddons/vcpkg.json +++ b/ports/kf5guiaddons/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5guiaddons", - "version": "5.75.0", + "version": "5.81.0", "description": "Addons to QtGui", "homepage": "https://api.kde.org/frameworks/kguiaddons/html/index.html", "dependencies": [ @@ -14,5 +14,28 @@ "name": "qt5-x11extras", "platform": "linux" } - ] + ], + "default-features": [ + "defaults" + ], + "features": { + "defaults": { + "description": "Default features", + "dependencies": [ + { + "name": "kf5guiaddons", + "features": [ + "wayland" + ], + "platform": "linux" + } + ] + }, + "wayland": { + "description": "Linux-only. Build with support for KeySequenceEditor inhibiting shortcuts on Wayland", + "dependencies": [ + "qt5-wayland" + ] + } + } } diff --git a/ports/kf5holidays/portfile.cmake b/ports/kf5holidays/portfile.cmake index 22899a21b..f13dee697 100644 --- a/ports/kf5holidays/portfile.cmake +++ b/ports/kf5holidays/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/kholidays
- REF v5.75.0
- SHA512 16b62a7e8fc664075cf787a7ae811bdb7f27b11f10619001994e1aa0c89e46bdb1c932091f6fcdcc3bad91614eeb9606a9b6aef62cec5e4a557a0c107e32d816
+ REF v5.81.0
+ SHA512 cb8c82b239ce3736ec8554fb201506bef40116c2ddcc2efcbdb718aaad8b283e4f7d6b005770d8e2a3640efdfef5a4065365e974062b53a7206c5f08723c5626
HEAD_REF master
)
diff --git a/ports/kf5holidays/vcpkg.json b/ports/kf5holidays/vcpkg.json index ee7a3fcd6..ca22f42c8 100644 --- a/ports/kf5holidays/vcpkg.json +++ b/ports/kf5holidays/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5holidays", - "version": "5.75.0", + "version": "5.81.0", "description": "Holiday calculation library", "dependencies": [ "ecm", diff --git a/ports/kf5i18n/portfile.cmake b/ports/kf5i18n/portfile.cmake index ad350dd42..df6d9131f 100644 --- a/ports/kf5i18n/portfile.cmake +++ b/ports/kf5i18n/portfile.cmake @@ -5,8 +5,8 @@ endif() vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/ki18n
- REF v5.75.0
- SHA512 9e059afb8c3bd074ecdfcb1bf4cf3c9340159dc9f7276c9bb81abb1fa73fc893229abade8c4fac344ffec555889232d3a789df72974d6f9c7c6437627872a356
+ REF v5.81.0
+ SHA512 8e14c429671a51b9b231f2a965f2368b019592a29a04a9e192da25a8a963042fe7478323508c097f73e2c328fd4742f8808fe68ea439e00e6667414d7f75be3e
PATCHES ${PATCHES}
)
diff --git a/ports/kf5i18n/vcpkg.json b/ports/kf5i18n/vcpkg.json index d49491e1e..a48e19276 100644 --- a/ports/kf5i18n/vcpkg.json +++ b/ports/kf5i18n/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5i18n", - "version": "5.75.0", + "version": "5.81.0", "description": "Advanced internationalization framework", "homepage": "https://api.kde.org/frameworks/ki18n/html/index.html", "dependencies": [ diff --git a/ports/kf5itemmodels/portfile.cmake b/ports/kf5itemmodels/portfile.cmake index 475fcd4f5..573ad7f00 100644 --- a/ports/kf5itemmodels/portfile.cmake +++ b/ports/kf5itemmodels/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/kitemmodels
- REF v5.75.0
- SHA512 24304df25d4331edccd8ef579489d6d691dcca8fb8820aedd7c89513ae79310846137aa2281b54b42377189f1ecf7bf30d771da8dce4733bc8959572b749445c
+ REF v5.81.0
+ SHA512 7942598e0ac3fd81226bb8485e721cf5424da8ef049812e9fa060c18b5dcccaa9e39a761beb81da7ccd3c7e67886752e60f96e889e6075173544968015ac45b1
)
vcpkg_configure_cmake(
diff --git a/ports/kf5itemmodels/vcpkg.json b/ports/kf5itemmodels/vcpkg.json index e511c05e4..37820a66a 100644 --- a/ports/kf5itemmodels/vcpkg.json +++ b/ports/kf5itemmodels/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5itemmodels", - "version": "5.75.0", + "version": "5.81.0", "description": "Models for Qt Model/View system", "homepage": "https://api.kde.org/frameworks/kitemmodels/html/index.html", "dependencies": [ diff --git a/ports/kf5itemviews/portfile.cmake b/ports/kf5itemviews/portfile.cmake index 72bd83ff9..425689319 100644 --- a/ports/kf5itemviews/portfile.cmake +++ b/ports/kf5itemviews/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/kitemviews
- REF v5.75.0
- SHA512 929e223540d026121fd5b5d36ed2b5e5b53d55c617d9e5f9abc75f56b9441e3495530faeb7aa38a3dcffc67c551eec70a86bcdeaf22d6e9cf4921fd3812c4c89
+ REF v5.81.0
+ SHA512 7810ce7d4fdc99fa6fda508aa49e2e91e1be73190fef383eb4d00a83262ef6b231606838f8d8798419cd421b85d45d142a34aa3bc4adfeecae9838b13b9fba5e
)
vcpkg_configure_cmake(
diff --git a/ports/kf5itemviews/vcpkg.json b/ports/kf5itemviews/vcpkg.json index 16f1ecbe0..be3e6611a 100644 --- a/ports/kf5itemviews/vcpkg.json +++ b/ports/kf5itemviews/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5itemviews", - "version": "5.75.0", + "version": "5.81.0", "description": "Widget addons for Qt Model/View", "homepage": "https://api.kde.org/frameworks/kitemviews/html/index.html", "dependencies": [ diff --git a/ports/kf5plotting/portfile.cmake b/ports/kf5plotting/portfile.cmake index 3899efd0a..ac3020239 100644 --- a/ports/kf5plotting/portfile.cmake +++ b/ports/kf5plotting/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO KDE/kplotting - REF v5.75.0 - SHA512 1eb2320006a21b0d8a3b4fb557458954a1d82427f8b91339d606e5405ef2820f408f257d833fb4af0c5f737eacff0f0371db54b5e6f63b68093e30a8249f17bf + REF v5.81.0 + SHA512 bdeb55a3949abfe9673f3b799ba157c27aade2860bfd5db4588dcedd580f4be5f452434a8c56af25bceec1391c05a9e0d522b398f38c3acf5a3bfdb8f5d7c77d HEAD_REF master ) diff --git a/ports/kf5plotting/vcpkg.json b/ports/kf5plotting/vcpkg.json index a3996ec5c..b99ba7cd2 100644 --- a/ports/kf5plotting/vcpkg.json +++ b/ports/kf5plotting/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5plotting", - "version": "5.75.0", + "version": "5.81.0", "description": "Lightweight plotting framework", "homepage": "https://api.kde.org/frameworks/kplotting/html/index.html", "dependencies": [ diff --git a/ports/kf5syntaxhighlighting/portfile.cmake b/ports/kf5syntaxhighlighting/portfile.cmake index 4b4fbc991..d7d047f41 100644 --- a/ports/kf5syntaxhighlighting/portfile.cmake +++ b/ports/kf5syntaxhighlighting/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/syntax-highlighting
- REF v5.75.0
- SHA512 bb3b722861823b8ebe407b859b425c2f600af6686c2b1107436c55931e50e746e0852df8b11c5ad895323236a2ee857bcfe8a17af563c26baa4541535d275f8c
+ REF v5.81.0
+ SHA512 4e6d59acc6548ffc536bc2936871f7d0d19f4506319ebb2c821086df63a0014c7246f45a52b66ee997f34a05aeed216c611c3b68cc1ba649f2f1dd7cf10a431e
HEAD_REF master
)
diff --git a/ports/kf5syntaxhighlighting/vcpkg.json b/ports/kf5syntaxhighlighting/vcpkg.json index 39d9126f1..6949ca5fb 100644 --- a/ports/kf5syntaxhighlighting/vcpkg.json +++ b/ports/kf5syntaxhighlighting/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5syntaxhighlighting", - "version": "5.75.0", + "version": "5.81.0", "description": "Syntax highlighting engine for Kate syntax definitions", "homepage": "https://github.com/KDE/syntax-highlighting", "dependencies": [ diff --git a/ports/kf5widgetsaddons/portfile.cmake b/ports/kf5widgetsaddons/portfile.cmake index 7c2a88818..322ded1fb 100644 --- a/ports/kf5widgetsaddons/portfile.cmake +++ b/ports/kf5widgetsaddons/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/kwidgetsaddons
- REF v5.75.0
- SHA512 8854ddc56d8a30081d69d952d035ef303b3a30760fdee3ba8889029b373cb793807f984ce3fc06bd1d377fa3d5a768d3dbf99cb44a3b29a7589b2c4f77767360
+ REF v5.81.0
+ SHA512 39adcc3c0a09c506df735da286146c42cb5346b35842c72449c4c436e201cdfb33b613097a2f8ae8ddce0b1ac02be1f51c622eeb9e02844c3c013a44aedfc2b1
HEAD_REF master
)
diff --git a/ports/kf5widgetsaddons/vcpkg.json b/ports/kf5widgetsaddons/vcpkg.json index 00be5c8c4..ee0c9e6d1 100644 --- a/ports/kf5widgetsaddons/vcpkg.json +++ b/ports/kf5widgetsaddons/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5widgetsaddons", - "version": "5.75.0", + "version": "5.81.0", "description": "Addons to QtWidgets", "homepage": "https://api.kde.org/frameworks/kwidgetsaddons/html/index.html", "dependencies": [ diff --git a/ports/kf5windowsystem/portfile.cmake b/ports/kf5windowsystem/portfile.cmake index 9cc1a0e45..4d43e63df 100644 --- a/ports/kf5windowsystem/portfile.cmake +++ b/ports/kf5windowsystem/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/kwindowsystem
- REF v5.75.0
- SHA512 5c88ed9749d9cc5bb4cb1a8ec5f2da7359cb8c8f7c04c4fd63a59d88ddfee1533ed1ce686f12182d14fb7a7e1bd92f82cc416fff60bcdef73510f596217301cb
+ REF v5.81.0
+ SHA512 d003e512291a80e2319bf7371105618466778092336571ffa3f6658a91d742641e6e12b1d789e15579c325943819b7036253639e64f004b60a928a38e9ee9e8f
)
if (VCPKG_TARGET_IS_LINUX)
@@ -10,6 +10,7 @@ if (VCPKG_TARGET_IS_LINUX) endif()
vcpkg_configure_cmake(
+ DISABLE_PARALLEL_CONFIGURE
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
@@ -36,4 +37,4 @@ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/etc) file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/etc)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
-file(INSTALL ${SOURCE_PATH}/LICENSES/ DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright)
\ No newline at end of file +file(INSTALL ${SOURCE_PATH}/LICENSES/ DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright)
diff --git a/ports/kf5windowsystem/vcpkg.json b/ports/kf5windowsystem/vcpkg.json index b54979877..691051234 100644 --- a/ports/kf5windowsystem/vcpkg.json +++ b/ports/kf5windowsystem/vcpkg.json @@ -1,6 +1,6 @@ { "name": "kf5windowsystem", - "version": "5.75.0", + "version": "5.81.0", "description": "Access to the windowing system", "homepage": "https://api.kde.org/frameworks/kwindowsystem/html/", "dependencies": [ diff --git a/versions/baseline.json b/versions/baseline.json index 0db7c410d..6d958d15c 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -1793,7 +1793,7 @@ "port-version": 0 }, "ecm": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "ecos": { @@ -2813,59 +2813,59 @@ "port-version": 0 }, "kf5archive": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5completion": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5config": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5coreaddons": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5crash": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5guiaddons": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5holidays": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5i18n": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5itemmodels": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5itemviews": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5plotting": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5syntaxhighlighting": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5widgetsaddons": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kf5windowsystem": { - "baseline": "5.75.0", + "baseline": "5.81.0", "port-version": 0 }, "kfr": { diff --git a/versions/e-/ecm.json b/versions/e-/ecm.json index c8e3dfa11..d04882396 100644 --- a/versions/e-/ecm.json +++ b/versions/e-/ecm.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "4c5bb18c760aa4a57b5ca0d6bfd948be3856534e", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "ae79be3c1aec28736e6df3b1c9e6973ac6d3c33b", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5archive.json b/versions/k-/kf5archive.json index 2ddeca616..d737f3509 100644 --- a/versions/k-/kf5archive.json +++ b/versions/k-/kf5archive.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "9944c9fc2ab20f7c28998fdf7c980cd239ff9b70", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "4c427a520895326ea450337eb531cb8ed5c7be30", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5completion.json b/versions/k-/kf5completion.json index fb7d8660c..0aab32fc1 100644 --- a/versions/k-/kf5completion.json +++ b/versions/k-/kf5completion.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "8e4e693e3597dcada6e28243e1d536a44063fc18", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "2fcd1bf45f43cfac3f85834beea42a82d9f5d5a0", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5config.json b/versions/k-/kf5config.json index 53942f0d0..e52aecd94 100644 --- a/versions/k-/kf5config.json +++ b/versions/k-/kf5config.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "79afbe3512b5e5d144212f69294ed2859f2df3e9", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "1b18ac2e564ec1c1f918ff77cad0b15bead4699f", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5coreaddons.json b/versions/k-/kf5coreaddons.json index 1c8baec2b..ff7c42ad0 100644 --- a/versions/k-/kf5coreaddons.json +++ b/versions/k-/kf5coreaddons.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "47f0a0b5ec4ebb494396fbc3118ef864e1c66689", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "a36efec82fc03b9f181a9ebf3bf0724ad44b112f", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5crash.json b/versions/k-/kf5crash.json index 43bc4c166..c34b53c61 100644 --- a/versions/k-/kf5crash.json +++ b/versions/k-/kf5crash.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "cc944375b9c277d67a8c7174c24e5ed4221e413a", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "d8c9a56257206c1946c7ba30f87bbc450598a1ba", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5guiaddons.json b/versions/k-/kf5guiaddons.json index 66a4f17e5..b95492a39 100644 --- a/versions/k-/kf5guiaddons.json +++ b/versions/k-/kf5guiaddons.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "886d683d3d25ff9de50bc646af37d2adcd254ac2", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "7b32de9f028a53b45e25e0d6ac6517c6e93ec8ea", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5holidays.json b/versions/k-/kf5holidays.json index ed4f322e1..2e6a84698 100644 --- a/versions/k-/kf5holidays.json +++ b/versions/k-/kf5holidays.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "748a3353b679c76468e85e01c3b5fa4e21351566", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "18dd0b493b905446080c4060b086e2e8ad653613", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5i18n.json b/versions/k-/kf5i18n.json index 8bdeb06f5..303a14162 100644 --- a/versions/k-/kf5i18n.json +++ b/versions/k-/kf5i18n.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "85675e319c19cb4303a56719af9ad49feb733983", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "de9aea1ae1eb983815781d4ab7a8684db7e04b6b", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5itemmodels.json b/versions/k-/kf5itemmodels.json index 87d93f663..8e857f8dd 100644 --- a/versions/k-/kf5itemmodels.json +++ b/versions/k-/kf5itemmodels.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "8253bf274c45235c1fa763255fbc9c765de8d245", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "86e47be26b32b4e22157e2e12c78b490d13d9f86", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5itemviews.json b/versions/k-/kf5itemviews.json index 271c16b74..1a67807a6 100644 --- a/versions/k-/kf5itemviews.json +++ b/versions/k-/kf5itemviews.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "c299c11853b1ca953bbc5801a596f4db51bc5782", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "efce2fde551eaca8c41d6b55713a2c14e1d8ba1b", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5plotting.json b/versions/k-/kf5plotting.json index b9f188591..1a0bfd910 100644 --- a/versions/k-/kf5plotting.json +++ b/versions/k-/kf5plotting.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "d0991bf27a381493f05e2c2c724a4e523cf893be", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "d0c6197f035b8ce06cd634593430c342d2baa5a3", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5syntaxhighlighting.json b/versions/k-/kf5syntaxhighlighting.json index 0e91a08d8..8a5df50de 100644 --- a/versions/k-/kf5syntaxhighlighting.json +++ b/versions/k-/kf5syntaxhighlighting.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "6033ee77e0fda605d514ec7c82830980b6a23a02", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "b58bac6d264e3a74e6347874a5c550b4e3edbbce", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5widgetsaddons.json b/versions/k-/kf5widgetsaddons.json index 6088ed0c4..695978698 100644 --- a/versions/k-/kf5widgetsaddons.json +++ b/versions/k-/kf5widgetsaddons.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "3f982e6ab4ef615b0978a477c0943d3b490e6823", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "00f70a9674ddeb01e86abf6a902b3d545e95f508", "version": "5.75.0", "port-version": 0 diff --git a/versions/k-/kf5windowsystem.json b/versions/k-/kf5windowsystem.json index e23eb631c..7aedb51fe 100644 --- a/versions/k-/kf5windowsystem.json +++ b/versions/k-/kf5windowsystem.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "026fe71b84fa293ef1d198ca77c2368ccac40760", + "version": "5.81.0", + "port-version": 0 + }, + { "git-tree": "dcebc7ba5d9140cd073ba9fb4c448c404827b824", "version": "5.75.0", "port-version": 0 |
