new package: r-gitcreds (#21022)

Query, set, delete credentials from the 'git' credential store. Manage
'GitHub' tokens and other 'git' credentials. This package is to be used
by other packages that need to authenticate to 'GitHub' and/or other
'git' repositories.
This commit is contained in:
Glenn Johnson 2021-01-17 13:49:36 -06:00 committed by GitHub
parent 9295019928
commit 54bab50b47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,23 @@
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class RGitcreds(RPackage):
"""Query 'git' Credentials from 'R'
Query, set, delete credentials from the 'git' credential store. Manage
'GitHub' tokens and other 'git' credentials. This package is to be used by
other packages that need to authenticate to 'GitHub' and/or other 'git'
repositories."""
homepage = "https://github.com/r-lib/gitcreds"
url = "https://cloud.r-project.org/src/contrib/gitcreds_0.1.1.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/gitcreds"
version('0.1.1', sha256='b14aaf4e910a9d2d6c65c93e645f0b0159c00898e669f917f83c03dfedb1dfea')
depends_on('git', type='run')