-
Notifications
You must be signed in to change notification settings - Fork 560
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
Add recipe for libssh 0.10.6 #7903
Conversation
L/libssh/build_tarballs.jl
Outdated
# Bash recipe for building across all platforms | ||
script = raw""" | ||
# Necessary for cmake to find openssl on Windows | ||
if [[ ${target} == *w64* ]]; then |
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.
To be honest w64
is a bit obscure, I think
if [[ ${target} == *w64* ]]; then | |
if [[ ${target} == x86_64-*-mingw* ]]; then |
would be slightly clearer: the architecture and the runtime parts of the triple are clearly spelled out
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.
Sure, fixed in 52ccbf4.
L/libssh/build_tarballs.jl
Outdated
HostBuildDependency("Doxygen_jll"), | ||
Dependency("Kerberos_krb5_jll"; compat="1.19.3"), | ||
Dependency(PackageSpec(name="OpenSSL_jll", uuid="458c3c95-2e84-50aa-8efc-19380b2a3a95"); compat="3.0.8"), | ||
Dependency(PackageSpec(name="Zlib_jll", uuid="83775a58-1f1d-513f-b197-d71354ab007a"); compat="1.2.13") |
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.
This won't be installable in Julia v1.6: https://github.com/JuliaLang/julia/blob/v1.6.0/stdlib/Zlib_jll/Project.toml#L3
Dependency(PackageSpec(name="Zlib_jll", uuid="83775a58-1f1d-513f-b197-d71354ab007a"); compat="1.2.13") | |
Dependency(PackageSpec(name="Zlib_jll", uuid="83775a58-1f1d-513f-b197-d71354ab007a"); compat="1.2.12") |
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.
Fixed in 822cc46.
Many thanks for the help ❤️ |
* Add recipe for libssh 0.10.6 * fixup! Add recipe for libssh 0.10.6 * fixup! Add recipe for libssh 0.10.6 * fixup! Add recipe for libssh 0.10.6
* Add recipe for libssh 0.10.6 * fixup! Add recipe for libssh 0.10.6 * fixup! Add recipe for libssh 0.10.6 * fixup! Add recipe for libssh 0.10.6
Package for https://www.libssh.org.
Some oddities:
FileProduct
for the Doxygen tag file (useful when generating docs)Minimum instruction set detected for bin/libssh.dll is avx2, not x86_64 as desired
. I've looked through the code to try to see where those instructions might be coming from but didn't find anything. Not sure how serious it is.