Accepting request 740994 from home:ecsos:monitoring

Update to 6.4.3.
Rebase grafana.spec. See grafana.changes.

OBS-URL: https://build.opensuse.org/request/show/740994
OBS-URL: https://build.opensuse.org/package/show/server:monitoring/grafana?expand=0&rev=27
This commit is contained in:
Lars Vogdt
2019-10-27 13:49:03 +00:00
committed by Git OBS Bridge
parent f2c60d0f61
commit a647090d27
15 changed files with 2077 additions and 216 deletions

27
README
View File

@@ -1,27 +0,0 @@
The tarball is generated via the OBS source service, but Grafana
needs to ship the compiled frontend assets as well, which have to
be built by running yarn and grunt inside the source tree (see
https://github.com/grafana/grafana#building-frontend-assets).
This can't be done at build time on OBS, because it involves
downloading and installing packages from the internet, so instead
we have a Makefile which does the following:
- Runs `osc service disabledrun` to get the latest source tarball
- Unpacks the tarball to a temporary directory
- Runs `yarn install --pure-lockfile && grunt release`
- Adds the generated "vendor" and "public" content to the tarball,
then compresses it with xz.
- The tarball can then be used by OBS to build an RPM.
In order for this to work you need to have npm >= 6, yarn and grunt
installed. To get set up, run:
# zypper in npm
# npm install -g yarn
# npm install -g grunt-cli
Then, to package a new release of Grafana, run `make` then `osc ci`
and you should be good.
Please direct any questions to Tim Serong <tserong@suse.com>