Package: wims / 1:4.15d~dfsg1-3

dfsg-scripts.patch Patch series | download
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
Index: wims-4.15b~dfsg1/dfsg-scripts/edit_area.sh
===================================================================
--- /dev/null
+++ wims-4.15b~dfsg1/dfsg-scripts/edit_area.sh
@@ -0,0 +1,57 @@
+#!/bin/sh
+# what-input.dfsg
+# This script can be used with two switches:
+#
+# --makesrc <path> this one tells a path, where something from a third party
+#                  can be installed
+# --install <path> that one make all actions necessay at install time when
+#                  the binary packages are built. path is usually DESTDIR
+
+githubRepo=https://github.com/cdolivet/EditArea
+tag=v0.8.2
+pkgdir=EditArea-0.8.2
+sha1sum=138df7ee51de635347966f5df40f114296ab898c
+
+if [ "$1" = "--makesrc" ]; then
+    pkgroot=$2
+    rm -rf ${pkgroot}/wims/public_html/scripts/js/edit_area/edit_area_full.js
+    mkdir -p ${pkgroot}/third-parties
+    cd ${pkgroot}/third-parties
+    wget ${githubRepo}/archive/${tag}.tar.gz
+    if echo "${sha1sum} ${tag}.tar.gz" | sha1sum --check --quiet; then
+	echo "Checked ${tag}.tar.gz OK"
+    else
+	echo "Mismatch in the checksum of ${tag}.tar.gz"
+	exit 1
+    fi
+    tar xzf ${tag}.tar.gz
+    rm -f ${tag}.tar.gz
+    # delete uglified files
+    wd=${pwd}
+    cd ${pkgdir}/edit_area
+    rm -f edit_area_full.*
+    # there are uglified files like extended_php_list.js there.
+    cd ${wd}
+    cd ${pkgdir}
+    rm -rf _devel
+fi
+
+if [ "$1" = "--install" ]; then
+    DESTDIR=$2
+    # cd to the directory unfolded from
+    #
+    dest=${DESTDIR}/var/lib/wims/public_html/scripts/js/edit_area
+    mkdir -p $(dirname ${dest})
+    rm -rf ${dest}
+    cp -a third-parties/${pkgdir}/edit_area ${dest}
+    find ${dest} -type f | xargs chmod 644
+    # compile the source files to edit_area_full.js
+    cd ${dest}
+    php edit_area_compressor.php > /dev/null
+    if [ -f edit_area_full.js ]; then
+	echo "compiled edit_area_full.js successfully"
+    else
+	echo "could not compile edit_area_full.js"
+	exit 1
+    fi
+fi
Index: wims-4.15b~dfsg1/dfsg-scripts/jquery.mb.extruder.sh
===================================================================
--- /dev/null
+++ wims-4.15b~dfsg1/dfsg-scripts/jquery.mb.extruder.sh
@@ -0,0 +1,60 @@
+#!/bin/sh
+# jquery.mb.extruder.dfsg
+# This script can be used with two switches:
+#
+# --makesrc <path> this one tells a path, where something from a third party
+#                  can be installed
+# --install <path> that one make all actions necessay at install time when
+#                  the binary packages are built. path is usually DESTDIR
+
+githubRepo=https://github.com/pupunzi/jquery.mb.extruder
+tag=2.6.0
+pkgdir=jquery.mb.extruder-2.6.0
+sha1sum=1408525305d52e4a339135074582e82725d9ad77
+
+if [ "$1" = "--makesrc" ]; then
+    pkgroot=$2
+    rm -rf ${pkgroot}/wims/public_html/scripts/js/bower_components/jquery.mb.extruder
+    mkdir -p ${pkgroot}/third-parties
+    cd ${pkgroot}/third-parties
+    wget ${githubRepo}/archive/${tag}.tar.gz
+    if echo "${sha1sum} ${tag}.tar.gz" | sha1sum --check --quiet; then
+	echo "Checked ${tag}.tar.gz OK"
+    else
+	echo "Mismatch in the checksum of ${tag}.tar.gz"
+	exit 1
+    fi
+    tar xzf ${tag}.tar.gz
+    rm -f ${tag}.tar.gz
+    # beautify files (which were not completely ugly, just space-compressed)
+    cd ${pkgdir}/inc
+    for f in *.js; do
+	uglifyjs -b -i 2 $f > tmp && mv tmp $f
+    done
+    mv jquery.hoverIntent.min.js jquery.hoverIntent.js
+fi
+
+if [ "$1" = "--install" ]; then
+    DESTDIR=$2
+    # cd to the directory unfolded from
+    #
+    dest=${DESTDIR}/var/lib/wims/public_html/scripts/js/bower_components/jquery.mb.extruder
+    mkdir -p $(dirname ${dest})
+    rm -rf ${dest}
+    echo "cp -a third-parties/${pkgdir} ${dest}"
+    cp -a third-parties/${pkgdir} ${dest}
+    rm -rf ${dest}/*.html ${dest}/licenses
+    find ${dest} -type f | xargs chmod 644
+    wd=$(pwd)
+    # a file jquery.hoverIntent.min.js is necessary, we shall replace it
+    # by a symlink to the beautified file jquery.hoverIntent.js
+    cd ${dest}/inc
+    rm -f jquery.hoverIntent.min.js
+    ln -s jquery.hoverIntent.min.js jquery.hoverIntent.js
+    cd ${wd}
+    cd ${dest}/parts
+    # remove privacy-breach-logos
+    for f in extruderLeft.html extruderLeft1.html; do
+	sed 's%.*<img src="http://.*%%' $f > $f.tmp && mv $f.tmp $f
+    done
+fi
Index: wims-4.15b~dfsg1/dfsg-scripts/what-input.sh
===================================================================
--- /dev/null
+++ wims-4.15b~dfsg1/dfsg-scripts/what-input.sh
@@ -0,0 +1,47 @@
+#!/bin/sh
+# what-input.dfsg
+# This script can be used with two switches:
+#
+# --makesrc <path> this one tells a path, where something from a third party
+#                  can be installed
+# --install <path> that one make all actions necessay at install time when
+#                  the binary packages are built. path is usually DESTDIR
+
+githubRepo=https://github.com/ten1seven/what-input
+tag=v3.0.0
+pkgdir=what-input-3.0.0
+sha1sum=84bb7ce41edd258dd48ab26ec796e781dec36cd2
+
+if [ "$1" = "--makesrc" ]; then
+    pkgroot=$2
+    rm -rf ${pkgroot}/wims/public_html/scripts/js/bower_components/what-input
+    mkdir -p ${pkgroot}/third-parties
+    cd ${pkgroot}/third-parties
+    wget ${githubRepo}/archive/${tag}.tar.gz
+    if echo "${sha1sum} ${tag}.tar.gz" | sha1sum --check --quiet; then
+	echo "Checked ${tag}.tar.gz OK"
+    else
+	echo "Mismatch in the checksum of ${tag}.tar.gz"
+	exit 1
+    fi
+    tar xzf ${tag}.tar.gz
+    rm -f ${tag}.tar.gz
+    # delete uglified files
+    cd ${pkgdir}/dist
+    rm -f *.min.*
+fi
+
+if [ "$1" = "--install" ]; then
+    DESTDIR=$2
+    # cd to the directory unfolded from
+    #
+    dest=${DESTDIR}/var/lib/wims/public_html/scripts/js/bower_components/what-input
+    mkdir -p $(dirname ${dest})
+    rm -rf ${dest}
+    cp -a third-parties/${pkgdir} ${dest}
+    rm -rf ${dest}/*.html ${dest}/LICENSE ${dest}/.gitignore
+    find ${dest} -type f | xargs chmod 644
+    # minify what-input.js => what-input.min.js
+    cd ${dest}/dist
+    uglifyjs what-input.js > what-input.min.js
+fi
Index: wims-4.15b~dfsg1/dfsg-scripts/jquery-ui-slider-pips.sh
===================================================================
--- /dev/null
+++ wims-4.15b~dfsg1/dfsg-scripts/jquery-ui-slider-pips.sh
@@ -0,0 +1,47 @@
+#!/bin/sh
+# jquery-ui-slider-pips.sh
+# This script can be used with two switches:
+#
+# --makesrc <path> this one tells a path, where something from a third party
+#                  can be installed
+# --install <path> that one make all actions necessay at install time when
+#                  the binary packages are built. path is usually DESTDIR
+
+githubRepo=https://github.com/simeydotme/jQuery-ui-Slider-Pips
+tag=v1.11.4
+pkgdir=jQuery-ui-Slider-Pips-1.11.4
+sha1sum=16473fb8cceb9443d6b5edd0ef4d866e07ebedf6
+
+if [ "$1" = "--makesrc" ]; then
+    pkgroot=$2
+    rm -rf ${pkgroot}/wims/public_html/scripts/js/bower_components/jquery-ui-slider-pips
+    mkdir -p ${pkgroot}/third-parties
+    cd ${pkgroot}/third-parties
+    wget ${githubRepo}/archive/${tag}.tar.gz
+    if echo "${sha1sum} ${tag}.tar.gz" | sha1sum --check --quiet; then
+	echo "Checked ${tag}.tar.gz OK"
+    else
+	echo "Mismatch in the checksum of ${tag}.tar.gz"
+	exit 1
+    fi
+    tar xzf ${tag}.tar.gz
+    rm -f ${tag}.tar.gz
+    # delete uglified files
+    cd ${pkgdir}/dist
+    rm -f *.min.*
+fi
+
+if [ "$1" = "--install" ]; then
+    DESTDIR=$2
+    # cd to the directory unfolded from
+    #
+    dest=${DESTDIR}/var/lib/wims/public_html/scripts/js/bower_components/jquery-ui-slider-pips
+    mkdir -p $(dirname ${dest})
+    rm -rf ${dest}
+    cp -a third-parties/${pkgdir} ${dest}
+    find ${dest} -type f | xargs chmod 644
+    # minify what-input.js => what-input.min.js
+    cd ${dest}/dist
+    uglifyjs jquery-ui-slider-pips.js  > jquery-ui-slider-pips.min.js
+    ln -s jquery-ui-slider-pips.min.css jquery-ui-slider-pips.css
+fi
Index: wims-4.15b~dfsg1/dfsg-scripts/geogebra.sh
===================================================================
--- /dev/null
+++ wims-4.15b~dfsg1/dfsg-scripts/geogebra.sh
@@ -0,0 +1,24 @@
+#!/bin/sh
+# geogebra.sh
+# This script can be used with two switches:
+#
+# --makesrc <path> this one tells a path, where something from a third party
+#                  can be installed
+# --install <path> that one make all actions necessay at install time when
+#                  the binary packages are built. path is usually DESTDIR
+
+githubRepo=https://github.com/ten1seven/what-input
+tag=v3.0.0
+pkgdir=what-input-3.0.0
+sha1sum=84bb7ce41edd258dd48ab26ec796e781dec36cd2
+
+if [ "$1" = "--makesrc" ]; then
+    pkgroot=$2
+    # beautify the file deployggb.js
+    cd ${pkgroot}/wims/public_html/scripts/js/geogebra
+    uglifyjs -b -i2 deployggb.js > tmp && mv tmp deployggb.js
+fi
+
+if [ "$1" = "--install" ]; then
+    DESTDIR=$2
+fi