summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2ee7f349208533c07945165e4251e9c97064fc3e (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
# Maintainer: DanManN <dnahimov@gmail.com>
# Python package author: Kevin McCarthy <me@kevinmccarthy.org>

_pkgname=vcrpy
_author=kevin1024
pkgname=python-$_pkgname-git
pkgver=2.7.r835.0cf11d4
pkgrel=1
pkgdesc="VCR.py simplifies and speeds up tests that make HTTP requests."
arch=('any')
url="https://github.com/$_author/$_pkgname"
license=('')
depends=('python')
makedepends=('')
provides=("python-$_pkgname")
conflicts=("python-$_pkgname")
source=("git+https://github.com/$_author/$_pkgname.git")
md5sums=('SKIP')

prepare() {
  cd "$_pkgname"
  git checkout $(curl https://api.github.com/repos/$_author/$_pkgname/releases/latest | grep tag_name| cut -d '"' -f4)
}

pkgver() {
  cd "$_pkgname"
  printf "%s.r%s.%s" "$(cat setup.py | grep -i version | grep -v '#' | cut -d '"' -f2 | head -n 1)" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
  cd "$_pkgname"
  python setup.py install --root="${pkgdir}/" --optimize=1
  install -Dm644 LICENSE* "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}