2015-08-04 12:57:38 -05:00
|
|
|
# Version number of loleaflet, no need to be in sync with the loolwsd
|
|
|
|
# one, but do please follow the same even/odd convention for the third
|
|
|
|
# ("micro") part: Between releases odd, even for releases (no other
|
|
|
|
# changes inbetween).
|
2015-05-19 06:29:55 -05:00
|
|
|
|
2016-02-11 14:55:08 -06:00
|
|
|
VERSION=1.5.3
|
2015-05-19 06:29:55 -05:00
|
|
|
|
|
|
|
# Version number of the bundled 'draw' thing
|
|
|
|
DRAW_VERSION=0.2.4
|
|
|
|
|
|
|
|
all:
|
2015-12-04 04:57:11 -06:00
|
|
|
npm install
|
2015-05-19 06:29:55 -05:00
|
|
|
jake build
|
|
|
|
cd plugins/draw-$(DRAW_VERSION) && jake build
|
|
|
|
|
|
|
|
.PHONY: dist
|
2015-05-27 08:30:06 -05:00
|
|
|
dist: all
|
2015-05-20 08:00:47 -05:00
|
|
|
rm -rf loleaflet-$(VERSION)
|
|
|
|
mkdir loleaflet-$(VERSION)
|
2015-05-20 12:46:12 -05:00
|
|
|
cp README loleaflet-$(VERSION)
|
2015-12-03 14:55:14 -06:00
|
|
|
cp reference.html loleaflet-$(VERSION)
|
2016-02-10 13:34:54 -06:00
|
|
|
tar cf - dist plugins/draw-$(DRAW_VERSION)/dist debug/document src/scrollbar src/contextMenu docs spec \
|
2015-12-04 04:14:22 -06:00
|
|
|
node_modules/mocha/mocha.css \
|
|
|
|
node_modules/mocha/mocha.js \
|
|
|
|
node_modules/happen/happen.js \
|
|
|
|
| (cd loleaflet-$(VERSION) && tar xf -)
|
2016-02-08 10:20:05 -06:00
|
|
|
util/po2json.py po/*.po
|
|
|
|
mv po/*.json loleaflet-$(VERSION)/dist/l10n
|
2015-05-20 08:00:47 -05:00
|
|
|
tar cfz loleaflet-$(VERSION).tar.gz loleaflet-$(VERSION)
|
|
|
|
rm -rf loleaflet-$(VERSION)
|
2015-05-20 12:46:12 -05:00
|
|
|
|
2016-02-08 10:20:05 -06:00
|
|
|
pot:
|
2016-02-15 03:41:28 -06:00
|
|
|
xgettext --keyword=_ --output=po/loleaflet-ui.pot dist/toolbar/toolbar.js src/control/Control.Tabs.js \
|
2016-02-15 03:27:33 -06:00
|
|
|
src/core/Socket.js src/control/Control.Presentation.js
|
2016-02-08 10:20:05 -06:00
|
|
|
html2po --pot --input=dist/loleaflet-help.html --output=po/loleaflet-help.pot
|
|
|
|
|
|
|
|
l10n: pot
|
2016-02-15 03:41:28 -06:00
|
|
|
for i in po/ui-*.po; do pot2po --input=po/loleaflet-ui.pot --template=$$i --output=$$i.new; mv $$i.new $$i;done
|
2016-02-08 10:20:05 -06:00
|
|
|
for i in po/help-*.po; do pot2po --input=po/loleaflet-help.pot --template=$$i --output=$$i.new; mv $$i.new $$i;done
|
2016-02-15 03:41:28 -06:00
|
|
|
rm po/loleaflet-ui.pot
|
2016-02-08 10:20:05 -06:00
|
|
|
rm po/loleaflet-help.pot
|
|
|
|
|
2015-07-07 02:57:58 -05:00
|
|
|
loleaflet.spec: loleaflet.spec.in Makefile
|
2015-05-20 12:46:12 -05:00
|
|
|
sed -e 's/@PACKAGE_VERSION@/$(VERSION)/g' <loleaflet.spec.in >loleaflet.spec
|
2015-09-11 02:41:23 -05:00
|
|
|
|
|
|
|
spec/data/load-test:
|
|
|
|
if [ ! -d spec/data/load_test ]; then \
|
|
|
|
mkdir -p spec/data/load_test; \
|
|
|
|
for i in $$(seq 1 125); \
|
|
|
|
do \
|
|
|
|
cp spec/data/eval.odt spec/data/load_test/eval$$i.odt; \
|
|
|
|
cp spec/data/eval.odp spec/data/load_test/eval$$i.odp; \
|
|
|
|
cp spec/data/eval.ods spec/data/load_test/eval$$i.ods; \
|
|
|
|
cp spec/data/eval.odg spec/data/load_test/eval$$i.odg; \
|
|
|
|
done; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
load-test: spec/data/load-test
|
|
|
|
rm -rf load_test_out; \
|
|
|
|
mkdir load_test_out; \
|
|
|
|
for i in $$(seq 1 20); \
|
|
|
|
do \
|
|
|
|
mocha spec/headlessLoadTest.js > load_test_out/$$i.out 2>&1 & \
|
|
|
|
done;
|