Skip to content

Commit

Permalink
[kdreports] new port (microsoft#42625)
Browse files Browse the repository at this point in the history
  • Loading branch information
drdanz authored Dec 17, 2024
1 parent ef65883 commit be21600
Show file tree
Hide file tree
Showing 7 changed files with 109 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ports/kdreports/fix-cmake-config.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
diff --git a/src/KDReportsConfig.cmake.in b/src/KDReportsConfig.cmake.in
index fa26517..49b9054 100644
--- a/src/KDReportsConfig.cmake.in
+++ b/src/KDReportsConfig.cmake.in
@@ -9,10 +9,10 @@

include(CMakeFindDependencyMacro)

-find_dependency(Qt@Qt_VERSION_MAJOR@Core @QT_MIN_VERSION@)
-find_dependency(Qt@Qt_VERSION_MAJOR@Widgets @QT_MIN_VERSION@)
-find_dependency(Qt@Qt_VERSION_MAJOR@PrintSupport @QT_MIN_VERSION@)
-find_dependency(Qt@Qt_VERSION_MAJOR@Xml @QT_MIN_VERSION@)
+find_dependency(Qt@QT_VERSION_MAJOR@Core @QT_MIN_VERSION@)
+find_dependency(Qt@QT_VERSION_MAJOR@Widgets @QT_MIN_VERSION@)
+find_dependency(Qt@QT_VERSION_MAJOR@PrintSupport @QT_MIN_VERSION@)
+find_dependency(Qt@QT_VERSION_MAJOR@Xml @QT_MIN_VERSION@)

if (@KDChart_FOUND@)
find_dependency(KDChart)
10 changes: 10 additions & 0 deletions ports/kdreports/fix-license-text.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
diff --git a/LICENSE.txt b/LICENSE.txt
index 110b884..db69306 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -3,4 +3,4 @@ License
The KD Reports Software is © 2007 Klarälvdalens Datakonsult AB (KDAB),
and is available under the terms of the MIT license.

-See the full license text in the LICENSES folder.
+See the full license text provided below in this file.
39 changes: 39 additions & 0 deletions ports/kdreports/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDAB/KDReports
REF "kdreports-${VERSION}"
SHA512 f9b3785d71c68d032a0e1420ba3adae517994d257a02df69aaffcff4a8909b24d081c91b4cc9e1cc00311768f92e63b9288a99cfaac8422ebd1cae7321b3edbb
HEAD_REF master
PATCHES
"fix-cmake-config.patch"
"fix-license-text.patch"
)

string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" KDReports_STATIC)

vcpkg_cmake_configure(
SOURCE_PATH ${SOURCE_PATH}
OPTIONS
-DKDReports_QT6=ON
-DKDReports_STATIC=${KDReports_STATIC}
-DKDReports_TESTS=OFF
-DKDReports_EXAMPLES=OFF
-DKDReports_DOCS=OFF
-DCMAKE_DISABLE_FIND_PACKAGE_KDChart-qt6=ON
)
vcpkg_cmake_install()
vcpkg_copy_pdbs()
vcpkg_cmake_config_fixup(PACKAGE_NAME KDReports-qt6 CONFIG_PATH lib/cmake/KDReports-qt6)

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/doc")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")

vcpkg_install_copyright(
FILE_LIST
"${SOURCE_PATH}/LICENSE.txt"
"${SOURCE_PATH}/LICENSES/BSD-3-Clause.txt"
"${SOURCE_PATH}/LICENSES/MIT.txt"
)

file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
4 changes: 4 additions & 0 deletions ports/kdreports/usage
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
kdreports provides CMake targets:

find_package(KDReports-qt6 CONFIG REQUIRED)
target_link_libraries(main PRIVATE KDReports::kdreports)
24 changes: 24 additions & 0 deletions ports/kdreports/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "kdreports",
"version": "2.3.0",
"description": "KD Reports is a Qt tool that lets you easily create printable reports by providing all of the necessary features for a variety of applications.",
"homepage": "https://github.com/KDAB/KDReports",
"license": "MIT",
"dependencies": [
{
"name": "qtbase",
"default-features": false,
"features": [
"widgets"
]
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -3948,6 +3948,10 @@
"baseline": "2.1.0",
"port-version": 1
},
"kdreports": {
"baseline": "2.3.0",
"port-version": 0
},
"kdsingleapplication": {
"baseline": "1.1.0",
"port-version": 1
Expand Down
9 changes: 9 additions & 0 deletions versions/k-/kdreports.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "48775584d32659e830bfd206d7e9fd9256d3a802",
"version": "2.3.0",
"port-version": 0
}
]
}

0 comments on commit be21600

Please sign in to comment.