blob: fca20e0effa9f346ff48fe8b43300a732011a617 (
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
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# Maintainer: Jelle van der Waa <jelle@vdwaa.nl>
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=('python-pytz' 'python2-pytz')
pkgver=2018.3
pkgrel=1
arch=('any')
url="http://pypi.python.org/pypi/pytz"
license=("MIT")
makedepends=('python' 'python2')
source=("https://pypi.io/packages/source/p/pytz/pytz-${pkgver}.tar.gz")
md5sums=('abb07c09c79f78d7c04f222a550c99ef')
validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
build(){
cd $srcdir
cp -rf pytz-$pkgver pytz2-$pkgver
}
check(){
cd $srcdir/pytz-$pkgver/pytz/tests
python3 test_tzinfo.py
python2 test_tzinfo.py
}
package_python-pytz(){
depends=('python')
pkgdesc="Cross platform time zone library for Python"
cd $srcdir/pytz-$pkgver
# Fix locale https://github.com/ipython/ipython/issues/2057
export LC_ALL=en_US.UTF-8
python3 setup.py install --root=$pkgdir/
install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
}
package_python2-pytz(){
depends=('python2')
pkgdesc="Cross platform time zone library for Python"
cd $srcdir/pytz2-$pkgver
# python 2 fix
# sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' pytz/tzfile.py
python2 setup.py install --root="$pkgdir/"
install -D LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|