mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
updated flexget to 1.2.214, and added two of its dependencies.
tzlocal is updated as-is, apscheduler was also updated
This commit is contained in:
parent
abffbf149f
commit
2f2a6ed1ad
3 changed files with 54 additions and 0 deletions
|
@ -35,6 +35,7 @@ depends=('python2'
|
|||
'python2-tvrage' #AUR#
|
||||
'python2-tmdb3' #AUR#
|
||||
'python2-pynzb' #AUR#
|
||||
'python2-apscheduler' #AUR#
|
||||
# undocumented in FlexGet.egg-info/requires.txt
|
||||
)
|
||||
optdepends=('python2-guppy: for memusage plugin' #AUR#
|
||||
|
|
33
aur/python2-apscheduler/PKGBUILD
Normal file
33
aur/python2-apscheduler/PKGBUILD
Normal file
|
@ -0,0 +1,33 @@
|
|||
# Maintainer: Shanto <shanto@hotmail.com>
|
||||
|
||||
# ALARM Maintainer: Yaron de Leeuw < me@jarondl.net >
|
||||
# upgraded version, and added dependencies.
|
||||
|
||||
pkgname=python2-apscheduler
|
||||
_pkgname=APScheduler
|
||||
pkgver=3.0.1
|
||||
pkgrel=1
|
||||
pkgdesc="Advanced Python Scheduler is a light but powerful in-process task scheduler"
|
||||
arch=(any)
|
||||
url="http://pypi.python.org/pypi/APScheduler"
|
||||
license=('MIT')
|
||||
#groups=()
|
||||
depends=('python2'
|
||||
'python2-pytz'
|
||||
'python2-tzlocal'
|
||||
'python2-futures'
|
||||
'python2-six')
|
||||
#makedepends=()
|
||||
#provides=()
|
||||
#conflicts=()
|
||||
#replaces=()
|
||||
#backup=()
|
||||
options=(!emptydirs)
|
||||
#install=
|
||||
source=("http://pypi.python.org/packages/source/A/APScheduler/APScheduler-$pkgver.tar.gz")
|
||||
package() {
|
||||
cd "$srcdir/$_pkgname-$pkgver"
|
||||
python2 setup.py install --root="$pkgdir/" --optimize=1
|
||||
find $pkgdir -path '*.egg-info/*' -exec chmod 0644 {} \;
|
||||
}
|
||||
md5sums=('7c3687b3dcd645fe9df48e34eb7a7592')
|
20
aur/python2-tzlocal/PKGBUILD
Normal file
20
aur/python2-tzlocal/PKGBUILD
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Maintainer: Étienne Deparis <etienne [at] depar.is>
|
||||
|
||||
pkgname=python2-tzlocal
|
||||
_pkgname=tzlocal
|
||||
pkgver=1.1.1
|
||||
pkgrel=1
|
||||
pkgdesc="Python2 version for tzinfo object for the local timezone"
|
||||
arch=('any')
|
||||
url='https://github.com/regebro/tzlocal'
|
||||
license=('custom')
|
||||
depends=('python2-pytz')
|
||||
makedepends=('python2-setuptools')
|
||||
source=("https://pypi.python.org/packages/source/t/${_pkgname}/${_pkgname}-$pkgver.zip")
|
||||
sha256sums=('696bfd8d7c888de039af6c6fdf86fd52e32508277d89c75d200eb2c150487ed4')
|
||||
|
||||
package() {
|
||||
cd "${_pkgname}-$pkgver"
|
||||
python2 setup.py install --root="$pkgdir"
|
||||
install -Dm0644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
Loading…
Reference in a new issue