[arch-commits] Commit in prometheus/repos (4 files)

Jelle van der Waa jelle at archlinux.org
Tue Jan 7 10:47:30 UTC 2020


    Date: Tuesday, January 7, 2020 @ 10:47:29
  Author: jelle
Revision: 372704

archrelease: copy trunk to community-x86_64

Added:
  prometheus/repos/community-x86_64/
  prometheus/repos/community-x86_64/PKGBUILD
    (from rev 372703, prometheus/trunk/PKGBUILD)
  prometheus/repos/community-x86_64/prometheus.service
    (from rev 372703, prometheus/trunk/prometheus.service)
  prometheus/repos/community-x86_64/prometheus.sysusers
    (from rev 372703, prometheus/trunk/prometheus.sysusers)

---------------------+
 PKGBUILD            |   72 ++++++++++++++++++++++++++++++++++++++++++++++++++
 prometheus.service  |   28 +++++++++++++++++++
 prometheus.sysusers |    1 
 3 files changed, 101 insertions(+)

Copied: prometheus/repos/community-x86_64/PKGBUILD (from rev 372703, prometheus/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2020-01-07 10:47:29 UTC (rev 372704)
@@ -0,0 +1,72 @@
+# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
+
+pkgname=prometheus
+pkgver=2.15.2
+pkgrel=1
+
+pkgdesc='An open-source systems monitoring and alerting toolkit'
+url='https://prometheus.io'
+arch=('x86_64')
+license=('Apache')
+
+depends=('glibc')
+makedepends=('go-pie' 'git' 'bzr' 'yarn')
+
+backup=('etc/prometheus/prometheus.yml')
+
+source=("prometheus-v$pkgver.tar.gz::https://github.com/prometheus/prometheus/archive/v$pkgver.tar.gz"
+        prometheus.service
+        prometheus.sysusers)
+
+sha256sums=('2ba37bced3e90c5e7dd3248918f13f2f3444de748cfe413b0a09f82532c3c553'
+            '7f0e6829300032c83912da9d89001c6d03f7f0fe20c4277294129c4ac03c83f3'
+            '2747fabb4e56b808361eb7dd7acf9729ab8973d1ebe2f857dd56f6c71f71e45f')
+
+build() {
+  cd prometheus-$pkgver
+
+  LDFLAGS="-extldflags $LDFLAGS \
+    -X github.com/prometheus/common/version.Version=$pkgver \
+    -X github.com/prometheus/common/version.Revision=$pkgver \
+    -X github.com/prometheus/common/version.Branch=tarball \
+    -X github.com/prometheus/common/version.BuildUser=someone at builder \
+    -X github.com/prometheus/common/version.BuildDate=$(date -d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)"
+
+  make assets
+  go build \
+    -gcflags "all=-trimpath=$PWD" \
+    -asmflags "all=-trimpath=$PWD" \
+    -ldflags "$LDFLAGS" \
+    ./cmd/prometheus
+  go build \
+    -gcflags "all=-trimpath=$PWD" \
+    -asmflags "all=-trimpath=$PWD" \
+    -ldflags "$LDFLAGS" \
+    ./cmd/promtool
+}
+
+check() {
+  cd prometheus-$pkgver
+
+  go test ./...
+}
+
+package() {
+  install -Dm644 prometheus.service "$pkgdir"/usr/lib/systemd/system/prometheus.service
+  install -Dm644 prometheus.sysusers "$pkgdir"/usr/lib/sysusers.d/prometheus.conf
+
+  cd prometheus-$pkgver
+
+  install -Dm755 -t "$pkgdir"/usr/bin prometheus promtool
+  install -Dm640 -g210 -t "$pkgdir"/etc/prometheus documentation/examples/prometheus.yml
+  install -dm755 -o210 -g210 "$pkgdir"/var/lib/prometheus
+
+  # Web
+  install -dm755 "$pkgdir"/usr/share/prometheus/web/ui
+  cp -R web/ui/{static,templates} "$pkgdir"/usr/share/prometheus/web/ui/
+
+  # Examples
+  install -Dm644 -t "$pkgdir"/usr/share/doc/prometheus/examples documentation/examples/prometheus*.yml
+  cp -R consoles console_libraries "$pkgdir"/usr/share/doc/prometheus/examples
+
+}

Copied: prometheus/repos/community-x86_64/prometheus.service (from rev 372703, prometheus/trunk/prometheus.service)
===================================================================
--- community-x86_64/prometheus.service	                        (rev 0)
+++ community-x86_64/prometheus.service	2020-01-07 10:47:29 UTC (rev 372704)
@@ -0,0 +1,28 @@
+[Unit]
+Description=Prometheus service
+Requires=network-online.target
+After=network-online.target
+
+[Service]
+User=prometheus
+Group=prometheus
+Restart=on-failure
+WorkingDirectory=/usr/share/prometheus
+ExecStart=/usr/bin/prometheus --config.file=/etc/prometheus/prometheus.yml --storage.tsdb.path=/var/lib/prometheus/data
+ExecReload=/bin/kill -HUP $MAINPID
+NoNewPrivileges=true
+ProtectHome=true
+ProtectSystem=full
+ProtectHostname=true
+ProtectControlGroups=true
+ProtectKernelModules=true
+ProtectKernelTunables=true
+LockPersonality=true
+RestrictRealtime=yes
+RestrictNamespaces=yes
+MemoryDenyWriteExecute=yes
+PrivateDevices=yes
+CapabilityBoundingSet=
+
+[Install]
+WantedBy=multi-user.target

Copied: prometheus/repos/community-x86_64/prometheus.sysusers (from rev 372703, prometheus/trunk/prometheus.sysusers)
===================================================================
--- community-x86_64/prometheus.sysusers	                        (rev 0)
+++ community-x86_64/prometheus.sysusers	2020-01-07 10:47:29 UTC (rev 372704)
@@ -0,0 +1 @@
+u prometheus 210 "Prometheus dedicated user"



More information about the arch-commits mailing list