wok-next diff python-setuptools/receipt @ rev 21051

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 30 01:34:53 2018 +0200 (2018-11-30)
parents f47adfbeb944
children 1ee5239fdfdc
line diff
     1.1 --- a/python-setuptools/receipt	Sun Sep 23 04:19:29 2018 +0300
     1.2 +++ b/python-setuptools/receipt	Fri Nov 30 01:34:53 2018 +0200
     1.3 @@ -2,7 +2,7 @@
     1.4  
     1.5  ORIGIN="setuptools"
     1.6  PACKAGE="python-setuptools"
     1.7 -VERSION="40.4.2"
     1.8 +VERSION="40.4.3"
     1.9  CATEGORY="python"
    1.10  SHORT_DESC="Easily download, build, install, upgrade, and uninstall Python packages"
    1.11  MAINTAINER="al.bobylev@gmail.com"
    1.12 @@ -11,11 +11,17 @@
    1.13  HOST_ARCH="any"
    1.14  REPOLOGY="python:setuptools"
    1.15  
    1.16 +TARBALL="$ORIGIN-$VERSION.tar.gz"
    1.17 +WGET_URL="https://github.com/pypa/setuptools/archive/v$VERSION.tar.gz"
    1.18 +
    1.19  BUILD_DEPENDS="python python3"
    1.20  SPLIT="${PACKAGE/python/python3}:3"
    1.21  
    1.22  compile_rules() {
    1.23 -	pip$SET install --no-compile --root=$install $ORIGIN==$VERSION
    1.24 +	python$SET bootstrap.py &&
    1.25 +	python$SET -B setup.py install --root=$install
    1.26 +
    1.27 +	find $install -type f -exec chmod g-w '{}' \; # 664->644
    1.28  }
    1.29  
    1.30  genpkg_rules() {