Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
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.
|
|
|
import 'compile/python'
|
|
|
|
|
|
|
|
name=setuptools
|
|
|
|
version=25.2.0
|
|
|
|
update_url="https://pypi.python.org/pypi/$name"
|
|
|
|
update_names="$name-$version.tar.gz#md5="
|
|
|
|
|
|
|
|
dlextract "https://pypi.python.org/packages/9f/32/81c324675725d78e7f6da777483a3453611a427db0145dfb878940469692/$name-$version.tar.gz" \
|
|
|
|
'a0dbb65889c46214c691f6c516cf959c'
|
|
|
|
header_end
|
|
|
|
|
|
|
|
cd "$name-$version"
|
|
|
|
|
|
|
|
# Don't install the regular easy_install, as it conflicts with python 2
|
|
|
|
sed -i -e '/easy_install =/d' setup.py
|
|
|
|
|
|
|
|
compile_python 3
|
|
|
|
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et:
|