aboutsummaryrefslogtreecommitdiffstats
path: root/main/py3-setuptools/APKBUILD
blob: 1320de81b9b6377b92a5a0bb01ba390e63c568f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Contributor: Andrew Manison <amanison@anselsystems.com>
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=py3-setuptools
_pkgname=${pkgname#py3-}
pkgver=46.1.3
pkgrel=0
pkgdesc="Collection of enhancements to the Python3 distutils"
options="!check" # Tests require packages out of main/
url="https://pypi.python.org/pypi/setuptools"
arch="noarch"
license="MIT"
depends="python3 py3-ordered-set py3-appdirs py3-packaging"
source="$_pkgname-$pkgver.tar.gz::https://github.com/pypa/$_pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver

provides="py-setuptools=$pkgver-r$pkgrel" # Backwards compatibility
replaces="py-setuptools" # Backwards compatiblity

export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0

prepare() {
	default_prepare

	# Unbundle
	rm -rf pkg_resources/extern pkg_resources/_vendor \
		setuptools/extern setuptools/_vendor

	# Upstream devendoring logic is badly broken, see:
	# https://bugs.archlinux.org/task/58670
	# https://github.com/pypa/pip/issues/5429
	# https://github.com/pypa/setuptools/issues/1383
	# The simplest fix is to simply rewrite import paths to use the canonical
	# location in the first place
	for _module in setuptools pkg_resources '' ; do
		find . -name \*.py -exec sed -i \
			-e 's/from '$_module.extern' import/import/' \
			-e 's/from '$_module.extern'./from /' \
			-e 's/import '$_module.extern'./import /' \
			-e "s/__import__('$_module.extern./__import__('/" \
			{} +
	done

	# Fix post-release tag
	sed -e '/tag_build = .post/d' \
		-e '/tag_date = 1/d' \
		-i setup.cfg

	# Fix shebang
	sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py

	python3 bootstrap.py
}

build() {
	python3 setup.py build
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
	# we don't provide a non-suffixed easy_install
	rm -f "$pkgdir"/usr/bin/easy_install
}
sha512sums="863dfde80d522c899102a51500b2ade49a6f80a7c41715dbcec7ed92681e24ad044bffb04c2c6673ccdc9865ad9749911fd0d598a1651a2d3ef0625b19425f55  setuptools-46.1.3.tar.gz"