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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# Maintainer: Joffrey <j-off@live.fr>
# Contributor: eolianoe <eolianoe [at] gmail [DoT] com>
# Contributor: Edvinas Valatka <edacval@gmail.com>
# Contributor: Aaron Lindsay <aaron@aclindsay.com>
pkgname=seahub
pkgver=8.0.6
pkgrel=1
pkgdesc='The web frontend for seafile server'
arch=('any')
url='https://github.com/haiwen/seahub'
license=('Apache')
depends=(
"seafile-server>=$pkgver"
'python-future'
'python-django-statici18n'
'python-django-post-office'
'gunicorn'
'python-mysqlclient'
'python-openpyxl'
'python-qrcode'
'python-django-formtools'
'python-django-simple-captcha'
'python-dateutil'
'python-requests'
'python-pillow'
'python-pyjwt'
'python-pycryptodome'
'python-requests-oauthlib'
'python-django-ranged-response'
)
optdepends=(
'python-wsgidav-seafile: Webdav support'
'python-django-pylibmc: Memcached support'
'ffmpeg: For video thumbnails'
)
# Outdated Python modules, but required by Seahub
_thirdpart=(
'django-2.2.14'
'django-picklefield-2.1.1'
'django-rest-framework-3.11.1'
'django-webpack-loader-0.7.0'
)
source=(
"$pkgname-$pkgver-server.tar.gz::$url/archive/v$pkgver-server.tar.gz"
"${_thirdpart[0],,}.tar.gz::https://github.com/django/${_thirdpart[0]%-*}/archive/${_thirdpart[0]##*-}.tar.gz"
"${_thirdpart[1],,}.tar.gz::https://github.com/gintas/${_thirdpart[1]%-*}/archive/v${_thirdpart[1]##*-}.tar.gz"
"${_thirdpart[2],,}.tar.gz::https://github.com/encode/${_thirdpart[2]%-*}/archive/${_thirdpart[2]##*-}.tar.gz"
"${_thirdpart[3],,}.tar.gz::https://github.com/django-webpack/${_thirdpart[3]%-*}/archive/${_thirdpart[3]##*-}.tar.gz"
'seahub@.service'
'nginx.example.conf'
)
sha256sums=(
'b283b30c452aaf3657e93cd1142740cdb78c44f12fb09d24665015ca184daee2'
'52590ea1a39713cb87cc1f93588867049a84d1985b215ed3884695bae01469ec'
'5985205ec990ad1319e6d238616284b342f018d41a30dc089b76349fb17b15ae'
'513c0da69619e76715a4ac9149d7715751b9c4820a29476cb143f2bb6b5a3d11'
'fef6b13bbd61d682e12f3bd73bb7ac1c398dd0dea22ef2cf34309c6d1078b0d1'
'67bb375871ce908b48bef53277284c9d8f80ee2e733efc89cb66d987647195e4'
'461591ba500d012523d6fdecbcc230461f6fd8d708b92eefdedc8b93b1542171'
)
options=('!strip')
prepare() {
cd "$srcdir/$pkgname-$pkgver-server"
# Remove useless files and directories
rm -rf \
./{CONTRIBUTORS,HACKING,Makefile} \
./{*test*,*dev*,*sh*,README*,pylintrc*,LICENSE*} \
"$(find . -name \*.pyc)"
sed -i -E "/SEAFILE_VERSION/s/[0-9.]+/$pkgver/" ./seahub/settings.py
}
build() {
cd "$srcdir/$pkgname-$pkgver-server"
for locale in ./locale/*/LC_MESSAGES/*.po; do
echo "$locale"
msgfmt -vo "${locale%.po}.mo" "$locale"
done
}
package() {
cd "$srcdir/seahub-$pkgver-server/"
install -dm755 "$pkgdir/usr/share/seafile-server/seahub"
cp -r -p "./"* "$pkgdir/usr/share/seafile-server/seahub/"
# Install third part
for thirdpart in "${_thirdpart[@]}"; do
cd "$srcdir/$thirdpart"
python setup.py install \
--root="$pkgdir/" \
--install-lib="usr/share/seafile-server/$pkgname/thirdpart" \
--optimize=0
done
rm -rf "$pkgdir"/usr/{bin,share/seafile-server/"$pkgname"/thirdpart/*.egg-info}
python -m compileall -f -j 0 -o 1 \
-s "$pkgdir" -p '/' "$pkgdir/usr/share/seafile-server/seahub"
install -Dm644 \
"$srcdir/seahub@.service" \
"$pkgdir/usr/lib/systemd/system/seahub@.service"
install -Dm644 \
"$srcdir/nginx.example.conf" \
"$pkgdir/etc/webapps/$pkgname/nginx.conf"
}
|