unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Martin Becze <mjbecze@riseup.net>
To: 37444@debbugs.gnu.org
Cc: Martin Becze <mjbecze@riseup.net>
Subject: [bug#37444] [PATCH v4 13/24] added go package go-github-com-go-ini-ini
Date: Tue,  1 Oct 2019 17:37:15 -0400	[thread overview]
Message-ID: <20191001213726.21676-13-mjbecze@riseup.net> (raw)
In-Reply-To: <20191001213726.21676-1-mjbecze@riseup.net>

* gnu/packages/golang.scm (go-github-com-go-ini-ini): added package
---
 gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 52bf9ad49a..9245965613 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4013,3 +4013,27 @@ gist (https://gist.github.com/kballard/272720)")
      (synopsis "File system notifications for Go")
      (description "File system notifications for Go")
      (license license:bsd-3))))
+
+(define-public go-github-com-go-ini-ini
+  (let ((url "https://github.com/go-ini/ini"))
+    (package
+     (name "go-github-com-go-ini-ini")
+     (version "1.44.0")
+     (source
+      (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url url)
+             (commit (string-append "v" version))))
+       (sha256
+        (base32
+         "072fhg4i5k26pxq3kg5y5h9lb9w5ka75jl000q5bjcdv2yf8qhcv"))
+       (file-name (git-file-name name version))))
+     (build-system go-build-system)
+     (arguments
+      '(#:import-path "github.com/go-ini/ini"
+		      #:tests? #f))
+     (home-page url)
+     (synopsis "Package ini provides INI file read and write functionality in Go")
+     (description "Package ini provides INI file read and write functionality in Go.")
+     (license license:asl2.0))))
-- 
2.23.0

  parent reply	other threads:[~2019-10-01 21:39 UTC|newest]

Thread overview: 61+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-18  8:23 [bug#37444] [PATCH] added aerc, a simple email client and its dependcies Martin Becze
2019-09-18  9:01 ` Ricardo Wurmus
2019-09-18  9:20   ` Martin Becze
2019-09-18  9:29   ` Martin Becze
2019-09-18  9:42     ` Björn Höfling
2019-09-18  9:48     ` Tobias Geerinckx-Rice via Guix-patches via
2019-09-22  8:55   ` Martin Becze
2019-09-26  9:37     ` Ludovic Courtès
2019-09-26 15:20       ` [bug#37444] [PATCH v3 01/23] added go package go-github-com-mattn-go-pointer Martin Becze
2019-09-26 15:20         ` [bug#37444] [PATCH v3 02/23] added go package go-github-com-danwakefield-fnmatch Martin Becze
2019-09-26 15:20         ` [bug#37444] [PATCH v3 03/23] added go package go-github-com-ddevault-go-libvterm Martin Becze
2019-09-26 15:20         ` [bug#37444] [PATCH v3 04/23] added go package go-github-com-emersion-go-imap Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 05/23] added go package go-github-com-emersion-go-sasl Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 06/23] add go package go-github-com-emersion-go-imap-idle Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 07/23] added go package go-github-com-emersion-go-maildir Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 08/23] added go package go-github-com-emersion-go-message Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 09/23] added go package go-github-com-emersion-go-textwrapper Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 10/23] added go package go-github-com-emersion-go-smtp Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 11/23] added go package go-github-com-fsnotify-fsnotify Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 12/23] added go package go-github-com-go-ini-ini Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 13/23] added go package go-github-com-google-shlex Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 14/23] added go package go-github-com-kyoh86-xdg Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 15/23] added go package go-github-com-martinlindhe-base36 Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 16/23] added go package go-github-com-miolini-datacounter Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 17/23] added go package go-github-com-riywo-loginshell Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 18/23] added go package go-git-sr-ht-sircmpwn-getopt Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 19/23] added go package go-git-sr-ht-sircmpwn-pty Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 20/23] added go package go-git-sr-ht-sircmpwn-tcell Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 21/23] added aerc, a simple email client Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 22/23] updated go-github-com-mitchellh-go-homedir to version 1.1.0 Martin Becze
2019-09-26 15:21         ` [bug#37444] [PATCH v3 23/23] progagated inputs for gdamore-encoding, since this is a source only package and the go compiler needs its dependency when used as an input in another package Martin Becze
2019-10-01 21:34       ` [bug#37444] [PATCH] added aerc, a simple email client and its dependcies Martin Becze
2019-10-01 21:37         ` [bug#37444] [PATCH v4 01/24] added go package go-golang-org-x-oauth2 Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 02/24] added go package go-github-com-mattn-go-pointer Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 03/24] added go package go-github-com-danwakefield-fnmatch Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 04/24] added go package go-github-com-ddevault-go-libvterm Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 05/24] added go package go-github-com-emersion-go-imap Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 06/24] added go package go-github-com-emersion-go-sasl Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 07/24] add go package go-github-com-emersion-go-imap-idle Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 08/24] added go package go-github-com-emersion-go-maildir Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 09/24] added go package go-github-com-emersion-go-message Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 10/24] added go package go-github-com-emersion-go-textwrapper Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 11/24] added go package go-github-com-emersion-go-smtp Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 12/24] added go package go-github-com-fsnotify-fsnotify Martin Becze
2019-10-01 21:37           ` Martin Becze [this message]
2019-10-01 21:37           ` [bug#37444] [PATCH v4 14/24] added go package go-github-com-google-shlex Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 15/24] added go package go-github-com-kyoh86-xdg Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 16/24] added go package go-github-com-martinlindhe-base36 Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 17/24] added go package go-github-com-miolini-datacounter Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 18/24] added go package go-github-com-riywo-loginshell Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 19/24] added go package go-git-sr-ht-sircmpwn-getopt Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 20/24] added go package go-git-sr-ht-sircmpwn-pty Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 21/24] added go package go-git-sr-ht-sircmpwn-tcell Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 22/24] added aerc, a simple email client Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 23/24] updated go-github-com-mitchellh-go-homedir to version 1.1.0 Martin Becze
2019-10-01 21:37           ` [bug#37444] [PATCH v4 24/24] progagated inputs for gdamore-encoding, since this is a source only package and the go compiler needs its dependency when used as an input in another package Martin Becze
2019-09-18 15:36 ` [bug#37444] [PATCH v2 1/4] Added the dependcies for aerc. NOTE i tried to place depency authors next to each other Martin Becze
2019-09-18 15:36   ` [bug#37444] [PATCH v2 2/4] added aerc, a simple email client Martin Becze
2019-09-18 15:36   ` [bug#37444] [PATCH v2 3/4] updated go-github-com-mitchellh-go-homedir to version 1.1.0 Martin Becze
2019-09-18 15:36   ` [bug#37444] [PATCH v2 4/4] progagated inputs for gdamore-encoding, since this is a source only package and the go compiler needs its dependency when used as an input in another package Martin Becze
2022-06-11 20:10 ` [bug#37444] [PATCH] added aerc, a simple email client and its dependcies ( 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=20191001213726.21676-13-mjbecze@riseup.net \
    --to=mjbecze@riseup.net \
    --cc=37444@debbugs.gnu.org \
    /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).