summarylogtreecommitdiffstats
path: root/seafile-server.install
blob: 9855216dec964b5b89975f558e550793b60d3781 (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
71
72
73
74
75
76
77
78
79
80
81
82
## arg 1:  the new package version
pre_install() {
	virtualenv2 --system-site-packages /usr/lib/seafile/seafileenv
	virtualenv2 --relocatable /usr/lib/seafile/seafileenv
	source /usr/lib/seafile/seafileenv/bin/activate

	pip install pip

	# Dependencies as per
	# http://manual.seafile.com/build_seafile/server.html
	pip install "django==1.5.2"
	pip install "Djblets==0.6.14" --no-deps --allow-external Djblets --allow-unverified Djblets
	# sqlite3 module should be included in python distribution
	pip install simplejson
	# Pillow as replacement for PIL
	pip install Pillow
	pip install chardet
	pip install "gunicorn==18"
	pip install "django-compressor==1.4"
	pip install "django-statici18n==1.1.2"
	pip install six
	pip install python-dateutil

	# Additional dependencies
	pip install django-pipeline

	deactivate
}

#pacman complains if these functions don't exist, so we might as well
#appease it.

## arg 1:  the new package version
post_install() {
  echo " " > /dev/null
}

## arg 1:  the new package version
## arg 2:  the old package version
pre_upgrade() {
	virtualenv2 --system-site-packages /usr/lib/seafile/seafileenv
	virtualenv2 --relocatable /usr/lib/seafile/seafileenv
	source /usr/lib/seafile/seafileenv/bin/activate

	pip install --upgrade pip

	# Dependencies as per
	# http://manual.seafile.com/build_seafile/server.html
	pip install --upgrade "django==1.5.2"
	pip install --upgrade "Djblets==0.6.14" --no-deps --allow-external Djblets --allow-unverified Djblets
	# sqlite3 module should be included in python distribution
	pip install --upgrade simplejson
	# Pillow as replacement for PIL
	pip install --upgrade Pillow
	pip install --upgrade chardet
	pip install --upgrade "gunicorn==18"
	pip install "django-compressor==1.4"
	pip install "django-statici18n==1.1.2"
	pip install --upgrade six
	pip install --upgrade python-dateutil

	# Additional dependencies
	pip install --upgrade django-pipeline

	deactivate
}

## arg 1:  the new package version
## arg 2:  the old package version
post_upgrade() {
  echo " " > /dev/null
}

## arg 1:  the old package version
pre_remove() {
  echo " " > /dev/null
}

## arg 1:  the old package version
post_remove() {
	rm -rf /usr/lib/seafile/seafileenv
}