emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#50794: closed ([PATCH] gnu: Add runitor)


From: GNU bug Tracking System
Subject: bug#50794: closed ([PATCH] gnu: Add runitor)
Date: Wed, 13 Oct 2021 09:11:02 +0000

Your message dated Wed, 13 Oct 2021 11:10:29 +0200
with message-id <874k9ls322.fsf@gnu.org>
and subject line Re: bug#50794: [PATCH] gnu: Add runitor
has caused the debbugs.gnu.org bug report #50794,
regarding [PATCH] gnu: Add runitor
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
50794: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=50794
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add runitor Date: Fri, 24 Sep 2021 21:44:39 -0500
* gnu/packages/admin.scm (runitor): New variable.
---
 gnu/packages/admin.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 9ee371be71..1e3082d36b 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -4797,3 +4797,31 @@ setup, maintenance, supervision, or any long-running 
processes.")
       (description "Utility to convert @code{lsof} output to a graph showing
 FIFO and UNIX interprocess communication.")
       (license license:bsd-2))))
+
+(define-public runitor
+  (package
+    (name "runitor")
+    (version "0.8.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/bdd/runitor";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32 "0vjfbyrbp5ywgzdz9j3x0qgjvnq7nw7193x8v9yy6k2cih1zsacn"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:unpack-path "bdd.fi/x/runitor"
+       #:go ,go-1.17
+       #:build-flags '(,(string-append "-ldflags=-X main.Version=" version))
+       #:import-path "bdd.fi/x/runitor/cmd/runitor"
+       #:install-source? #f))
+    (home-page "https://github.com/bdd/runitor";)
+    (synopsis "Command runner with healthchecks.io integration")
+    (description
+      "Runitor runs the supplied command, captures its output, and based on its
+exit code reports successful or failed execution to
+@url{https://healthchecks.io,https://healthchecks.io} or your private 
instance.")
+    (license license:bsd-0)))
-- 
2.20.1



--- End Message ---
--- Begin Message --- Subject: Re: bug#50794: [PATCH] gnu: Add runitor Date: Wed, 13 Oct 2021 11:10:29 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Stephen Paul Weber <singpolyma@singpolyma.net> skribis:

> * gnu/packages/admin.scm (runitor): New variable.

Applied, thanks!

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]