summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fc1059c52541c4885dfd0fe1233c39f518722d3a (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
# Maintainer: Chih-Hsuan Yen <yan12125@gmail.com>

_pkgname=python-buildbot-pkg
pkgname=python-buildbot-pkg-git
pkgdesc="Utilities and common code for building and testing www plugins."
pkgver=1.2.0.r43.g55fc75395
pkgrel=2
arch=('any')
url="https://buildbot.net"
license=("GPL")
depends=('python-setuptools')
makedepends=('git')
checkdepends=('python-twisted')
provides=("$_pkgname=$pkgver")
conflicts=($_pkgname)
source=(git+https://github.com/buildbot/buildbot.git)
sha256sums=('SKIP')

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

check() {
  cd buildbot/pkg

  python test_buildbot_pkg.py
}

package() {
  cd buildbot/pkg
  python setup.py install --root="$pkgdir" --optimize=1
}