blob: 3e77d2a8ce6787f30f435dfa8c3e6be80bff7a15 (
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
|
# 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=('python2-pytz')
pkgver=2017.2
pkgrel=1
arch=('any')
url="http://pypi.python.org/pypi/pytz"
license=("MIT")
makedepends=('python2')
source=(https://pypi.python.org/packages/a4/09/c47e57fc9c7062b4e83b075d418800d322caa87ec0ac21e6308bd3a2d519/pytz-2017.2.zip{,.asc})
md5sums=('f89bde8a811c8a1a5bac17eaaa94383c'
'SKIP')
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"
}
|