mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:54:37 +08:00
60 lines
1.3 KiB
Bash
60 lines
1.3 KiB
Bash
#
|
|
# Platform packages for Chakra, part of chakraos.org
|
|
#
|
|
|
|
pkgbase=python-pytz
|
|
pkgname=(python3-pytz python2-pytz)
|
|
pkgver=2017.2
|
|
pkgrel=1
|
|
arch=('any')
|
|
url="http://pypi.python.org/pypi/pytz"
|
|
license=("MIT")
|
|
makedepends=('python3' '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_python3-pytz(){
|
|
depends=('python3')
|
|
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"
|
|
}
|