Files
chromebrew/packages/py3_packaging.rb
Satadru Pramanik 001060b261 Python 3.11 (#7570)
* 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
2022-12-02 12:27:01 -06:00

37 lines
1.6 KiB
Ruby

require 'package'
class Py3_packaging < Package
description 'Packaging provides core utilities for Python packages'
homepage 'https://packaging.pypa.io/'
@_ver = '21.3'
version "#{@_ver}-py3.11"
license 'BSD-2 or Apache-2.0'
compatibility 'all'
source_url 'https://github.com/pypa/packaging.git'
git_hashtag @_ver
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/py3_packaging/21.3-py3.11_armv7l/py3_packaging-21.3-py3.11-chromeos-armv7l.tar.zst',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/py3_packaging/21.3-py3.11_armv7l/py3_packaging-21.3-py3.11-chromeos-armv7l.tar.zst',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/py3_packaging/21.3-py3.11_i686/py3_packaging-21.3-py3.11-chromeos-i686.tar.zst',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/py3_packaging/21.3-py3.11_x86_64/py3_packaging-21.3-py3.11-chromeos-x86_64.tar.zst'
})
binary_sha256({
aarch64: 'f62325e7769ae74eb20c83e5b03b53659911c231a295d9b32cf905490942bc3c',
armv7l: 'f62325e7769ae74eb20c83e5b03b53659911c231a295d9b32cf905490942bc3c',
i686: '6bfa2e877c594e9b45b1ef7fde31e61ce88642574c17fadd19aaf227c8a01073',
x86_64: '636fd08cfbfe22116e5712aa89106f9fe3929ca65845f03240f5ef3d3e615494'
})
depends_on 'python3'
depends_on 'py3_pyparsing'
def self.build
system "SETUPTOOLS_SCM_PRETEND_VERSION=#{@_ver} python3 -m build #{PY3_BUILD_OPTIONS}"
end
def self.install
system "python3 -m installer #{PY3_INSTALLER_OPTIONS}"
end
end