Files
chromebrew/packages/py3_unsupported_python.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* Add binary_compression value to each package

* Remove binary_url values and arrays

* Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
2024-01-25 11:03:31 -05:00

18 lines
478 B
Ruby

require 'buildsystems/pip'
class Py3_unsupported_python < Pip
description 'This package can be used as a conditional dependency to indicate lack of support for particular versions of Python.'
homepage 'https://github.com/ntessore/unsupported-python'
@_ver = '1.0.0'
version "#{@_ver}-py3.12"
license 'GPL-3+'
compatibility 'all'
source_url 'SKIP'
binary_sha256({})
depends_on 'python3' => :build
pre_configure_options 'ALLOW_UNSUPPORTED_PYTHON=3.12'
end