unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Dhruvin Gandhi via Guix-patches via <guix-patches@gnu.org>
To: 54882@debbugs.gnu.org
Cc: Dhruvin Gandhi <contact@dhruvin.dev>
Subject: [bug#54882] [PATCH v3 6/6] gnu: Add hut.
Date: Wed, 22 Jun 2022 18:29:15 +0530	[thread overview]
Message-ID: <20220622125915.2891-7-contact@dhruvin.dev> (raw)
In-Reply-To: <20220622125915.2891-1-contact@dhruvin.dev>

* gnu/packages/version-control.scm (hut): New variable.
---
 gnu/packages/version-control.scm | 61 ++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index eefb4a01ec..2bb14b8813 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -45,6 +45,7 @@
 ;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo@hotmail.com>
 ;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
 ;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be>
+;;; Copyright © 2022 Dhruvin Gandhi <contact@dhruvin.dev>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -104,6 +105,7 @@ (define-module (gnu packages version-control)
   #:use-module (gnu packages image)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages mail)
+  #:use-module (gnu packages man)
   #:use-module (gnu packages maths)
   #:use-module (gnu packages nano)
   #:use-module (gnu packages ncurses)
@@ -3407,3 +3409,62 @@ (define-public gitlint
      "Gitlint is a Git commit message linter written in Python: it checks your
 commit messages for style.")
     (license license:expat)))
+
+(define-public hut
+  (package
+    (name "hut")
+    (version "0.1.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://git.sr.ht/~emersion/hut")
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32 "15ag8fibnahcfgd0w2j4k813z10ymi39rx8d3c8b9955zc62p1fr"))))
+    (build-system go-build-system)
+    (arguments
+      (list
+        #:import-path "git.sr.ht/~emersion/hut"
+        #:phases
+        #~(modify-phases
+          %standard-phases
+          (replace 'build
+            (lambda* (#:key import-path #:allow-other-keys)
+              (with-directory-excursion
+                (string-append "src/" import-path)
+                ;; From guix/build/go-build-system.scm
+                (setenv "CGO_LDFLAGS" "-s -w")
+                (invoke "make" "all" "GOFLAGS=-v -x"))))
+          (replace 'install
+            (lambda* (#:key import-path outputs #:allow-other-keys)
+              (with-directory-excursion (string-append "src/" import-path)
+                (invoke "make" "install"
+                  (string-append "PREFIX=" (assoc-ref outputs "out")))))))))
+    (native-inputs
+      (list scdoc))
+    (inputs
+      (list go-golang-org-x-term
+            go-golang-org-x-oauth2
+            go-github-com-spf13-cobra
+            go-github-com-juju-ansiterm
+            go-git-sr-ht--emersion-gqlclient
+            go-git-sr-ht--emersion-go-scfg))
+    (home-page "https://git.sr.ht/~emersion/hut")
+    (synopsis "CLI tool for sr.ht")
+    (description "@command{hut} is a cli tool for
+@uref{https://sr.ht/~sircmpwn/sourcehut/, sr.ht}.  It helps you interact with
+sr.ht's public services:
+@itemize
+@item builds: submit, and manage build jobs
+@item git: create, and manage git repositories, and artifacts
+@item hg: list mercurial repositories
+@item lists: manage mailing lists, and patches
+@item meta: manage pgp, and ssh keys
+@item pages: publish, and manage hosted websites
+@item paste: create, and manage pastes
+@item todo: create, and manage trackers, and tickets
+@item graphql: interact with GraphQL APIs directly
+@end itemize\n")
+    (license license:agpl3)))
-- 
2.36.1





  parent reply	other threads:[~2022-06-22 13:02 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-12 12:10 [bug#54882] [PATCH 0/2] gnu: Add hut Dhruvin Gandhi via Guix-patches via
2022-04-12 12:23 ` [bug#54882] [PATCH 1/2] gnu: go-github-com-spf13-cobra: Update to 1.4.0 Dhruvin Gandhi via Guix-patches via
2022-04-12 12:23   ` [bug#54882] [PATCH 2/2] gnu: Add hut Dhruvin Gandhi via Guix-patches via
2022-04-12 12:35     ` Maxime Devos
2022-04-12 13:07       ` Dhruvin Gandhi via Guix-patches via
2022-04-12 12:36     ` Maxime Devos
2022-04-12 13:12       ` Dhruvin Gandhi via Guix-patches via
2022-04-12 15:43         ` Maxime Devos
2022-04-12 12:38     ` Maxime Devos
2022-04-12 13:14       ` Dhruvin Gandhi via Guix-patches via
2022-04-25 13:56 ` [bug#54882] [PATCH v2] " Dhruvin Gandhi via Guix-patches via
2022-06-02  5:51   ` Dhruvin Gandhi via Guix-patches via
2022-06-22 12:59 ` [bug#54882] [PATCH v3 0/6] " Dhruvin Gandhi via Guix-patches via
2022-06-22 12:59   ` [bug#54882] [PATCH v3 1/6] gnu: Add go-github-com-google-shlex Dhruvin Gandhi via Guix-patches via
2022-06-22 12:59   ` [bug#54882] [PATCH v3 2/6] gnu: Add go-git-sr-ht--emersion-go-scfg Dhruvin Gandhi via Guix-patches via
2022-06-22 12:59   ` [bug#54882] [PATCH v3 3/6] gnu: Add go-git-sr-ht--emersion-gqlclient Dhruvin Gandhi via Guix-patches via
2022-06-22 12:59   ` [bug#54882] [PATCH v3 4/6] gnu: Add go-github-com-juju-ansiterm Dhruvin Gandhi via Guix-patches via
2022-06-22 12:59   ` [bug#54882] [PATCH v3 5/6] gnu: Add go-github-com-lunixbochs-vtclean Dhruvin Gandhi via Guix-patches via
2022-06-22 12:59   ` Dhruvin Gandhi via Guix-patches via [this message]
2022-06-22 13:12     ` [bug#54882] [PATCH v3 6/6] gnu: Add hut Maxime Devos
2022-06-23  9:38 ` [bug#54882] [PATCH v4 1/6] gnu: Add go-github-com-google-shlex Dhruvin Gandhi via Guix-patches via
2022-06-23  9:38   ` [bug#54882] [PATCH v4 2/6] gnu: Add go-git-sr-ht--emersion-go-scfg Dhruvin Gandhi via Guix-patches via
2022-06-23  9:38   ` [bug#54882] [PATCH v4 3/6] gnu: Add go-git-sr-ht--emersion-gqlclient Dhruvin Gandhi via Guix-patches via
2022-06-23  9:38   ` [bug#54882] [PATCH v4 4/6] gnu: Add go-github-com-juju-ansiterm Dhruvin Gandhi via Guix-patches via
2022-06-23  9:38   ` [bug#54882] [PATCH v4 5/6] gnu: Add go-github-com-lunixbochs-vtclean Dhruvin Gandhi via Guix-patches via
2022-06-23  9:38   ` [bug#54882] [PATCH v4 6/6] gnu: Add hut Dhruvin Gandhi via Guix-patches via
2022-10-08  4:16     ` bug#54882: [PATCH 0/2] " Maxim Cournoyer
2022-10-09  8:18       ` [bug#54882] " ( via Guix-patches via
2022-10-10  3:19         ` Maxim Cournoyer
2022-10-10  6:13           ` ( via Guix-patches via
2022-10-10  9:22           ` Dhruvin Gandhi via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220622125915.2891-7-contact@dhruvin.dev \
    --to=guix-patches@gnu.org \
    --cc=54882@debbugs.gnu.org \
    --cc=contact@dhruvin.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).