[arch-commits] Commit in prometheus/repos/extra-x86_64 (6 files)

Jelle van der Waa jelle at archlinux.org
Tue Jul 9 17:00:33 UTC 2019


    Date: Tuesday, July 9, 2019 @ 17:00:33
  Author: jelle
Revision: 357438

archrelease: copy trunk to extra-x86_64

Added:
  prometheus/repos/extra-x86_64/PKGBUILD
    (from rev 357437, prometheus/trunk/PKGBUILD)
  prometheus/repos/extra-x86_64/prometheus.service
    (from rev 357437, prometheus/trunk/prometheus.service)
  prometheus/repos/extra-x86_64/prometheus.sysusers
    (from rev 357437, prometheus/trunk/prometheus.sysusers)
Deleted:
  prometheus/repos/extra-x86_64/PKGBUILD
  prometheus/repos/extra-x86_64/prometheus.service
  prometheus/repos/extra-x86_64/prometheus.sysusers

---------------------+
 PKGBUILD            |  142 +++++++++++++++++++++++++-------------------------
 prometheus.service  |   34 +++++------
 prometheus.sysusers |    2 
 3 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-07-09 17:00:23 UTC (rev 357437)
+++ PKGBUILD	2019-07-09 17:00:33 UTC (rev 357438)
@@ -1,71 +0,0 @@
-# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
-
-pkgname=prometheus
-pkgver=2.9.2
-pkgrel=2
-
-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')
-
-backup=('etc/prometheus/prometheus.yml')
-
-source=("https://github.com/prometheus/prometheus/archive/v$pkgver.tar.gz"
-        prometheus.service
-        prometheus.sysusers)
-
-sha256sums=('fa00bdfcd868c84c61223dfe60eb3bc67777857e49db2c826854c706c5ea4551'
-            'e3f742c3e6eca7d4e0e6d190d88cf71692ca8810a77ef66831e450cb8e0a84a7'
-            '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=$SOURCE_DATE_EPOCH"
-
-  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/
-  cp -R web/ui "$pkgdir"/usr/share/prometheus/web
-
-  # 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/extra-x86_64/PKGBUILD (from rev 357437, prometheus/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-07-09 17:00:33 UTC (rev 357438)
@@ -0,0 +1,71 @@
+# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
+
+pkgname=prometheus
+pkgver=2.10.0
+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')
+
+backup=('etc/prometheus/prometheus.yml')
+
+source=("https://github.com/prometheus/prometheus/archive/v$pkgver.tar.gz"
+        prometheus.service
+        prometheus.sysusers)
+
+sha256sums=('0362f4aa2fb44cc2c572df140da742bdf99fe9f338157a83f6634694fd693000'
+            'e3f742c3e6eca7d4e0e6d190d88cf71692ca8810a77ef66831e450cb8e0a84a7'
+            '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)"
+
+  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/
+  cp -R web/ui "$pkgdir"/usr/share/prometheus/web
+
+  # 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
+
+}

Deleted: prometheus.service
===================================================================
--- prometheus.service	2019-07-09 17:00:23 UTC (rev 357437)
+++ prometheus.service	2019-07-09 17:00:33 UTC (rev 357438)
@@ -1,17 +0,0 @@
-[Unit]
-Description=Prometheus service
-Requires=network-online.target
-After=network-online.target
-
-[Service]
-User=prometheus
-Group=prometheus
-Restart=on-failure
-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
-
-[Install]
-WantedBy=multi-user.target

Copied: prometheus/repos/extra-x86_64/prometheus.service (from rev 357437, prometheus/trunk/prometheus.service)
===================================================================
--- prometheus.service	                        (rev 0)
+++ prometheus.service	2019-07-09 17:00:33 UTC (rev 357438)
@@ -0,0 +1,17 @@
+[Unit]
+Description=Prometheus service
+Requires=network-online.target
+After=network-online.target
+
+[Service]
+User=prometheus
+Group=prometheus
+Restart=on-failure
+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
+
+[Install]
+WantedBy=multi-user.target

Deleted: prometheus.sysusers
===================================================================
--- prometheus.sysusers	2019-07-09 17:00:23 UTC (rev 357437)
+++ prometheus.sysusers	2019-07-09 17:00:33 UTC (rev 357438)
@@ -1 +0,0 @@
-u prometheus 210 "Prometheus dedicated user"

Copied: prometheus/repos/extra-x86_64/prometheus.sysusers (from rev 357437, prometheus/trunk/prometheus.sysusers)
===================================================================
--- prometheus.sysusers	                        (rev 0)
+++ prometheus.sysusers	2019-07-09 17:00:33 UTC (rev 357438)
@@ -0,0 +1 @@
+u prometheus 210 "Prometheus dedicated user"



More information about the arch-commits mailing list