blob: 44c9a54479bc02d3083ec371467929adaa1887e4 (
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
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer: Giovanni Harting <539@idlegandalf.com>
pkgname=thumbor
pkgver=7.7.4
pkgrel=2
pkgdesc='open-source photo thumbnail service'
arch=(x86_64)
url='https://github.com/thumbor/thumbor'
license=(MIT)
depends=(
glibc
python
python-colorama
python-pycurl
python-opencv
python-cairosvg
python-tornado
gifsicle
python-libthumbor
python-derpconf
python-piexif
python-jpegiptc
python-pillow
python-numpy
)
makedepends=(python-setuptools)
checkdepends=(python-pytest python-preggy python-pyssim python-pytz python-sentry_sdk python-redis python-pytest-asyncio)
backup=('etc/thumbor.conf')
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
'thumbor.service'
'arch-config.patch')
b2sums=('5c663f37888bdd9d9002eb3f6b8f7fffb8593b138058174887fef0bd1883a14fa1455ba28b9c4e2814171e7aeb0f946c14fb01283fc1fdcbe174d48ba7a37279'
'9f5b837710e47654d522c5791cb5c6e01d6452093837a0c57b7158cbc8be6a7a3b5380efe2e975d6396bc1fd23a5f922f6ede9aa921142fd004ff48381f58db3'
'7f84c5e210b21af45b1162fdc80e7016dca8b3c92a4d3ac303f3e35aa6405a476dab26af3840e6cd20e492e814c23380a9838035934adb352c91fcab2fb992ba')
prepare() {
cd $pkgname-$pkgver
# adjust storage/cache paths to match systemd service
patch -p1 < ../arch-config.patch
}
# tests are disabled for now
# many of them are failing or require whole new dependency chains
#check(){
# cd $pkgname-$pkgver
# pytest -vvs \
# --ignore=tests/detectors/test_queued_detector.py \
# --ignore=tests/optimizers/test_gifv.py \
# --ignore=tests/handlers/test_base_handler_with_gifv.py \
# --ignore=tests/metrics/test_statsd_metrics.py \
# --ignore=tests/handlers/test_base_handler_with_result_storage.py
# --deselect integration_tests/pil_test.py::PILTest::test_single_params
#}
build() {
cd $pkgname-$pkgver
python setup.py build_ext -i
}
package() {
install -Dm644 $pkgname-$pkgver/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
install -Dm 644 thumbor.service -t "$pkgdir"/usr/lib/systemd/system/
install -Dm 644 $pkgname-$pkgver/$pkgname/$pkgname.conf -t "$pkgdir"/etc/
cd $pkgname-$pkgver
python setup.py install --root="$pkgdir" --optimize=1
}
# vim:set ts=2 sw=2 et:
|