mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-dateutils
|
|
_pkgname=dateutils
|
|
pkgver=0.6.6
|
|
pkgrel=0
|
|
pkgdesc="Various Python utilities for working with date and datetime objects"
|
|
url="https://pypi.python.org/pypi/dateutils"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python2"
|
|
depends_dev=""
|
|
makedepends="python2-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python2 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="2ba7fcac03635f1f1cad0d94d785001b dateutils-0.6.6.tar.gz"
|
|
sha256sums="c94a8e77d743abac79ed91f99f5ef594a972a527e05145cbb7aba59beced8a71 dateutils-0.6.6.tar.gz"
|
|
sha512sums="80602efbf28078482d123642340afe071e23663cd8432a7f84740be8f2fd08c839525771ba59d8cae149c99a6dcd40789064c3ac405f5f251bec894e6a7d28b3 dateutils-0.6.6.tar.gz"
|