-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[graphviz] update to 9.0.0 #33795
Merged
Merged
[graphviz] update to 9.0.0 #33795
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/cmd/gvedit/mainwindow.cpp b/cmd/gvedit/mainwindow.cpp | ||
--- a/cmd/gvedit/mainwindow.cpp | ||
+++ b/cmd/gvedit/mainwindow.cpp | ||
@@ -595,7 +595,7 @@ void CMainWindow::readSettings() | ||
// first try new settings | ||
{ | ||
QSettings settings("Graphviz", "gvedit"); | ||
- if (settings.contains("pos") and settings.contains("size")) { | ||
+ if (settings.contains("pos") && settings.contains("size")) { | ||
QPoint pos = settings.value("pos", QPoint(200, 200)).toPoint(); | ||
QSize size = settings.value("size", QSize(400, 400)).toSize(); | ||
move(pos); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,13 +5,14 @@ vcpkg_from_gitlab( | |
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO graphviz/graphviz | ||
REF "${VERSION}" | ||
SHA512 5872db8aefb9bebf6fea91dbe96759c42fa82dbe811238c7d6de8db5a0c6af77749083af60fc21f8e42c4fc159a2cbfefcc304967edda3d2832ef396c457530a | ||
SHA512 1edcf6aa232d38d1861a344c1a4a88aac51fd4656d667783ca1608ac694025199595a72a293c4eee2f7c7326ce54f22b787a5b7f4c44946f2de6096bd8f0e79d | ||
HEAD_REF main | ||
PATCHES | ||
fix-dependencies.patch | ||
no-absolute-paths.patch | ||
select-plugins.patch | ||
static-linkage.patch | ||
cpp-error.patch | ||
) | ||
|
||
if(VCPKG_TARGET_IS_OSX) | ||
|
@@ -63,6 +64,7 @@ vcpkg_cmake_configure( | |
-DCMAKE_REQUIRE_FIND_PACKAGE_GD=ON | ||
-DCMAKE_REQUIRE_FIND_PACKAGE_LTDL=ON | ||
-DCMAKE_REQUIRE_FIND_PACKAGE_PANGOCAIRO=ON | ||
-Dwith_gvedit=OFF | ||
${OPTIONS} | ||
MAYBE_UNUSED_VARIABLES | ||
install_win_dependency_dlls | ||
|
@@ -84,7 +86,41 @@ foreach(script_or_link IN ITEMS "dot2gxl${VCPKG_TARGET_EXECUTABLE_SUFFIX}" gvmap | |
endif() | ||
endforeach() | ||
vcpkg_copy_tools( | ||
TOOL_NAMES acyclic bcomps ccomps circo diffimg dijkstra dot edgepaint fdp gc gml2gv graphml2gv gv2gml gvcolor gvgen gvmap gvpack gvpr gxl2gv mm2gv neato nop osage patchwork sccmap sfdp tred twopi unflatten | ||
TOOL_NAMES | ||
acyclic | ||
bcomps | ||
ccomps | ||
circo | ||
diffimg | ||
dijkstra | ||
dot | ||
edgepaint | ||
fdp | ||
gc | ||
gml2gv | ||
graphml2gv | ||
gv2gml | ||
gvcolor | ||
gvgen | ||
gvmap | ||
gvpack | ||
gvpr | ||
gxl2gv | ||
mm2gv | ||
neato | ||
nop | ||
osage | ||
patchwork | ||
sccmap | ||
sfdp | ||
tred | ||
twopi | ||
unflatten | ||
cluster | ||
dot_builtins | ||
gv2gxl | ||
gxl2dot | ||
prune | ||
Comment on lines
+119
to
+123
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It used to be alphabetic. |
||
AUTO_CLEAN | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But gvedit is explicitly disabled...