Received: from mail.cmpwn.com (mail.cmpwn.com [45.56.77.53]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id D33AC781AF9 for <~alpine/aports@lists.alpinelinux.org>; Thu, 28 Nov 2019 01:57:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=cmpwn.com; s=cmpwn; t=1574906221; bh=/ojRKZ77dGTL2+ZBuCyY3Zq9vQI70JNuT6RY9fTPz6s=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=hYrDtHjPFoRdaa2a6i2enzdKiPekwe70Q6EqPbn2vqcABIWHwPHOJHSjMXidqCPnT ut2kF4C8yTMhzvfjVxJLCeNLHFcCWqW6KlwqZ4W90AVQf5471lkZW5UP7+vWW1MusW Og7leUN7xONwhq4egXnPNs7FHG9xxG0HzjSuSIlg= From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH 1/2] community/prometheus: new APKBUILD Date: Wed, 27 Nov 2019 20:57:41 -0500 Message-Id: <20191128015742.21302-2-sir@cmpwn.com> X-Mailer: git-send-email 2.24.0 In-Reply-To: <20191128015742.21302-1-sir@cmpwn.com> References: <20191128015742.21302-1-sir@cmpwn.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit --- community/prometheus/APKBUILD | 53 +++++++++++++++++++++ community/prometheus/prometheus.confd | 2 + community/prometheus/prometheus.initd | 16 +++++++ community/prometheus/prometheus.pre-install | 4 ++ 4 files changed, 75 insertions(+) create mode 100644 community/prometheus/APKBUILD create mode 100644 community/prometheus/prometheus.confd create mode 100644 community/prometheus/prometheus.initd create mode 100644 community/prometheus/prometheus.pre-install diff --git a/community/prometheus/APKBUILD b/community/prometheus/APKBUILD new file mode 100644 index 0000000000..c081b427f6 --- /dev/null +++ b/community/prometheus/APKBUILD @@ -0,0 +1,53 @@ +# Maintainer: Drew DeVault +pkgname=prometheus +pkgver=2.14.0 +pkgrel=0 +pkgdesc="The Prometheus monitoring system and time series database" +url="https://github.com/prometheus/prometheus" +arch="all" +license="Apache-2.0" +install="prometheus.pre-install" +makedepends="go" +source=" + $pkgname-$pkgver.tar.gz::https://github.com/prometheus/prometheus/archive/v$pkgver.tar.gz + prometheus.confd + prometheus.initd +" +subpackages="$pkgname-openrc" +builddir="$srcdir/$pkgname-$pkgver" +options="!check" # Broken by integrations we don't care about + +build() { + go build \ + -gcflags "all=-trimpath=$PWD" \ + -asmflags "all=-trimpath=$PWD" \ + -ldflags "-extldflags $LDFLAGS" \ + ./cmd/prometheus + go build \ + -gcflags "all=-trimpath=$PWD" \ + -asmflags "all=-trimpath=$PWD" \ + -ldflags "-extldflags $LDFLAGS" \ + ./cmd/promtool +} + +check() { + go test ./... +} + +package() { + install -Dm755 prometheus "$pkgdir"/usr/bin/prometheus + install -Dm755 promtool "$pkgdir"/usr/bin/promtool + + install -Dm644 "$srcdir"/prometheus.confd \ + "$pkgdir"/etc/conf.d/prometheus + install -Dm755 "$srcdir"/prometheus.initd \ + "$pkgdir"/etc/init.d/prometheus + install -dm644 "$pkgdir"/var/lib/prometheus/data + + install -Dm644 -t "$pkgdir"/etc/prometheus \ + documentation/examples/prometheus.yml +} + +sha512sums="077d83ef06a6ef77b6aa0d47ef0aa276f50b89c818f6cbe0163a4167d0ceb7fbcaf828a6341ba91cde303a0c6c7e2440de99ea0500a48a9059adb37a34a78a7a prometheus-2.14.0.tar.gz +82f90ef730935b9dfc67877098ab0dcada0da941e273b241826b1e9bd2474202f2df5dd976dbed016652219cf0cfd1d77b8df72367ed1ac15c6f0cc38800cac5 prometheus.confd +3eaf6183a3dcf39169383861eff0e15dba16cbd08673815bf936a55ef17803a283c871f1f4534a61d1d0349227122e64a1cf5dac1b10adc504107aba869fff1c prometheus.initd" diff --git a/community/prometheus/prometheus.confd b/community/prometheus/prometheus.confd new file mode 100644 index 0000000000..193f4adc64 --- /dev/null +++ b/community/prometheus/prometheus.confd @@ -0,0 +1,2 @@ +config_file=/etc/prometheus/prometheus.yml +storage_path=/var/lib/prometheus/data diff --git a/community/prometheus/prometheus.initd b/community/prometheus/prometheus.initd new file mode 100644 index 0000000000..7ea45cf26d --- /dev/null +++ b/community/prometheus/prometheus.initd @@ -0,0 +1,16 @@ +#!/sbin/openrc-run +name="prometheus" +description="prometheus monitoring system & time series database" +supervisor=supervise-daemon +supervise_daemon_args="-1 /var/log/prometheus.log -2 /var/log/prometheus.log" +command=/usr/bin/prometheus +command_args="--config.file=$config_file \ + --storage.tsdb.path=$storage_path" +command_user="prometheus:prometheus" +pidfile="/run/${RC_SVCNAME}.pid" + +start_pre() { + checkpath -f "/var/log/prometheus.log" -m 644 -o prometheus:prometheus + checkpath -f "$config_file" -m 740 -o prometheus:prometheus + checkpath -d "$storage_path" -m 755 -o prometheus:prometheus +} diff --git a/community/prometheus/prometheus.pre-install b/community/prometheus/prometheus.pre-install new file mode 100644 index 0000000000..379f50ae8c --- /dev/null +++ b/community/prometheus/prometheus.pre-install @@ -0,0 +1,4 @@ +#!/bin/sh +grep '^prometheus' /etc/group >/dev/null || addgroup -S prometheus 2>/dev/null +grep '^prometheus' /etc/passwd >/dev/null || adduser -SDh/var/lib/prometheus \ + -s/sbin/nologin -Gprometheus -gprometheus prometheus prometheus 2>/dev/null -- 2.24.0