You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
593 B
22 lines
593 B
8 years ago
|
import 'compile/python'
|
||
|
|
||
|
name=setuptools
|
||
8 years ago
|
version=30.4.0
|
||
8 years ago
|
update_url="https://github.com/pypa/$name/releases"
|
||
8 years ago
|
|
||
8 years ago
|
define_option 'easy_install-symlink: Install the easy_install symlink (it may conflict with python2)'
|
||
|
|
||
8 years ago
|
dlextract "https://github.com/pypa/$name/archive/v$version.tar.gz" \
|
||
8 years ago
|
'66daca0f27b81ca20a5faa0a70be19e0'
|
||
8 years ago
|
header_end
|
||
|
|
||
|
cd "$name-$version"
|
||
8 years ago
|
|
||
|
# Don't install the regular easy_install, as it conflicts with python 2
|
||
8 years ago
|
option !easy_install-symlink sed -i -e '/easy_install =/d' setup.py
|
||
8 years ago
|
|
||
8 years ago
|
python3 bootstrap.py
|
||
8 years ago
|
compile_python 3
|
||
|
|
||
8 years ago
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|