summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d6f92ab0c175a11c24d3bb9a777f8ae28a94bc0b (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
73
# Maintainer: taotieren <admin@taotieren.com>

pkgname=python-kicadmodtree
pkgver=1.1.2.r2788.ge25970f
pkgrel=1
epoch=
pkgdesc="This repository contains scripts to generate custom KiCAD footprints using python, and a framework which allows us to create custom KiCAD footprint. A big bunch of footprints of the KiCad library was developed using this framework."
arch=('any')
url="https://gitlab.com/kicad/libraries/kicad-footprint-generator"
license=(GPL-3.0-or-later)
groups=()
provides=(${pkgname})
conflicts=(${pkgname})
_pydeps=(
    nptyping
    numpy
    typing_extensions
    yaml
    # AUR
    #     cadquery
    #     ocp
)
depends=(
    nlopt
    python
    "${_pydeps[@]/#/python-}"
)
_pymakedeps=(
    pycodestyle
    build
    installer
    wheel
    setuptools
    sphinx
    sphinx_rtd_theme
    # AUR
    asteval-git
)
makedepends=(git
    "${_pymakedeps[@]/#/python-}")
checkdepends=(python-pytest)
options=('!strip')
source=("$pkgname::git+$url.git")
noextract=()
sha256sums=('SKIP')

pkgver() {
    cd "${srcdir}/${pkgname}"
    (
        set -o pipefail
        git describe --long --tag --abbrev=7 2>/dev/null | sed 's/^v//g;s/\([^-]*-g\)/r\1/;s/-/./g' ||
            printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
    )
}

prepare() {
    git -C "${srcdir}/${pkgname}" clean -dfx
}

build() {
    cd "${srcdir}/${pkgname}"
    python -m build --wheel --no-isolation
}

# check() {
#     cd "${srcdir}/${pkgname}"
#     ./manage.sh tests
# }

package() {
    cd "${srcdir}/${pkgname}"
    python -m installer --destdir="${pkgdir}" dist/*.whl
}