oci-cli and oci sdk

This commit is contained in:
saltedcoffii
2021-05-08 21:16:15 -04:00
parent ac4f0c19b4
commit ec2eaa91ad
15 changed files with 250 additions and 46 deletions

22
packages/py3_jmespath.rb Normal file
View File

@@ -0,0 +1,22 @@
require 'package'
class Py3_jmespath < Package
description 'JMESPath is a query language for JSON.'
homepage 'https://jmespath.org/'
@_ver = '0.10.0'
version @_ver
license 'MIT'
compatibility 'all'
source_url 'https://github.com/jmespath/jmespath.py.git'
git_hashtag @_ver
depends_on 'py3_setuptools' => :build
def self.build
system "python3 setup.py build #{PY3_SETUP_BUILD_OPTIONS}"
end
def self.install
system "python3 setup.py install #{PY_SETUP_INSTALL_OPTIONS}"
end
end