Go to file
Witek Bedyk d4995336ec Accepting request 800445 from home:jfkw:branches:server:monitoring
- BuildRequires golang(API) instead of go metapackage version range
  * BuildRequires:  golang(API) >= 1.14   from
    BuildRequires:  ( go >= 1.14 with go < 1.15 )

OBS-URL: https://build.opensuse.org/request/show/800445
OBS-URL: https://build.opensuse.org/package/show/server:monitoring/grafana?expand=0&rev=37
2020-05-07 14:05:18 +00:00
_service Accepting request 799304 from home:SchoolGuy:branches:server:monitoring 2020-04-30 16:15:02 +00:00
_servicedata Accepting request 799304 from home:SchoolGuy:branches:server:monitoring 2020-04-30 16:15:02 +00:00
.gitattributes Accepting request 583279 from security:logging 2018-03-07 10:11:57 +00:00
.gitignore Accepting request 583279 from security:logging 2018-03-07 10:11:57 +00:00
grafana-6.7.3.tar.gz Accepting request 799304 from home:SchoolGuy:branches:server:monitoring 2020-04-30 16:15:02 +00:00
grafana-rpmlintrc Accepting request 583279 from security:logging 2018-03-07 10:11:57 +00:00
grafana.changes Accepting request 800445 from home:jfkw:branches:server:monitoring 2020-05-07 14:05:18 +00:00
grafana.spec Accepting request 800445 from home:jfkw:branches:server:monitoring 2020-05-07 14:05:18 +00:00
Makefile Accepting request 786027 from home:ojkastl_buildservice:Branch_grafana 2020-03-19 08:58:44 +00:00
README Accepting request 786027 from home:ojkastl_buildservice:Branch_grafana 2020-03-19 08:58:44 +00:00
vendor.tar.gz Accepting request 799304 from home:SchoolGuy:branches:server:monitoring 2020-04-30 16:15:02 +00:00

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, < 12, yarn and
grunt installed.  To get set up, run:

  # zypper in npm12
  # zypper in obs-service-download_files obs-service-go_modules \
        obs-service-obs_scm
  # 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>