|
2 | 2 | # https://github.com/kernelci/kci-dev |
3 | 3 |
|
4 | 4 | pkgname=kci-dev |
5 | | -pkgver=0.1.9 |
| 5 | +pkgver=0.1.10 |
6 | 6 | pkgrel=1 |
7 | 7 | pkgdesc='Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI' |
8 | 8 | arch=('any') |
9 | 9 | url='https://github.com/kernelci/kci-dev' |
10 | 10 | license=('LGPL-2.1-or-later') |
11 | 11 | depends=( |
12 | | - 'python>=3.10' |
13 | | - 'python-click' |
14 | | - 'python-requests' |
15 | | - 'python-gitpython' |
16 | | - 'python-yaml' |
17 | | - 'python-tabulate' |
18 | | - 'python-matplotlib' |
| 12 | + 'python>=3.10' |
| 13 | + 'python-click' |
| 14 | + 'python-requests' |
| 15 | + 'python-gitpython' |
| 16 | + 'python-yaml' |
| 17 | + 'python-tabulate' |
| 18 | + 'python-matplotlib' |
19 | 19 | ) |
20 | 20 | makedepends=( |
21 | | - 'python-build' |
22 | | - 'python-installer' |
23 | | - 'python-wheel' |
24 | | - 'python-poetry-core' |
| 21 | + 'python-build' |
| 22 | + 'python-installer' |
| 23 | + 'python-wheel' |
| 24 | + 'python-poetry-core' |
25 | 25 | ) |
26 | 26 | optdepends=( |
27 | | - 'python-mplcursors: interactive cursor support for plots (AUR)' |
28 | | - 'bash-completion: bash completion support' |
| 27 | + 'python-mplcursors: interactive cursor support for plots (AUR)' |
| 28 | + 'bash-completion: bash completion support' |
29 | 29 | ) |
30 | 30 | source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kernelci/kci-dev/archive/refs/tags/v${pkgver}.tar.gz") |
31 | 31 | sha256sums=('SKIP') |
32 | 32 |
|
33 | 33 | build() { |
34 | | - cd "${pkgname}-${pkgver}" |
35 | | - python -m build --wheel --no-isolation |
| 34 | + cd "${pkgname}-${pkgver}" |
| 35 | + python -m build --wheel --no-isolation |
36 | 36 | } |
37 | 37 |
|
38 | 38 | package() { |
39 | | - cd "${pkgname}-${pkgver}" |
40 | | - python -m installer --destdir="${pkgdir}" dist/*.whl |
| 39 | + cd "${pkgname}-${pkgver}" |
| 40 | + python -m installer --destdir="${pkgdir}" dist/*.whl |
41 | 41 |
|
42 | | - # Shell completions |
43 | | - install -Dm644 completions/kci-dev-completion.bash \ |
44 | | - "${pkgdir}/usr/share/bash-completion/completions/kci-dev" |
45 | | - install -Dm644 completions/_kci-dev \ |
46 | | - "${pkgdir}/usr/share/zsh/site-functions/_kci-dev" |
47 | | - install -Dm644 completions/kci-dev.fish \ |
48 | | - "${pkgdir}/usr/share/fish/vendor_completions.d/kci-dev.fish" |
| 42 | + # Shell completions |
| 43 | + install -Dm644 completions/kci-dev-completion.bash \ |
| 44 | + "${pkgdir}/usr/share/bash-completion/completions/kci-dev" |
| 45 | + install -Dm644 completions/_kci-dev \ |
| 46 | + "${pkgdir}/usr/share/zsh/site-functions/_kci-dev" |
| 47 | + install -Dm644 completions/kci-dev.fish \ |
| 48 | + "${pkgdir}/usr/share/fish/vendor_completions.d/kci-dev.fish" |
49 | 49 |
|
50 | | - # License and documentation |
51 | | - install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" |
52 | | - install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" |
| 50 | + # License and documentation |
| 51 | + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" |
| 52 | + install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" |
53 | 53 | } |
0 commit comments