2015-02-26 23:21:05 +01:00
|
|
|
from toolchain import Recipe, shprint
|
|
|
|
from os.path import join, exists
|
|
|
|
import sh
|
|
|
|
import os
|
|
|
|
import fnmatch
|
|
|
|
import shutil
|
|
|
|
|
|
|
|
|
|
|
|
class HostSetuptools(Recipe):
|
2016-10-14 16:46:33 +02:00
|
|
|
depends = ["openssl", "hostpython"]
|
2016-02-14 14:49:25 +01:00
|
|
|
archs = ["x86_64"]
|
2016-10-14 10:31:18 +02:00
|
|
|
url = "setuptools"
|
2015-02-26 23:21:05 +01:00
|
|
|
|
|
|
|
def prebuild_arch(self, arch):
|
|
|
|
hostpython = sh.Command(self.ctx.hostpython)
|
|
|
|
sh.curl("-O", "https://bootstrap.pypa.io/ez_setup.py")
|
2016-10-14 10:31:18 +02:00
|
|
|
shprint(hostpython, "./ez_setup.py")
|
2016-10-14 16:46:33 +02:00
|
|
|
# Extract setuptools egg and remove .pth files. Otherwise subsequent
|
|
|
|
# python package installations using setuptools will raise exceptions.
|
|
|
|
# Setuptools version 28.3.0
|
|
|
|
site_packages_path = join(
|
|
|
|
self.ctx.dist_dir, 'hostpython',
|
|
|
|
'lib', 'python2.7', 'site-packages')
|
|
|
|
os.chdir(site_packages_path)
|
|
|
|
with open('setuptools.pth', 'r') as f:
|
|
|
|
setuptools_egg_path = f.read().strip('./').strip('\n')
|
|
|
|
unzip = sh.Command('unzip')
|
|
|
|
shprint(unzip, setuptools_egg_path)
|
|
|
|
os.remove(setuptools_egg_path)
|
|
|
|
os.remove('setuptools.pth')
|
|
|
|
os.remove('easy-install.pth')
|
|
|
|
shutil.rmtree('EGG-INFO')
|
2015-02-26 23:21:05 +01:00
|
|
|
|
2016-02-14 14:49:25 +01:00
|
|
|
recipe = HostSetuptools()
|