-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
Librsvg port #6807
Librsvg port #6807
Conversation
This is version 2.40.20, the last C version of the library, moving forward would require rust compilation tools to be available in vcpkg. Should close issue microsoft#3865
So, what I see is that the tests passed but some policy failed? not sure what the problem is, I can build the library on my Linux box as is. |
It looks like the cmake config had errors. If it works on your computer it is possible there is a missing dependency on the CI machines. You can get the logs here: https://dev.azure.com/vcpkg/c1ee48cb-0df2-4ab3-8384-b1df5a79fe53/_apis/build/builds/2062/artifacts?artifactName=port%20build%20failure%20logs&api-version=5.1-preview.5&%24format=zip
|
This is odd, it is complaining that gdk-pixbuf is not installed, but it is listed in the CONTROL file: Build-Depends: cairo, pango, gdk-pixbuf, libcroco |
I've just been successful in building this branch and loading pixbufloader-svg into my application. Everything appears to be working fine for me now! |
Are the tests somehow being run with a master commit hash from the day the first commit was created? this should be fine if rebased on top of #6663, which should be the case if the tests either run from a fresh checkout of my branch or if the commits are cherry picked on top of the tip of master. The first commit (and the others might as well) likely does have a creation date from before #6663 merged. |
When the tests run it does merge with the latest master on the CI system before building. we can rerun the tests. |
/azp run |
@Rastaban Thank you for the follow up! 😁 |
These are the initial commits for a new librsvg port.
Fulfills PR for issue #3865