2021-08-26 01:36:47 +00:00
|
|
|
# Maintainer: George Rawlinson <grawlinson@archlinux.org>
|
|
|
|
# Contributor: Mark Wagie <mark dot wagie at tutanota dot com>
|
|
|
|
# Contributor: Thomas Andrejak <thomas.andrejak@gmail.com>
|
|
|
|
|
|
|
|
pkgname=python-croniter
|
2022-02-23 08:04:42 +00:00
|
|
|
pkgver=1.3.4
|
2022-01-15 07:39:57 +00:00
|
|
|
pkgrel=1
|
2021-08-26 01:36:47 +00:00
|
|
|
pkgdesc="Provides iteration for the datetime object with a cron like format"
|
|
|
|
arch=('any')
|
|
|
|
url="https://github.com/kiorky/croniter"
|
|
|
|
license=('MIT')
|
2022-02-23 08:04:42 +00:00
|
|
|
depends=('python' 'python-dateutil' 'python-natsort')
|
|
|
|
makedepends=('git' 'python-setuptools')
|
2021-08-26 01:36:47 +00:00
|
|
|
checkdepends=('python-pytest' 'python-pytz')
|
2022-02-23 08:04:42 +00:00
|
|
|
_commit='6642a9bdbd335ef9fc52a92d99a7ba0d97db8ceb'
|
|
|
|
source=("$pkgname::git+$url.git#commit=$_commit")
|
|
|
|
b2sums=('SKIP')
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd "$pkgname"
|
|
|
|
|
|
|
|
git describe --tags | sed 's/^v//'
|
|
|
|
}
|
2021-08-26 01:36:47 +00:00
|
|
|
|
|
|
|
build() {
|
2022-02-23 08:04:42 +00:00
|
|
|
cd "$pkgname"
|
|
|
|
|
2021-08-26 01:36:47 +00:00
|
|
|
python setup.py build
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
2022-02-23 08:04:42 +00:00
|
|
|
cd "$pkgname"
|
|
|
|
|
2021-08-26 01:36:47 +00:00
|
|
|
pytest
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2022-02-23 08:04:42 +00:00
|
|
|
cd "$pkgname"
|
|
|
|
|
2021-08-26 01:36:47 +00:00
|
|
|
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
|
|
|
|
|
|
|
|
# license
|
|
|
|
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" docs/LICENSE
|
|
|
|
|
|
|
|
# documentation
|
|
|
|
install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.rst docs/CHANGES.rst
|
|
|
|
}
|