Files

34 lines
1.4 KiB
Tcl
Raw Permalink Normal View History

2023-11-26 01:28:00 -05:00
# -*- 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
2025-06-16 01:10:00 -04:00
PortGroup legacysupport 1.1
2023-11-26 01:28:00 -05:00
PortGroup github 1.0
2025-06-16 01:10:00 -04:00
github.setup minfrin retry 1.0.6 retry-
2023-11-26 01:28:00 -05:00
github.tarball_from releases
revision 0
categories sysutils
license Apache-2
2025-06-16 01:10:00 -04:00
maintainers {@TheRealKeto gmail.com:therealketo} openmaintainer
2023-11-26 01:28:00 -05:00
description Repeat a command until a command succeeds
long_description {*}${description}. Retry captures stdin into memory as the data is passed to \
the repeated command, and this captured stdin is then replayed should the command \
be repeated. This makes it possible to embed the retry tool into shell pipelines.
2025-06-16 01:10:00 -04:00
checksums rmd160 a6966e6caab947cbfa2386e1e78e6afbf7f14d0f \
sha256 b5bbdaee16436fabae608fbc58f47df9726b87b945c9eca1524648500b9afdf3 \
size 281571
2023-11-26 01:28:00 -05:00
use_bzip2 yes
configure.args-append --disable-silent-rules
2025-06-16 01:10:00 -04:00
# clock_gettime
legacysupport.newest_darwin_requires_legacy 15
2023-11-26 01:28:00 -05:00
post-destroot {
xinstall -d ${destroot}${prefix}/share/doc/${name}
xinstall -m 0644 -W ${worksrcpath} COPYING ${destroot}${prefix}/share/doc/${name}
}