summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9f61301a0e4cb1a1772f7f26d511501608ebe15e (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
74
75
76
77
78
79
80
81
82
83
# SPDX-License-Identifier: AGPL-3.0
#
# Maintainer:  Pellegrino Prevete <cGVsbGVncmlub3ByZXZldGVAZ21haWwuY29tCg== | base -d>
# Maintainer:  Truocolo <truocolo@aol.com>
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>

_py="python2"
_py3="python"
_pkg="tomli-w"
pkgname="${_py}-${_pkg}"
pkgver=1.0.0
pkgrel=6
pkgdesc="A lil' TOML writer"
_http="https://github.com"
_ns="hukkin"
url="${_http}/${_ns}/${_pkg}"
license=(
  MIT
)
arch=(
  any
)
depends=(
  "${_py}"
)
makedepends=(
  git
  # "${_py}-build"
  # "${_py}-flit-core"
  # "${_py}-installer"
)
checkdepends=(
  # "${_py}-pytest"
  "${_py3}-pytest"
  "${_py3}-tomli"
)
_tag=19099125f32e7c491603e393263754262b356956
source=(
  "git+${url}.git#tag=${_tag}"
)
b2sums=(
  SKIP
)

pkgver() {
  cd \
    "${_pkg}"
  git \
    describe \
    --tags
}

build() {
  cd "${_pkg}"
  "${_py}" \
    -m \
      build \
      --wheel \
      --no-isolation
}

check() {
  cd \
    "${_pkg}"
  "${_py}" \
    -m \
      pytest
}

package() {
  "${_py}" \
    -m \
      installer \
      --destdir="${pkgdir}" \
      "${_pkg}/dist/"*".whl"
  install \
    -Dm 644 \
    "${_pkg}/LICENSE" \
    -t \
    "${pkgdir}/usr/share/licenses/${_pkg}"
}

# vim:set sw=2 sts=-1 et: