mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
oci-cli and oci sdk
This commit is contained in:
25
packages/py3_pyopenssl.rb
Normal file
25
packages/py3_pyopenssl.rb
Normal file
@@ -0,0 +1,25 @@
|
||||
require 'package'
|
||||
|
||||
class Py3_pyopenssl < Package
|
||||
description 'PyOpenSSL is a Python wrapper module around the OpenSSL library.'
|
||||
homepage 'https://www.pyopenssl.org/'
|
||||
@_ver = '20.0.1'
|
||||
version @_ver
|
||||
license 'Apache-2.0'
|
||||
compatibility 'all'
|
||||
source_url 'https://github.com/pyca/pyopenssl.git'
|
||||
git_hashtag @_ver
|
||||
|
||||
depends_on 'openssl'
|
||||
depends_on 'py3_cryptography'
|
||||
depends_on 'py3_six'
|
||||
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
|
||||
Reference in New Issue
Block a user