blob: 1a8984b9b5aa3180b36537969c1f676d1e0a917c (
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
|
# Maintainer: Junxuan Liao <mikeljx at 126 dot com>
# Contributor: Carl Smedstad <carl.smedstad at protonmail dot com>
_pkgname=dotbot
pkgname="$_pkgname"-git
pkgver=1.20.1.r6.g7202065
pkgrel=1
pkgdesc="A tool that bootstraps your dotfiles"
arch=(any)
url="https://github.com/anishathalye/dotbot"
license=(MIT)
depends=(
python
python-yaml
)
provides=($_pkgname)
conflicts=($_pkgname)
makedepends=(
git
python-build
python-installer
python-setuptools
python-wheel
)
checkdepends=(
python-pytest
)
source=("git+$url.git")
sha256sums=('SKIP')
_archive="$_pkgname"
pkgver() {
cd "$_archive"
git describe --always --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$_archive"
python -m build --wheel --no-isolation
}
_check() {
cd "$_archive"
rm -rf tmp_install
_site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
python -m installer --destdir=tmp_install dist/*.whl
export PYTHONPATH="$PWD/tmp_install/$_site_packages"
pytest
}
package() {
cd "$_archive"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE.md
}
|