mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add python buildsystem * tk rebuild * Initial x86_64,i686 python 3.12 builds * update meson package * update python3 to have all compat * update packages * Add PYTHON env variable. * add arm build * update x86_64 binary * add i686 binary * update more packages * fixup * fixup * updates * fixup * updates * updates * refactor python buildsystem * refactor python buildsystem * adjust buildsystems/python * refactor buildsystems/python * refactor some core py3 packages * python package rebuilds * fix package versioning * update asciidoc * update libxml2 * update itstool and py3_libxml2 * boost => 1.83 * update gnome packages * update py3_pip * update xcb_proto * add pip buildsystem * py3_websockets using pip buildsystem * more pip updates * update cython, libnghttp2 * update py3_packaging, py3_pyparsing * rebuild libcaca * update talloc, tevent * update tdb * update lmdb * update py3_dnsmarkdown, py3_markdown * update ldb * fixup * fix cmake llvm dep * update py3_pyyaml * more llvm17 adjustments * update py3_pygments * fixup * smbclient => 4.19.0 * update py3_abimap * update py3_pytz * update py3_wcwidth py3_pyte * build py3_xlrd.rb py3_et_xmlfile.rb py3_openpyxl.rb py3_olefile.rb py3_babel.rb * py3_six * build py3_pyicu.rb py3_pytimeparse.rb py3_text_unidecode.rb py3_slugify.rb py3_isodate.rb py3_leather.rb py3_parsedatetime.rb py3_agate.rb py3_agate_excel.rb * update py3_packaging * py3_dbfread.rb py3_agate_dfb.rb py3_sqlalchemy.rb py3_agate_sql.rb * py3_alabaster.rb py3_argcomplete.rb py3_appdirs.rb py3_click.rb * add py3_soupsieve * rebuild gstreamer for libvpx, build py3_editables.rb py3_pathspec.rb py3_pluggy.rb py3_trove_classifiers.rb py3_hatchling.rb py3_hatch_vcs.rb py3_hatch_fancy_pypi_readme.rb py3_attrs.rb py3_beautifulsoup4.rb py3_dateutil.rb py3_arrow.rb * build py3_setuptools_scm.rb py3_semantic_version.rb py3_typing_extensions.rb py3_setuptools_rust.rb * rebuild qtbase * fixup packages * update cpython * make pip/python use nproc * update numpy, but remove binaries * Convert remaining python packages to pip without binaries * add new packages to packages.yaml * remove pip binaries * refactor pip * align pip update code betwen python3 and py3_pip * fixup * py3_pip needs building * adjust depends logic * refactor pip dependency * bump buildessential * bump version * cleanup * refactor pip * switch py3_build to pip * fixup depends ordering * add spacing before no_compile_needed * add missing no_compile_needed
37 lines
1.5 KiB
Ruby
37 lines
1.5 KiB
Ruby
require 'package'
|
|
|
|
class Python < Package
|
|
property :python_build_options
|
|
property :python_install_options
|
|
property :no_svem
|
|
|
|
def self.build
|
|
#@required_pip_modules = %w[build installer setuptools wheel pyproject_hooks]
|
|
#@pip_list = `pip list --exclude pip`
|
|
#@required_pip_modules.each do |pip_pkg|
|
|
#unless @pip_list.include?(pip_pkg)
|
|
#puts "Installing #{pip_pkg} using pip..."
|
|
#system "MAKEFLAGS=-j#{CREW_NPROC} pip install #{pip_pkg}"
|
|
#end
|
|
#end
|
|
if File.file?('setup.py')
|
|
puts "Python build options being used: #{PY3_SETUP_BUILD_OPTIONS} #{@python_build_options}".orange
|
|
system "MAKEFLAGS=-j#{CREW_NPROC} python3 setup.py build #{PY3_SETUP_BUILD_OPTIONS} #{@python_build_options}"
|
|
else
|
|
puts "Python build options being used: #{PY3_BUILD_OPTIONS}".orange
|
|
system "MAKEFLAGS=-j#{CREW_NPROC} python3 -m build #{PY3_BUILD_OPTIONS}"
|
|
end
|
|
end
|
|
|
|
def self.install
|
|
if File.file?('setup.py')
|
|
@py_setup_install_options = @no_svem ? PY_SETUP_INSTALL_OPTIONS_NO_SVEM.to_s : PY_SETUP_INSTALL_OPTIONS.to_s
|
|
puts "Python install options being used: #{@py_setup_install_options} #{@python_install_options}".orange
|
|
system "MAKEFLAGS=-j#{CREW_NPROC} python3 setup.py install #{@py_setup_install_options} #{@python_install_options}"
|
|
else
|
|
puts "Python install options being used: #{PY3_INSTALLER_OPTIONS}".orange
|
|
system "MAKEFLAGS=-j#{CREW_NPROC} python3 -m installer #{PY3_INSTALLER_OPTIONS}"
|
|
end
|
|
end
|
|
end
|