mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
44 lines
1.8 KiB
Tcl
44 lines
1.8 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup github 1.0
|
|
PortGroup python 1.0
|
|
|
|
github.setup jtesta ssh-audit 3.9.0 v
|
|
github.tarball_from releases
|
|
revision 0
|
|
|
|
categories security python
|
|
license MIT
|
|
maintainers {mps @Schamschula} openmaintainer
|
|
description ssh-audit is a tool for ssh server & client configuration auditing.
|
|
long_description {*}${description}
|
|
supported_archs noarch
|
|
platforms {darwin any}
|
|
homepage https://github.com/jtesta/ssh-audit
|
|
|
|
checksums rmd160 b8bfda677dd667ed3745303c47dd9f1c34747a12 \
|
|
sha256 618ec29801c3abefcef8bb8177f918dcba6b3542f0803ce510cd13bfcd13815d \
|
|
size 182593
|
|
|
|
distname v${version}
|
|
|
|
build.dir ${workpath}/${name}-${version}
|
|
|
|
variant python310 conflicts python311 python312 python313 python314 description {Build using Python 3.10} {}
|
|
variant python311 conflicts python310 python312 python313 python314 description {Build using Python 3.11} {}
|
|
variant python312 conflicts python310 python311 python313 python314 description {Build using Python 3.12} {}
|
|
variant python313 conflicts python310 python311 python312 python314 description {Build using Python 3.13} {}
|
|
variant python314 conflicts python310 python311 python312 python313 description {Build using Python 3.14} {}
|
|
|
|
if {![variant_isset python310] && ![variant_isset python311] && ![variant_isset python312] && ![variant_isset python313]} {
|
|
default_variants +python314
|
|
}
|
|
|
|
foreach pv {314 313 312 311 310} {
|
|
if {[variant_isset python${pv}]} {
|
|
python.default_version ${pv}
|
|
break
|
|
}
|
|
}
|