aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDawid Wróbel <me@dawidwrobel.com>2021-09-14 03:46:09 +0100
committerGitHub <noreply@github.com>2021-09-13 19:46:09 -0700
commitd36353bb2aeb6212585cb167b44740f3abed93b4 (patch)
tree89c8c5f35f2ef1f51dea8f301d23f79f6e5232c0
parent515b1fb9b58fca8cee3805876b8df7150738aa52 (diff)
downloadvcpkg-d36353bb2aeb6212585cb167b44740f3abed93b4.tar.gz
vcpkg-d36353bb2aeb6212585cb167b44740f3abed93b4.zip
[kf5service] new port (#19180)
* Add kf5service port * Add kf5service port * [kf5service] update to 5.75.0 * [kf5service] update to 5.84.0 * [kf5service] update versions * [kf5service] update to current spec Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * [kf5service] use semVer Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * [kf5service] wrap paths in quotes Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * [kf5service] update versions * [kf5package] only remove what's needed * [kf5package] phrasing, other cleanups * [kf5service] update versions * [kf5service] DISABLE_PARALLEL_CONFIGURE * [kf5service] update versions * [kf5service] add gettext tools dependency * [kf5service] update versions * [kf5service] upstream requires bison >= 3.0 * [kf5service] remove unused dependencies * [kf5service] update versions * [kf5service] remove redundant options * [kf5service] update versions * [kf5service] copy kbuildsycoca5 tool * [kf5service] update versions * [kf5service] fix Windows static builds * [kf5service] update versions * [kf5service] cleanup, iconv was fixed in kf5i18n * [kf5service] update versions * [kf5service] use generic, non-semver versioning * [kf5service] update versions Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
-rw-r--r--ports/kf5service/portfile.cmake56
-rw-r--r--ports/kf5service/vcpkg.json37
-rw-r--r--versions/baseline.json4
-rw-r--r--versions/k-/kf5service.json9
4 files changed, 106 insertions, 0 deletions
diff --git a/ports/kf5service/portfile.cmake b/ports/kf5service/portfile.cmake
new file mode 100644
index 000000000..71077a8f5
--- /dev/null
+++ b/ports/kf5service/portfile.cmake
@@ -0,0 +1,56 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO KDE/kservice
+ REF v5.84.0
+ SHA512 3867da989c8f70fccba63d91aeb0038ad6345e66ca7df6003f968628e4a54e076e9686acb501940ef8f540c39d5f1a70a949cbfdd1caa34e6c4d51daebff418d
+ HEAD_REF master
+)
+
+if(VCPKG_TARGET_IS_OSX)
+ # On Darwin platform, the bundled version of 'bison' may be too old (< 3.0).
+ 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 3 AND BISON_MINOR GREATER_EQUAL 0))
+ 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(
+ DISABLE_PARALLEL_CONFIGURE
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DBUILD_TESTING=OFF
+)
+
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/KF5Service)
+vcpkg_copy_pdbs()
+
+vcpkg_copy_tools(
+ TOOL_NAMES kbuildsycoca5
+ AUTO_CLEAN
+)
+
+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/share")
+file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright") \ No newline at end of file
diff --git a/ports/kf5service/vcpkg.json b/ports/kf5service/vcpkg.json
new file mode 100644
index 000000000..69f73cd9c
--- /dev/null
+++ b/ports/kf5service/vcpkg.json
@@ -0,0 +1,37 @@
+{
+ "name": "kf5service",
+ "version": "5.84.0",
+ "description": "Plugin framework for desktop services",
+ "homepage": "https://api.kde.org/frameworks/kservice/html/index.html",
+ "dependencies": [
+ "ecm",
+ {
+ "name": "gettext",
+ "host": true,
+ "features": [
+ "tools"
+ ]
+ },
+ "kf5config",
+ "kf5coreaddons",
+ {
+ "name": "kf5crash",
+ "platform": "!android"
+ },
+ {
+ "name": "kf5dbusaddons",
+ "platform": "!android"
+ },
+ "kf5i18n",
+ "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 c818d93d3..0fb4aa43e 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -2984,6 +2984,10 @@
"baseline": "5.84.0",
"port-version": 1
},
+ "kf5service": {
+ "baseline": "5.84.0",
+ "port-version": 0
+ },
"kf5solid": {
"baseline": "5.84.0",
"port-version": 1
diff --git a/versions/k-/kf5service.json b/versions/k-/kf5service.json
new file mode 100644
index 000000000..cbc9e49c2
--- /dev/null
+++ b/versions/k-/kf5service.json
@@ -0,0 +1,9 @@
+{
+ "versions": [
+ {
+ "git-tree": "13315cd7dbaa61af6c16276f83a15ceaab5a1235",
+ "version": "5.84.0",
+ "port-version": 0
+ }
+ ]
+}