blob: eef2a956a615507227c9ecc434dfdd6a538abd9f (
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
66
67
68
69
70
71
72
|
# Maintainer: George Tsiamasiotis <gtsiam@windowslive.com>
pkgname=tractor
pkgver=5.0.0
pkgrel=1
pkgdesc='Setup an onion routing proxy'
arch=(any)
url='https://framagit.org/tractor/tractor/'
license=('GPL-3.0-or-later')
depends=(
python
python-gobject
python-fire
python-pysocks
python-stem
glib2
tor
dconf
)
makedepends=(
python-build
python-setuptools
python-installer
)
checkdepends=(
python-nose
gsettings-desktop-schemas
)
optdepends=(
'carburetor: Graphical settings app using GTK'
)
source=("$pkgname-$pkgver.tar.gz::https://framagit.org/tractor/tractor/-/archive/$pkgver/tractor-$pkgver.tar.gz"
"fix-tests.patch")
sha256sums=('c5bece79f9771c6a68788198c3b852b2dce311b1297709b76f78f680e5a9fdc8'
'784b1387805d670adf8e06327c4b172ca09241770853901745fef73066d41290')
prepare() {
cd "$pkgname-$pkgver"
patch -Np1 -i "$srcdir/fix-tests.patch"
}
build() {
cd "$pkgname-$pkgver"
python -m build --wheel --no-isolation
}
check() {
cd "$pkgname-$pkgver"
nosetests
}
package() {
cd "$pkgname-$pkgver"
# Install python package
python -m installer --destdir="$pkgdir" dist/*.whl
# Install gschema
install -Dm0644 -t "$pkgdir/usr/share/glib-2.0/schemas" src/tractor/tractor.gschema.xml
# Install man page
install -Dm0644 -t "$pkgdir/usr/share/man/man1" data/tractor.1
# Install bash completions
install -Dm0644 -t "$pkgdir/usr/share/bash-completion/completions/tractor" data/completion/bash/tractor
}
|