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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
Index: wims-4.27a~dfsg1/dfsg-scripts/jquery.mb.extruder.sh
===================================================================
--- /dev/null
+++ wims-4.27a~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
+ js-beautify -w 80 -s 2 -n $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.js jquery.hoverIntent.min.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.27a~dfsg1/dfsg-scripts/what-input.sh
===================================================================
--- /dev/null
+++ wims-4.27a~dfsg1/dfsg-scripts/what-input.sh
@@ -0,0 +1,46 @@
+#!/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/external/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/external/what-input
+ rm -rf ${dest}
+ mkdir -p ${dest}
+ cp -a third-parties/${pkgdir}/dist/* ${dest}
+ find ${dest} -type f | xargs chmod 644
+ # minify what-input.js => what-input.min.js
+ cd ${dest}
+ terser what-input.js > what-input.min.js
+fi
Index: wims-4.27a~dfsg1/dfsg-scripts/jquery-ui-slider-pips.sh
===================================================================
--- /dev/null
+++ wims-4.27a~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
+ js-beautify -w 80 -s 2 -n 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.27a~dfsg1/dfsg-scripts/geogebra.sh
===================================================================
--- /dev/null
+++ wims-4.27a~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
+ js-beautify -w80 -s2 -n deployggb.js > tmp && mv tmp deployggb.js
+fi
+
+if [ "$1" = "--install" ]; then
+ DESTDIR=$2
+fi
Index: wims-4.27a~dfsg1/dfsg-scripts/tablesort.sh
===================================================================
--- /dev/null
+++ wims-4.27a~dfsg1/dfsg-scripts/tablesort.sh
@@ -0,0 +1,47 @@
+#!/bin/sh
+# tablesort.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/tristen/tablesort
+tag=v5.0.2
+pkgdir=tablesort-5.0.2
+sha1sum=ae02819eb480374e869fb69dd93b756a7a6abd8f
+
+if [ "$1" = "--makesrc" ]; then
+ pkgroot=$2
+ rm -f ${pkgroot}/wims/public_html/scripts/js/tablesort.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
+ rm -rf ${pkgdir}/dist
+ # delete a file which sneaks in javascript from
+ # https://d2dq2ahtl5zl1z.cloudfront.net/analytics.js
+ rm -f ${pkgdir}/demo/_layouts/default.html
+ # delete the test directory which contains long lines
+ rm -rf ${pkgdir}/test
+
+fi
+
+if [ "$1" = "--install" ]; then
+ DESTDIR=$2
+ # cd to the directory unfolded from
+ #
+ dest=${DESTDIR}/var/lib/wims/public_html/scripts/js
+ mkdir -p ${dest}
+ cp third-parties/${pkgdir}/tablesort.js ${dest}
+ cp third-parties/${pkgdir}/sorts/tablesort.number.js ${dest}
+fi
Index: wims-4.27a~dfsg1/dfsg-scripts/foundation.sh
===================================================================
--- /dev/null
+++ wims-4.27a~dfsg1/dfsg-scripts/foundation.sh
@@ -0,0 +1,43 @@
+#!/bin/sh
+# foundation.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/foundation/foundation-sites
+tag=refs/tags/v6.6.3
+pkgdir=foundation-sites-6.6.3
+sha1sum=267acd80a26c40143c0acbf7cc344fa9ce6cdc59
+
+if [ "$1" = "--makesrc" ]; then
+ pkgroot=$2
+ rm -rf ${pkgroot}/wims/public_html/themes/_inc/foundation
+ 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/html/themes/_inc/foundation
+ rm -rf ${dest}
+ mkdir -p ${dest}
+ cp third-parties/${pkgdir}/dist/js/plugins/* ${dest}
+ find ${dest} -type f | xargs chmod 644
+fi
|