# -*- 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 version 2.49.2 revision 0 # Github CLI is failing to build on 10.12 and below. # So in that case, use the pre-built binary tarball. if {${os.major} >= 17} { set source_build yes } else { set source_build no } if ${source_build} { PortGroup golang 1.0 go.setup github.com/cli/cli ${version} v go.package github.com/cli/cli/v2 } else { PortGroup github 1.0 PortGroup legacysupport 1.1 github.setup cli cli ${version} v supported_archs x86_64 } name gh homepage https://cli.github.com description GitHub’s official command line tool long_description ${name} is GitHub on the command line. It brings pull \ requests, issues, and other GitHub concepts to the \ terminal next to where you are already working with git \ and your code. categories devel installs_libs no license MIT maintainers {gmail.com:herby.gillot @herbygillot} \ openmaintainer if ${source_build} { # Allow Go to fetch dependencies at build time go.offline_build no build.cmd make build.pre_args-append \ GH_VERSION=${version} build.args bin/${name} manpages use_parallel_build no checksums rmd160 c97c2befd3c26651e38491827862f4d2698cbd90 \ sha256 e839ea302ad99b70ce3efcb903f938ecbbb919798e49bc2f2034ad506ae0b0f5 \ size 967559 github.tarball_from archive dist_subdir ${name} patch { # Do not override GOOS, GOARCH, GOARM and other environment variables reinplace -E \ {s|GOOS= GOARCH= GOARM= GOFLAGS= CGO_ENABLED= go build|go build|g} \ ${worksrcpath}/Makefile } } else { github.tarball_from releases build {} distname gh_${version}_macOS_amd64 checksums rmd160 3c7cc619e512187e74476fb446dbdac7520b210e \ sha256 c445c6cf722645459b5986ac2de35d0572375ae5fd05068971f1a62ddac7875d \ size 13612849 use_configure no use_zip yes } destroot { xinstall -m 0755 -W ${worksrcpath} bin/gh ${destroot}${prefix}/bin if {!$source_build} { # standard legacysupport tweaks don't work, since the install here is # from a binary tarball ... have to tweak the binary to use the legacy # support library, which in turn uses the System.B library. # Add legacysupport for 10.11 and older for clock_gettime support if {${os.major} <= 15} { system -W ${destroot}${prefix}/bin "install_name_tool -change /usr/lib/libSystem.B.dylib ${prefix}/lib/libMacportsLegacySupport.dylib gh" } } set docdir ${prefix}/share/doc/${name} xinstall -d ${destroot}${docdir} xinstall -m 0644 -W ${worksrcpath} LICENSE ${destroot}${docdir} # Man pages xinstall -d ${destroot}${prefix}/share/man/man1 xinstall -m 0644 {*}[glob ${worksrcpath}/share/man/man1/*] \ ${destroot}${prefix}/share/man/man1 # Shell completions xinstall -d ${destroot}${prefix}/share/bash-completion/completions exec ${destroot}${prefix}/bin/gh completion -s bash >> \ ${destroot}${prefix}/share/bash-completion/completions/gh xinstall -d ${destroot}${prefix}/share/zsh/site-functions exec ${destroot}${prefix}/bin/gh completion -s zsh >> \ ${destroot}${prefix}/share/zsh/site-functions/_gh xinstall -d ${destroot}${prefix}/share/fish/vendor_completions.d exec ${destroot}${prefix}/bin/gh completion -s fish >> \ ${destroot}${prefix}/share/fish/vendor_completions.d/gh.fish } github.livecheck.regex {([0-9.]+)}