mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
76 lines
3.7 KiB
Ruby
76 lines
3.7 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/'
|
|
version '3.6.0'
|
|
source_url 'https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz'
|
|
source_sha256 'aa472515800d25a3739833f76ca3735d9f4b2fe77c3cb21f69275e0cce30cb2b'
|
|
|
|
binary_url ({
|
|
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/python3-3.6.0-chromeos-armv7l.tar.xz',
|
|
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/python3-3.6.0-chromeos-armv7l.tar.xz',
|
|
i686: 'https://dl.bintray.com/chromebrew/chromebrew/python3-3.6.0-chromeos-i686.tar.xz',
|
|
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/python3-3.6.0-chromeos-x86_64.tar.xz',
|
|
})
|
|
binary_sha256 ({
|
|
aarch64: '69cd539510eaaf0dfbf101dbb8ee3b1f15985f948887ec9bc5158544fd37994f',
|
|
armv7l: '69cd539510eaaf0dfbf101dbb8ee3b1f15985f948887ec9bc5158544fd37994f',
|
|
i686: '69e79202b30ed23640619c2cc425d92df6e638b9cfb502e939fd33eb2c359d36',
|
|
x86_64: 'c50473d6a3d1b2e7c28943967549e08d61bc49e702469fb6509ef2191fc756f4',
|
|
})
|
|
|
|
depends_on 'bz2' => :build
|
|
depends_on 'xzutils' => :build
|
|
depends_on 'ncurses'
|
|
depends_on 'openssl' => :build
|
|
depends_on 'sqlite' => :build
|
|
depends_on 'zlibpkg'
|
|
|
|
def self.build
|
|
# python requires to use /usr/local/lib, so leave as is but specify -rpath
|
|
system "./configure", "CPPFLAGS=-I/usr/local/include/ncurses -I/usr/local/include/ncursesw",
|
|
"LDFLAGS=-Wl,-rpath,#{CREW_PREFIX}/lib",
|
|
"--with-ensurepip=install", "--enable-shared"
|
|
system "make"
|
|
end
|
|
|
|
def self.install
|
|
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
|
|
|
# remove static library
|
|
system "find #{CREW_DEST_DIR}/usr/local -name 'libpython*.a' -print | xargs -r rm"
|
|
|
|
# create symbolic links in lib64 for other applications which use libpython
|
|
unless Dir.exist? "#{CREW_DEST_DIR}#{CREW_LIB_PREFIX}"
|
|
system "mkdir -p #{CREW_DEST_DIR}#{CREW_LIB_PREFIX}"
|
|
system "cd #{CREW_DEST_DIR}#{CREW_LIB_PREFIX}; ln -s ../lib/libpython*.so* ."
|
|
end
|
|
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 "TMPDIR=/usr/local/tmp http_proxy= https_proxy= ftp_proxy= make test"
|
|
end
|
|
end
|