blob: fd3758007fa9c783b9d86155cf36732179974e5e (
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
|
# Maintainer: mark.blakeney at bullet-systems dot net
_pkgname=ptvsd
pkgname=python-$_pkgname
pkgver=4.3.2
pkgrel=4
pkgdesc="Python debugger package for use with Visual Studio and Visual Studio Code"
url="https://github.com/microsoft/$_pkgname"
license=("MIT")
arch=("x86_64")
depends=("python>=3.4")
makedepends=("python-pip" "python-wheel")
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha1sums=('0ea052d12c5f78e676194c8ef3a476fe76d29ea8')
package() {
cd "$srcdir/$_pkgname-$pkgver"
_vers="$pkgver-$pkgrel"
sed -i "/version=/s/=.*/=\'$_vers\',/" setup.py
PIP_CONFIG_FILE=/dev/null pip install \
--root="$pkgdir" \
--isolated \
--ignore-installed \
--no-deps \
--disable-pip-version-check \
--no-python-version-warning \
--no-warn-script-location \
--no-cache-dir \
--no-compile \
--progress-bar=off \
--root-user-action=ignore \
.
local pdir=$(python -c "import site; print(site.getsitepackages()[0])")
local _pkgname="${_pkgname//-/_}"
cd "$pkgdir/$pdir"
rm -f $_pkgname-*.dist-info/direct_url.json
sed -i "/\/direct_url.json,/d" $_pkgname-*.dist-info/RECORD
sed -i "/\"version\":/s/\"[^\"]*\"$/\"$_vers\"/" "$_pkgname/_version.py"
# Compile bytecode. Ignore failures on legacy python2 files ..
python -O -m compileall -qq . || true
}
# vim:set ts=2 sw=2 et:
|