mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Python 3.11 initial binary upload * switch py_libxml2 to -py3.11 * fixup package versions * fix py3_pillow * build python with ensurepip * add flit_core to pyparsing * update some package versions * update wheel * update core python packages * more updates * update py3_libxml2.rb py3_pyelftools.rb py3_codespell.rb * add all successful builds * update versions in broken builds * fix package * adding some binaries * add build * add meson build * add py3_numpy builds * update itstool * update xcb_proto * add more packages * update bind to not include py3_ply * rebuild libcaca * update py3_gi_docgen * remove some conflicts_ok * remove setuptools and pip deps * attempt pip uninstall during install * add preflight to pip and setuptools * try excluding pip again * adjust logic * lint
24 lines
557 B
Ruby
24 lines
557 B
Ruby
require 'package'
|
|
|
|
class Aws2 < Package
|
|
description 'This package makes it easy to start, stop and save AWS spot instances; and to manage EC2 resources.'
|
|
homepage 'https://github.com/simonm3/aws2'
|
|
@_ver = '0.2.7'
|
|
version "#{@_ver}-1"
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
binary_url({
|
|
})
|
|
binary_sha256({
|
|
})
|
|
|
|
depends_on 'rust' => :build
|
|
depends_on 'python3' => :build
|
|
|
|
def self.install
|
|
system "pip install --prefix #{CREW_PREFIX} --root #{CREW_DEST_DIR} -I aws2==#{@_ver} --no-warn-script-location"
|
|
end
|
|
end
|