mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Make basic crew-profile-base package * Use crew consts * Upgrade to 0.0.2-pre2 * Convert aa* to cf* * Docbook * aa* to dz* * docbook-xsl * through fz* and fix environment variables * through mz* * through pz* * through zz* * fix crew-profile-base * upgrade crew-profile-base * major crew-profile-base changes * Upgrade crew-profile-base and fix xdg-base * fix sha256sum * Remove stale files * pkgsrc and sommelier * Add crew-profile-base to core packages and ready for merging * Bump versions * prevent conflicts with #5494 * fix sha256sum * fix fop * profile.d is not ours * fix bash * Upgrade crew-profile-base to 0.0.1-pre6 and fix bash * Remove self-referencing comment * Add binaries, fix rust, fix #{@ver} * move compatibility line * add core mandb deps back * File.exists? => File.exist? * deduplicate @env * update packages * Fix gdk_pixbug source url * Add binaries, use rubocop style fixes * Update cf from 6.36.1-1 to 6.53.0 * fix sl * fix depot tools * remove apulse since it conflicts with pulseaudio. * refactor crew_profile_base * first tranche of builds * go * add cf * hunspell * transmission * clean up dependency & env situation for gdk_pixbuf * fix gettext * fix nano * fix intel-media-driver * add zziplib for texlive * fix texlive * split fuse for flatpak * fix flatpak * delete rack (broken and unmaintained) * fix packer completion * modify and fix sl * fix s * fix stressng * fix stack * Add TMPDIR * Remove TMPDIR from build files * Fix aws2 version * Go: remove extraneous dependency * hunspell_fr_fr: use french in description * intel media driver: remove case x86_64 * aws2: quickfix * everything but texlive * texlive * fix stressng * Delete pkgsrc.rb * add back pkgsrc Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: satmandu <satadru@umich.edu>
123 lines
5.3 KiB
Ruby
123 lines
5.3 KiB
Ruby
require 'package'
|
|
|
|
class Python3 < Package
|
|
description 'Python is a programming language that lets you work quickly and integrate systems more effectively.'
|
|
homepage 'https://www.python.org/'
|
|
@_ver = '3.9.4'
|
|
version @_ver
|
|
license 'PSF-2.0'
|
|
compatibility 'all'
|
|
source_url "https://www.python.org/ftp/python/#{@_ver}/Python-#{@_ver}.tar.xz"
|
|
source_sha256 '4b0e6644a76f8df864ae24ac500a51bbf68bd098f6a173e27d3b61cdca9aa134'
|
|
|
|
binary_url({
|
|
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/python3-3.9.4-chromeos-armv7l.tar.xz',
|
|
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/python3-3.9.4-chromeos-armv7l.tar.xz',
|
|
i686: 'https://dl.bintray.com/chromebrew/chromebrew/python3-3.9.4-chromeos-i686.tar.xz',
|
|
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/python3-3.9.4-chromeos-x86_64.tar.xz'
|
|
})
|
|
binary_sha256({
|
|
aarch64: 'fe4fde3f9738ac76096dfdc13ff6931543e2f612035421e294f87d2bfc09773c',
|
|
armv7l: 'fe4fde3f9738ac76096dfdc13ff6931543e2f612035421e294f87d2bfc09773c',
|
|
i686: 'a9e7b61911679cda55f65cf5ca29076ee2ac4540c8dd7bda5322df66d4d6e4bd',
|
|
x86_64: 'cd3a63250e76cd887a620df69f37d349d4cea0d39e3d8bc2ceef9400a40befbb'
|
|
})
|
|
|
|
depends_on 'bz2'
|
|
depends_on 'gdbm'
|
|
depends_on 'glibc'
|
|
depends_on 'krb5' => :build
|
|
depends_on 'libdb'
|
|
depends_on 'libffi'
|
|
depends_on 'libtirpc' => :build
|
|
depends_on 'ncurses'
|
|
depends_on 'openssl'
|
|
depends_on 'readline'
|
|
depends_on 'sqlite'
|
|
# depends_on 'tcl' # Needed for tkinter support
|
|
# depends_on 'tk' # Needed for tkinter support
|
|
depends_on 'xzutils'
|
|
depends_on 'zlibpkg'
|
|
|
|
def self.preinstall
|
|
# Fix ImportError: cannot import name 'PackageFinder'.
|
|
# See https://stackoverflow.com/questions/59887436/importerror-cannot-import-name-packagefinder.
|
|
FileUtils.rm_rf Dir.glob("#{CREW_PREFIX}/lib/python3.9/site-packages/pip*")
|
|
end
|
|
|
|
def self.build
|
|
# IMPORTANT: Do not build with python3 already installed or pip3 will not be included.
|
|
raise StandardError, 'Please remove python3 before building.' if File.exist?("#{CREW_PREFIX}/bin/python3")
|
|
|
|
@cppflags = "-fno-semantic-interposition -I#{CREW_PREFIX}/include/ncursesw"
|
|
# python requires /usr/local/lib, so leave as is but specify -rpath
|
|
@ldflags = "-fno-semantic-interposition -Wl,-rpath,-L#{CREW_LIB_PREFIX}"
|
|
|
|
# Using /tmp breaks test_distutils, test_subprocess.
|
|
# Proxy setting breaks test_httpservers, test_ssl,
|
|
# test_urllib, test_urllib2, test_urllib2_localnet.
|
|
# So, modifying environment variable to make pass tests.
|
|
|
|
system "env CFLAGS='' \
|
|
CXXFLAGS='' \
|
|
CC='gcc -pthread' \
|
|
CPPFLAGS='#{@cppflags}' \
|
|
LDFLAGS='#{@ldflags}' \
|
|
./configure \
|
|
#{CREW_OPTIONS} \
|
|
--with-ensurepip=install \
|
|
--enable-optimizations \
|
|
--with-lto \
|
|
--with-platlibdir='lib#{CREW_LIB_SUFFIX}' \
|
|
--enable-shared"
|
|
system 'make'
|
|
end
|
|
|
|
def self.check
|
|
# Chromebook doesn't allow SIGHUP, so disable SIGHUP test
|
|
system 'sed', '-i', 'Lib/test/test_asyncio/test_events.py', '-e', "/Don't have SIGHUP/s/win32/linux/"
|
|
system 'sed', '-i', 'Lib/test/test_asyncio/test_subprocess.py', '-e', "/Don't have SIGHUP/s/win32/linux/"
|
|
|
|
# Chromebook returns EINVAL for F_NOTIFY DN_MULTISHOT, so disable test_fcntl_64_bit
|
|
system 'sed', '-i', 'Lib/test/test_fcntl.py', '-e', '/ARM Linux returns EINVAL for F_NOTIFY DN_MULTISHOT/s/$/\
|
|
@unittest.skipIf(platform.system() == '"'Linux'"', "Chromeos returns EINVAL for F_NOTIFY DN_MULTISHOT")/'
|
|
|
|
# imaplib test used to use a kind of security hole on a server in university and the hole is closed now.
|
|
# See https://bugs.python.org/issue30175 and https://github.com/python/cpython/pull/1320/files for details.
|
|
system 'sed', '-i', 'Lib/test/test_imaplib.py',
|
|
'-e', '/test_logincapa_with_client_certfile/i\ \ \ \ @unittest.skipIf(True,\
|
|
"bpo-30175: FIXME: cyrus.andrew.cmu.edu doesn\'t accept "\
|
|
"our randomly generated client x509 certificate anymore")',
|
|
'-e', '/test_logincapa_with_client_ssl_context/i\ \ \ \ @unittest.skipIf(True,\
|
|
"bpo-30175: FIXME: cyrus.andrew.cmu.edu doesn\'t accept "\
|
|
"our randomly generated client x509 certificate anymore")'
|
|
|
|
# Using /tmp breaks test_distutils, test_subprocess
|
|
# Proxy setting breaks test_httpservers, test_ssl,
|
|
# test_urllib, test_urllib2, test_urllib2_localnet
|
|
# system "http_proxy= https_proxy= ftp_proxy= make test"
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
|
|
# remove static libraries
|
|
# system "find #{CREW_DEST_PREFIX} -name 'libpython*.a' -print | xargs -r rm"
|
|
|
|
# create symbolic links in lib64 for other applications which use libpython
|
|
unless Dir.exist? CREW_DEST_LIB_PREFIX
|
|
FileUtils.mkdir_p CREW_DEST_LIB_PREFIX
|
|
system "cd #{CREW_DEST_LIB_PREFIX} && ln -s ../lib/libpython*.so* ."
|
|
end
|
|
end
|
|
|
|
def self.postinstall
|
|
puts
|
|
puts 'Upgrading pip...'.lightblue
|
|
system "curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && LD_LIBRARY_PATH=#{CREW_LIB_PREFIX} python3 get-pip.py -U"
|
|
puts 'Setting Python3 as default python...'.lightblue
|
|
FileUtils.ln_sf "#{CREW_PREFIX}/bin/python3", "#{CREW_PREFIX}/bin/python"
|
|
FileUtils.ln_sf "#{CREW_PREFIX}/bin/pip3", "#{CREW_PREFIX}/bin/pip"
|
|
end
|
|
end
|