mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
38 lines
1.3 KiB
Tcl
38 lines
1.3 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
|
|
|
|
github.setup AdityaGarg8 git-credential-email 5.9.3 v
|
|
github.tarball_from archive
|
|
revision 0
|
|
categories security
|
|
license Apache-2
|
|
maintainers {makr @mohd-akram} openmaintainer
|
|
|
|
description git credential helpers for email providers
|
|
|
|
long_description Git credential helpers for Microsoft Outlook, Gmail, \
|
|
Yahoo, AOL and Proton Mail accounts.
|
|
|
|
checksums rmd160 8785134aa7d1a375a3f1bce1bd1f7a351acfc4fe \
|
|
sha256 8741b3556602413e1105c852e82ac46d9338bb1a2bb31068ce4dddd0daf6cbcd \
|
|
size 55097
|
|
|
|
set py_ver 3.14
|
|
set py_ver_nodot [string map {. {}} ${py_ver}]
|
|
|
|
depends_lib port:python${py_ver_nodot} \
|
|
port:py${py_ver_nodot}-keyring \
|
|
port:py${py_ver_nodot}-requests
|
|
|
|
configure.python ${prefix}/bin/python${py_ver}
|
|
|
|
use_configure no
|
|
build {}
|
|
destroot {
|
|
copy {*}[glob ${worksrcpath}/git-*] ${destroot}${prefix}/bin
|
|
reinplace "s|^#!/usr/bin/env python3|#!${configure.python}|" \
|
|
{*}[glob ${destroot}${prefix}/bin/*]
|
|
}
|