Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
64 commits
Select commit Hold shift + click to select a range
9b1491f
[dbus-cxx] add new port
luadebug Oct 2, 2025
59e757a
vdb
luadebug Oct 2, 2025
79c8780
try to get only qt5 core
luadebug Oct 2, 2025
10dbe31
vdb
luadebug Oct 2, 2025
328c1d6
Update ports/dbus-cxx/portfile.cmake
luadebug Oct 2, 2025
1ac63de
Update ports/dbus-cxx/portfile.cmake
luadebug Oct 2, 2025
1c39d17
vdb
luadebug Oct 2, 2025
d4b0d99
re
luadebug Oct 2, 2025
643a471
vdb
luadebug Oct 2, 2025
b909b83
fix
luadebug Oct 2, 2025
4820c3f
vdb
luadebug Oct 2, 2025
9b5fde7
test
luadebug Oct 2, 2025
99acc6f
vdb
luadebug Oct 2, 2025
e86d0e8
fixup
luadebug Oct 2, 2025
4996c74
vdb
luadebug Oct 2, 2025
c3f3277
Update portfile.cmake
luadebug Oct 2, 2025
3365b5b
vdb
luadebug Oct 2, 2025
00287dc
try to use cmakeconfig instead of pc
luadebug Oct 2, 2025
3b48cc4
vdb
luadebug Oct 2, 2025
d92505b
try to use cmakeconfigs only
luadebug Oct 3, 2025
81c77cc
vdb
luadebug Oct 3, 2025
5eba7aa
checkpoint
luadebug Oct 3, 2025
f8802a7
vdb
luadebug Oct 3, 2025
5fd03a3
Update create-cmakeconfig.patch
luadebug Oct 3, 2025
485dd71
vdb
luadebug Oct 3, 2025
8ebfc64
retry
luadebug Oct 3, 2025
82241f8
vdb
luadebug Oct 3, 2025
dd76bef
fixup
luadebug Oct 3, 2025
41bdbf0
vdb
luadebug Oct 3, 2025
5ab6b01
Update CMakeLists.txt
luadebug Oct 3, 2025
a89301e
fixup
luadebug Oct 3, 2025
1dd5be7
vdb
luadebug Oct 3, 2025
714841b
improve vcpkg-ci-dbus-cxx
luadebug Oct 3, 2025
973bd70
vdb
luadebug Oct 3, 2025
18eccc2
Update main.cpp
luadebug Oct 3, 2025
3d89bd1
cl
luadebug Oct 3, 2025
8ea6a34
try to get rid of gcov and finally acquire good enough cmakeconfig
luadebug Oct 3, 2025
2d5fd42
vdb
luadebug Oct 3, 2025
959c5ee
check using add_lib alias
luadebug Oct 3, 2025
9069cd6
vdb
luadebug Oct 3, 2025
acfcd42
test
luadebug Oct 3, 2025
4d4d09a
vdb
luadebug Oct 3, 2025
bb0fd02
fixup
luadebug Oct 3, 2025
a0c6df8
vdb
luadebug Oct 3, 2025
aae0b1d
retry
luadebug Oct 3, 2025
bb537c8
vdb
luadebug Oct 3, 2025
8480251
fixup
luadebug Oct 3, 2025
a8620c5
vdb
luadebug Oct 3, 2025
92fa113
fixup
luadebug Oct 3, 2025
b7e6457
vdb
luadebug Oct 3, 2025
9661198
fixup
luadebug Oct 3, 2025
74086ef
vdb
luadebug Oct 3, 2025
426d409
fixup
luadebug Oct 3, 2025
e1bf1f0
vdb
luadebug Oct 3, 2025
9dd3832
qt6 check
luadebug Oct 4, 2025
970ad64
vdb
luadebug Oct 4, 2025
7d5cd2a
Update vcpkg.json
luadebug Oct 4, 2025
48d925e
vdb
luadebug Oct 4, 2025
f4149d0
fixup
luadebug Oct 4, 2025
b141975
vdb
luadebug Oct 4, 2025
9e46379
fixup
luadebug Oct 4, 2025
8f5f78f
vdb test QT6 for https://github.com/dbus-cxx/dbus-cxx/pull/191
luadebug Oct 4, 2025
17d9e39
simplify Qt6 usage
luadebug Oct 4, 2025
f18ab28
vdb
luadebug Oct 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions ports/dbus-cxx/create-cmakeconfig.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
diff --git a/cmake/dbus-cxxConfig.cmake.in b/cmake/dbus-cxxConfig.cmake.in
new file mode 100644
index 0000000..42181f0
--- /dev/null
+++ b/cmake/dbus-cxxConfig.cmake.in
@@ -0,0 +1,79 @@
+@PACKAGE_INIT@
+
+set(dbus-cxx_KNOWN_COMPONENTS "glib" "qt" "uv")
+
+include(CMakeFindDependencyMacro)
+
+find_dependency(Threads)
+find_dependency(sigc++-3)
+
+if(@ENABLE_GLIB_SUPPORT@)
+ find_dependency(PkgConfig)
+ pkg_check_modules(glib REQUIRED IMPORTED_TARGET glib-2.0)
+endif()
+
+if(@ENABLE_UV_SUPPORT@)
+ find_dependency(libuv)
+endif()
+
+if(@ENABLE_QT_SUPPORT@)
+ find_dependency(Qt6 COMPONENTS Core)
+endif()
+
+include("${CMAKE_CURRENT_LIST_DIR}/dbus-cxxTargets.cmake")
+
+if("glib" IN_LIST dbus-cxx_FIND_COMPONENTS)
+ if(@ENABLE_GLIB_SUPPORT@)
+ if(TARGET dbus-cxx::dbus-cxx-glib)
+ set(dbus-cxx_glib_FOUND TRUE)
+ else()
+ set(dbus-cxx_glib_FOUND FALSE)
+ if(dbus-cxx_FIND_REQUIRED_glib)
+ message(FATAL_ERROR "Requested 'glib' component but target 'dbus-cxx::dbus-cxx-glib' is not available.")
+ endif()
+ endif()
+ else()
+ set(dbus-cxx_glib_FOUND FALSE)
+ if(dbus-cxx_FIND_REQUIRED_glib)
+ message(FATAL_ERROR "Requested 'glib' component but dbus-cxx was built without glib support.")
+ endif()
+ endif()
+endif()
+
+if("uv" IN_LIST dbus-cxx_FIND_COMPONENTS)
+ if(@ENABLE_UV_SUPPORT@)
+ if(TARGET dbus-cxx::dbus-cxx-uv)
+ set(dbus-cxx_uv_FOUND TRUE)
+ else()
+ set(dbus-cxx_uv_FOUND FALSE)
+ if(dbus-cxx_FIND_REQUIRED_uv)
+ message(FATAL_ERROR "Requested 'uv' component but target 'dbus-cxx::dbus-cxx-uv' is not available.")
+ endif()
+ endif()
+ else()
+ set(dbus-cxx_uv_FOUND FALSE)
+ if(dbus-cxx_FIND_REQUIRED_uv)
+ message(FATAL_ERROR "Requested 'uv' component but dbus-cxx was built without uv support.")
+ endif()
+ endif()
+endif()
+
+if("qt" IN_LIST dbus-cxx_FIND_COMPONENTS)
+ if(@ENABLE_QT_SUPPORT@)
+ if(TARGET dbus-cxx::dbus-cxx-qt)
+ set(dbus-cxx_qt_FOUND TRUE)
+ else()
+ set(dbus-cxx_qt_FOUND FALSE)
+ if(dbus-cxx_FIND_REQUIRED_qt)
+ message(FATAL_ERROR "Requested 'qt' component but target 'dbus-cxx::dbus-cxx-qt' is not available.")
+ endif()
+ endif()
+ else()
+ set(dbus-cxx_qt_FOUND FALSE)
+ if(dbus-cxx_FIND_REQUIRED_qt)
+ message(FATAL_ERROR "Requested 'qt' component but dbus-cxx was built without qt support.")
+ endif()
+ endif()
+endif()
+
+check_required_components(dbus-cxx)
48 changes: 48 additions & 0 deletions ports/dbus-cxx/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY)

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO dbus-cxx/dbus-cxx
REF "${VERSION}"
SHA512 ad6551d03d0c7d499e9f0c6d77584e39d361a1464017be3c40c237d4c43306ad0ffb49b52c06b89cd62ec7346ebcb29f3d166a31b245fd978159e337a08ebafb
HEAD_REF master
PATCHES
create-cmakeconfig.patch
use-cmakeconfig.patch
)

vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
"glib" ENABLE_GLIB_SUPPORT
"libuv" ENABLE_UV_SUPPORT
"qt6" ENABLE_QT_SUPPORT
)

if (EXISTS "${CURRENT_INSTALLED_DIR}/lib/pkgconfig/libuv-static.pc")
set(UV_STATIC ON)
else ()
set(UV_STATIC OFF)
endif ()

vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
${FEATURE_OPTIONS}
-DBUILD_TESTING=OFF
-DENABLE_CODE_COVERAGE_REPORT=OFF
-DENABLE_EXAMPLES=OFF
-DENABLE_TOOLS=OFF
-DBUILD_SITE=OFF
-DUV_STATIC=${UV_STATIC}
)

vcpkg_cmake_install()

vcpkg_cmake_config_fixup(PACKAGE_NAME "dbus-cxx" CONFIG_PATH "lib/cmake/dbus-cxx")

vcpkg_fixup_pkgconfig()
vcpkg_copy_pdbs()

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

vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYING")
132 changes: 132 additions & 0 deletions ports/dbus-cxx/use-cmakeconfig.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0030f17..0e19089 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -23,7 +23,6 @@ include( CTest )
include( CheckCXXSymbolExists )
include( CheckCXXCompilerFlag )
IF( CMAKE_BUILD_TYPE MATCHES Debug )
-include( CodeCoverage )
ENDIF( CMAKE_BUILD_TYPE MATCHES Debug )

find_package(PkgConfig REQUIRED)
@@ -36,7 +35,8 @@ set( DBUS_CXX_INCLUDE_VERSION 2.0 )
set( PKG_VERSION ${dbus-cxx_VERSION} )

# Our required dependencies: libsigc++ 3.0
-pkg_check_modules( sigc REQUIRED IMPORTED_TARGET sigc++-3.0 )
+find_package(sigc++-3 CONFIG REQUIRED)
Comment thread
luadebug marked this conversation as resolved.
+add_library(PkgConfig::sigc ALIAS sigc-3.0)

#
# Check our options
@@ -355,18 +355,26 @@ INSTALL( FILES "${PROJECT_BINARY_DIR}/dbus-cxx-2.0.pc"
# Support for find_package
#
install(EXPORT dbus-cxxTargets
- FILE dbus-cxxConfig.cmake
- NAMESPACE dbus-cxx::
+ FILE dbus-cxxTargets.cmake
+ NAMESPACE dbus-cxx::
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/dbus-cxx
)

include(CMakePackageConfigHelpers)
-write_basic_package_version_file("${CMAKE_CURRENT_BINARY_DIR}/dbus-cxxConfigVersion.cmake"
+write_basic_package_version_file(
+ "${CMAKE_CURRENT_BINARY_DIR}/dbus-cxxConfigVersion.cmake"
VERSION ${PROJECT_VERSION}
COMPATIBILITY SameMajorVersion
)
-install(FILES "${CMAKE_CURRENT_BINARY_DIR}/dbus-cxxConfigVersion.cmake"
- DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/dbus-cxx
+configure_package_config_file(
+ "${PROJECT_SOURCE_DIR}/cmake/dbus-cxxConfig.cmake.in"
+ "${CMAKE_CURRENT_BINARY_DIR}/dbus-cxxConfig.cmake"
+ INSTALL_DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/dbus-cxx"
+)
+install(FILES
+ "${CMAKE_CURRENT_BINARY_DIR}/dbus-cxxConfig.cmake"
+ "${CMAKE_CURRENT_BINARY_DIR}/dbus-cxxConfigVersion.cmake"
+ DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/dbus-cxx"
)

#
diff --git a/dbus-cxx-glib/CMakeLists.txt b/dbus-cxx-glib/CMakeLists.txt
index 6b98f27..87c245c 100644
--- a/dbus-cxx-glib/CMakeLists.txt
+++ b/dbus-cxx-glib/CMakeLists.txt
@@ -67,6 +67,6 @@ INSTALL( FILES "${CMAKE_CURRENT_BINARY_DIR}/dbus-cxx-glib-2.0.pc"
install( TARGETS dbus-cxx-glib
EXPORT dbus-cxxTargets
COMPONENT glib
- PUBLIC_HEADER DESTINATION include/dbus-cxx-glib-${DBUS_CXX_INCLUDE_VERSION}
- LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
- ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" )
+ PUBLIC_HEADER DESTINATION include/dbus-cxx-glib-${DBUS_CXX_INCLUDE_VERSION} COMPONENT glib
+ LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT glib
+ ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT glib)
diff --git a/dbus-cxx-qt/CMakeLists.txt b/dbus-cxx-qt/CMakeLists.txt
index 9c637ed..a7b75ca 100644
--- a/dbus-cxx-qt/CMakeLists.txt
+++ b/dbus-cxx-qt/CMakeLists.txt
@@ -16,7 +16,7 @@ set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)

-find_package(Qt5 COMPONENTS Core REQUIRED)
+find_package(Qt6 COMPONENTS Core REQUIRED)

set( dbus-cxx-qt-headers dbus-cxx-qt.h qtthreaddispatcher.h qtdispatcher.h )
set( dbus-cxx-qt-sources dbus-cxx-qt.cpp qtthreaddispatcher.cpp qtdispatcher.cpp )
@@ -28,7 +28,7 @@ set_target_properties( dbus-cxx-qt PROPERTIES
VERSION 2.0.0 SOVERSION 2
PUBLIC_HEADER "${dbus-cxx-qt-headers}"
)
-target_link_libraries( dbus-cxx-qt PUBLIC Qt5::Core dbus-cxx PkgConfig::sigc ${LIBRT} )
+target_link_libraries( dbus-cxx-qt PUBLIC Qt6::Core dbus-cxx PkgConfig::sigc ${LIBRT} )
target_include_directories( dbus-cxx-qt INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<INSTALL_INTERFACE:include/dbus-cxx-qt-${DBUS_CXX_INCLUDE_VERSION}>
@@ -73,6 +73,6 @@ INSTALL( FILES "${CMAKE_CURRENT_BINARY_DIR}/dbus-cxx-qt-2.0.pc"
install( TARGETS dbus-cxx-qt
EXPORT dbus-cxxTargets
COMPONENT qt
- PUBLIC_HEADER DESTINATION include/dbus-cxx-qt-${DBUS_CXX_INCLUDE_VERSION}
- LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
- ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" )
+ PUBLIC_HEADER DESTINATION include/dbus-cxx-qt-${DBUS_CXX_INCLUDE_VERSION} COMPONENT qt
+ LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT qt
+ ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT qt)
diff --git a/dbus-cxx-uv/CMakeLists.txt b/dbus-cxx-uv/CMakeLists.txt
index 23d51c5..a1e3abb 100644
--- a/dbus-cxx-uv/CMakeLists.txt
+++ b/dbus-cxx-uv/CMakeLists.txt
@@ -18,7 +18,7 @@ else()
set( LIBUV_PKG_NAME libuv )
endif()

-pkg_check_modules( libuv REQUIRED IMPORTED_TARGET ${LIBUV_PKG_NAME} )
+find_package(libuv CONFIG REQUIRED)

set( dbus-cxx-uv-headers dbus-cxx-uv.h uvdispatcher.h )
set( dbus-cxx-uv-sources dbus-cxx-uv.cpp uvdispatcher.cpp )
@@ -33,7 +33,7 @@ target_include_directories( dbus-cxx-uv INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<INSTALL_INTERFACE:include/dbus-cxx-uv-${DBUS_CXX_INCLUDE_VERSION}>
)
-target_link_libraries( dbus-cxx-uv PUBLIC PkgConfig::libuv )
+target_link_libraries( dbus-cxx-uv PUBLIC $<IF:$<TARGET_EXISTS:libuv::uv_a>,libuv::uv_a,libuv::uv> )

set_property( TARGET dbus-cxx-uv PROPERTY CXX_STANDARD 17 )

@@ -74,6 +74,6 @@ INSTALL( FILES "${CMAKE_CURRENT_BINARY_DIR}/dbus-cxx-uv-2.0.pc"
install( TARGETS dbus-cxx-uv
EXPORT dbus-cxxTargets
COMPONENT uv
- PUBLIC_HEADER DESTINATION include/dbus-cxx-uv-${DBUS_CXX_INCLUDE_VERSION}
- LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
- ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" )
+ PUBLIC_HEADER DESTINATION include/dbus-cxx-uv-${DBUS_CXX_INCLUDE_VERSION} COMPONENT uv
+ LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT uv
+ ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT uv)
44 changes: 44 additions & 0 deletions ports/dbus-cxx/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "dbus-cxx",
"version": "2.6.0",
"description": "DBus-cxx provides an object-oriented interface to DBus.",
"homepage": "https://dbus-cxx.github.io/",
"license": "LGPL-3.0-or-later AND BSD-3-Clause",
"supports": "linux",
"dependencies": [
"libsigcpp",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"glib",
"libuv",
"qt6"
],
Comment thread
luadebug marked this conversation as resolved.
Comment on lines +19 to +23
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JavierMatosD Why is this set of default-features acceptable here and rejected in other proposal? An application wouldn't use three different dispatchers at the same time.

"use Qt, GLib, or libuv as your main event loop without requiring a new thread"

https://dbus-cxx.github.io/ > Features

And all three options are off by default upstream.
https://github.com/dbus-cxx/dbus-cxx/blob/master/CMakeLists.txt#L46-L57

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They are not acceptable. This was an oversight on my part and should not have been merged in its current form.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reverting this PR @luadebug, please reopen this PR and note we generally try to avoid using "default-features" as it was intended to only provide the minimum required for the port to be usable but default features can be difficult to disable downstream. I recommend taking a look at our docs on default features: https://learn.microsoft.com/en-us/vcpkg/concepts/default-features#role-of-default-features and its constraints https://learn.microsoft.com/en-us/vcpkg/contributing/maintainer-guide#default-features-should-enable-behaviors-not-apis

"features": {
"glib": {
"description": "Build dbus-cxx with GLib module",
"dependencies": [
"glib"
]
},
"libuv": {
"description": "Build dbus-cxx with libuv module",
"dependencies": [
"libuv"
]
},
"qt6": {
"description": "Build dbus-cxx with QT6 module",
"dependencies": [
"qtbase"
]
}
}
}
5 changes: 5 additions & 0 deletions scripts/test_ports/vcpkg-ci-dbus-cxx/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
vcpkg_cmake_configure(
SOURCE_PATH "${CURRENT_PORT_DIR}/project"
)
vcpkg_cmake_build()
6 changes: 6 additions & 0 deletions scripts/test_ports/vcpkg-ci-dbus-cxx/project/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.25.1)
project(dbus-cxx-test CXX)
set(CMAKE_CXX_STANDARD 17)
find_package(dbus-cxx CONFIG REQUIRED COMPONENTS glib uv qt)
add_executable(main main.cpp)
target_link_libraries(main PRIVATE dbus-cxx::dbus-cxx dbus-cxx::dbus-cxx-glib dbus-cxx::dbus-cxx-uv dbus-cxx::dbus-cxx-qt)
13 changes: 13 additions & 0 deletions scripts/test_ports/vcpkg-ci-dbus-cxx/project/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#include <dbus-cxx.h>
#include <dbus-cxx-glib.h>
#include <dbus-cxx-uv.h>
#include <dbus-cxx-qt.h>
#include <memory>
int main()
{
auto connection = DBus::Connection::create(DBus::BusType::SESSION);
std::shared_ptr<DBus::Dispatcher> GLibDisp = DBus::GLib::GLibDispatcher::create();
std::shared_ptr<DBus::Dispatcher> UvDisp = DBus::Uv::UvDispatcher::create();
std::shared_ptr<DBus::Dispatcher> QTdisp = DBus::Qt::QtDispatcher::create();
return 0;
}
12 changes: 12 additions & 0 deletions scripts/test_ports/vcpkg-ci-dbus-cxx/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "vcpkg-ci-dbus-cxx",
"version-string": "ci",
"description": "Validates dbus-cxx",
"dependencies": [
"dbus-cxx",
{
"name": "vcpkg-cmake",
"host": true
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -2376,6 +2376,10 @@
"baseline": "1.16.2",
"port-version": 2
},
"dbus-cxx": {
"baseline": "2.6.0",
"port-version": 0
},
"dcmtk": {
"baseline": "3.6.9",
"port-version": 2
Expand Down
9 changes: 9 additions & 0 deletions versions/d-/dbus-cxx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "a5186297adc882cab80c9ba4d5de5ddc9e3ddcdc",
"version": "2.6.0",
"port-version": 0
}
]
}
Loading