mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* 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)
18 lines
478 B
Ruby
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
|