aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDawid Wróbel <me@dawidwrobel.com>2021-08-03 01:49:35 +0200
committerGitHub <noreply@github.com>2021-08-02 16:49:35 -0700
commit3d4ce760a175b0dd9ba139c175d579e86eacdf81 (patch)
tree0ec7f8b207c047360a71838e6f6909acde1f990a
parentfb24bdc58be7791fcf31baa8476eb6561010b06a (diff)
downloadvcpkg-3d4ce760a175b0dd9ba139c175d579e86eacdf81.tar.gz
vcpkg-3d4ce760a175b0dd9ba139c175d579e86eacdf81.zip
[kf5solid] new port (#19201)
* Add kf5solid port * Fixed kf5solid for windows * [kf5solid] update to 5.75.0 * [kf5solid] update to 5.84.0 * [kf5solid] update versions * [kf5solid] replace outdated functions Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * [kf5solid] use semver Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * [kf5solid] update versions * [kf5solid] DISABLE_PARALLEL_CONFIGURE * [kf5solid] update versions * [kf5solid] fix MAYBE_UNUSED_VARIABLES usage * [kf5solid] update versions * [kf5solid] remove extraneous options * [kf5solid] update versions Co-authored-by: Kuntal Majumder <hellozee@disroot.org> Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
-rw-r--r--ports/kf5solid/portfile.cmake59
-rw-r--r--ports/kf5solid/vcpkg.json19
-rw-r--r--versions/baseline.json4
-rw-r--r--versions/k-/kf5solid.json9
4 files changed, 91 insertions, 0 deletions
diff --git a/ports/kf5solid/portfile.cmake b/ports/kf5solid/portfile.cmake
new file mode 100644
index 000000000..36602f6aa
--- /dev/null
+++ b/ports/kf5solid/portfile.cmake
@@ -0,0 +1,59 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO KDE/solid
+ REF v5.84.0
+ SHA512 b6452e56c6029289450850c1fcfff96da0005f8dfa03f1817754910945e3ccadd8502e330a4484a5c5e9a8d5525838c8090268bb083639062dfca7176852c159
+ HEAD_REF master
+)
+
+if(VCPKG_TARGET_IS_OSX)
+ # In Darwin platform, there can be an old version of `bison`,
+ # Which can't be used for `gst-build`. It requires 2.4+
+ vcpkg_find_acquire_program(BISON)
+ execute_process(
+ COMMAND ${BISON} --version
+ OUTPUT_VARIABLE BISON_OUTPUT
+ )
+ string(REGEX MATCH "([0-9]+)\\.([0-9]+)\\.([0-9]+)" BISON_VERSION "${BISON_OUTPUT}")
+ set(BISON_MAJOR ${CMAKE_MATCH_1})
+ set(BISON_MINOR ${CMAKE_MATCH_2})
+ message(STATUS "Using bison: ${BISON_MAJOR}.${BISON_MINOR}.${CMAKE_MATCH_3}")
+ if(NOT (BISON_MAJOR GREATER_EQUAL 2 AND BISON_MINOR GREATER_EQUAL 4))
+ message(WARNING "${PORT} requires bison version greater than one provided by macOS, please use \`brew install bison\` to install a newer bison.")
+ endif()
+endif()
+
+vcpkg_find_acquire_program(BISON)
+vcpkg_find_acquire_program(FLEX)
+
+get_filename_component(FLEX_DIR "${FLEX}" DIRECTORY )
+get_filename_component(BISON_DIR "${BISON}" DIRECTORY )
+
+vcpkg_add_to_path(PREPEND "${FLEX_DIR}")
+vcpkg_add_to_path(PREPEND "${BISON_DIR}")
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ DISABLE_PARALLEL_CONFIGURE
+ OPTIONS
+ -DBUILD_TESTING=OFF
+)
+
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/KF5Solid)
+vcpkg_copy_pdbs()
+
+if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
+ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
+endif()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/etc")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+# solid-hardware and solid-power are a non-dev tools allowing to list hardware and power managament status of one's system. No need to keep them.
+file(REMOVE "${CURRENT_PACKAGES_DIR}/bin/solid-hardware5${VCPKG_HOST_EXECUTABLE_SUFFIX}" "${CURRENT_PACKAGES_DIR}/debug/bin/solid-hardware5${VCPKG_HOST_EXECUTABLE_SUFFIX}")
+file(REMOVE "${CURRENT_PACKAGES_DIR}/bin/solid-power${VCPKG_HOST_EXECUTABLE_SUFFIX}" "${CURRENT_PACKAGES_DIR}/debug/bin/solid-power${VCPKG_HOST_EXECUTABLE_SUFFIX}")
+file(RENAME "${CURRENT_PACKAGES_DIR}/debug/lib/qml" "${CURRENT_PACKAGES_DIR}/debug/qml")
+file(RENAME "${CURRENT_PACKAGES_DIR}/lib/qml" "${CURRENT_PACKAGES_DIR}/qml")
+
+file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright")
diff --git a/ports/kf5solid/vcpkg.json b/ports/kf5solid/vcpkg.json
new file mode 100644
index 000000000..e01771694
--- /dev/null
+++ b/ports/kf5solid/vcpkg.json
@@ -0,0 +1,19 @@
+{
+ "name": "kf5solid",
+ "version-semver": "5.84.0",
+ "description": "Desktop hardware abstraction",
+ "homepage": "https://api.kde.org/frameworks/solid/html/index.html",
+ "dependencies": [
+ "ecm",
+ "qt5-base",
+ "qt5-tools",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}
diff --git a/versions/baseline.json b/versions/baseline.json
index 30a4f3834..0ad42b323 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -2916,6 +2916,10 @@
"baseline": "5.84.0",
"port-version": 0
},
+ "kf5solid": {
+ "baseline": "5.84.0",
+ "port-version": 0
+ },
"kf5sonnet": {
"baseline": "5.84.0",
"port-version": 0
diff --git a/versions/k-/kf5solid.json b/versions/k-/kf5solid.json
new file mode 100644
index 000000000..a47818aa8
--- /dev/null
+++ b/versions/k-/kf5solid.json
@@ -0,0 +1,9 @@
+{
+ "versions": [
+ {
+ "git-tree": "4ddc168b71ca68e8c765edca7a018753871b84e6",
+ "version-semver": "5.84.0",
+ "port-version": 0
+ }
+ ]
+}