ruby-gist: add new package (#34852)

This commit is contained in:
David Zmick 2023-01-10 16:14:49 -06:00 committed by GitHub
parent 8f6f77ac9f
commit 8dc3a09104
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# Copyright 2013-2022 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.package import *
class RubyGist(RubyPackage):
"""The gist gem provides a gist command that you can use from your terminal to upload content to https://gist.github.com/."""
homepage = "https://github.com/defunkt/gist"
url = "https://rubygems.org/downloads/gist-6.0.0.gem"
version(
"6.0.0",
sha256="0d0a3616b1a4eec837ce4e5b5477bc809d58597ee350b2c34104acd3b00ccd62",
expand=False,
)
depends_on("ruby@1.8:2", type=("build", "run"))