forked from pool/grafana
85974d977e
- Update to version 8.3.4 (jsc#PM-3191) - Update changelog - Update license to GNU Affero General Public License v3.0. OBS-URL: https://build.opensuse.org/request/show/949301 OBS-URL: https://build.opensuse.org/package/show/server:monitoring/grafana?expand=0&rev=67
36 lines
1004 B
Makefile
36 lines
1004 B
Makefile
NAME = grafana
|
|
SPEC = $(NAME).spec
|
|
|
|
default: verify-deps clean tar
|
|
|
|
verify-deps:
|
|
@which yarn >/dev/null 2>&1 || ( echo "yarn not found; run \`sudo npm install -g yarn\`" && false )
|
|
|
|
clean:
|
|
rm -f $(NAME)-*.tar $(NAME)-*.tar.gz
|
|
|
|
tar:
|
|
osc service disabledrun
|
|
@version=$$( awk '/^Version:/ {print $$2}' $(SPEC) ) && \
|
|
echo "Package version is $$version" && \
|
|
basename=$(NAME)-$$version && \
|
|
tar=$$basename.tar && \
|
|
tmpdir=$$(mktemp -d -p .) && \
|
|
cd $$tmpdir && \
|
|
gunzip ../$$tar.gz && \
|
|
tar -xf ../$$tar && \
|
|
# recreate tarball explicitly in a format that handles long filenames \
|
|
tar --format=posix -cf ../$$tar $$basename && \
|
|
cd $$basename && \
|
|
# Patches for the JS frontend go after here \
|
|
patch -p1 -i ../../0001-Add-source-code-reference.patch && \
|
|
# End patches section \
|
|
yarn install --immutable && \
|
|
yarn run build && \
|
|
cd .. && \
|
|
echo "Updating $$basename/public in tarball..." && \
|
|
tar -rf ../$$tar $$basename/public && \
|
|
cd .. && \
|
|
gzip $$tar && \
|
|
rm -rf $$tmpdir
|