From: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
To: 74355@debbugs.gnu.org
Cc: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
Subject: [bug#74355] [PATCH 2/7] gnu: Add go-github-com-libdns-libdns.
Date: Thu, 14 Nov 2024 23:12:21 +0300 [thread overview]
Message-ID: <12c60a82e84d5b65741a465bfdb4aefee2e4a0b3.1731615008.git.poptsov.artyom@gmail.com> (raw)
In-Reply-To: <cover.1731615008.git.poptsov.artyom@gmail.com>
* gnu/packages/golang-web.scm (go-github-com-libdns-libdns): New variable.
Change-Id: I9d1a1751f575e521deda22177c55ad5be6b41eca
---
gnu/packages/golang-web.scm | 43 +++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 187718b589..c71878423f 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -3077,6 +3077,49 @@ (define-public go-github-com-koron-go-ssdp
@acronym{Simple Service Discovery Protocol, SSDP}} library for Golang.")
(license license:expat)))
+(define-public go-github-com-libdns-libdns
+ (package
+ (name "go-github-com-libdns-libdns")
+ (version "0.2.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/libdns/libdns")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "00zx6yij1ac8mhswhsks1nchzgmhbzrsm9hr0faqbmx0vkip78j5"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/libdns/libdns"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (propagated-inputs
+ (list go-golang-org-x-exp))
+ (home-page "https://github.com/libdns/libdns")
+ (synopsis "Universal DNS provider APIs for Go")
+ (description
+ "@code{libdns} is a collection of free-range DNS provider client implementations
+written in Go.
+
+This repository defines the core interfaces that provider packages should implement. They are small and idiomatic Go interfaces with well-defined semantics.
+
+The interfaces include:
+@itemize
+@item @url{https://pkg.go.dev/github.com/libdns/libdns#RecordGetter, RecordGetter} to
+list records.
+@item @url{https://pkg.go.dev/github.com/libdns/libdns#RecordAppender,
+RecordAppender} to append new records.
+@item @url{https://pkg.go.dev/github.com/libdns/libdns#RecordSetter, RecordSetter} to
+set (create or change existing) records.
+@item @url{https://pkg.go.dev/github.com/libdns/libdns#RecordDeleter, RecordDeleter}
+to delete records.
+@end itemize
+")
+ (license license:expat)))
+
(define-public go-github-com-libp2p-go-cidranger
(package
(name "go-github-com-libp2p-go-cidranger")
--
2.46.0
next prev parent reply other threads:[~2024-11-14 20:14 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-14 20:11 [bug#74355] [PATCH 0/7] gnu: Add go-github-com-caddyserver-certmagic Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 1/7] gnu: Add go-github-com-caddyserver-zerossl Artyom V. Poptsov
2024-11-14 20:12 ` Artyom V. Poptsov [this message]
2024-11-14 20:12 ` [bug#74355] [PATCH 3/7] gnu: Add go-github-com-mholt-acmez Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 4/7] gnu: Add go-github-com-zeebo-assert Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 5/7] gnu: Add go-github-com-zeebo-pcg Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 6/7] gnu: Add go-github-com-zeebo-blake3 Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 7/7] gnu: Add go-github-com-caddyserver-certmagic Artyom V. Poptsov
2024-11-15 21:43 ` [bug#74355] [PATCH 0/7] " Sharlatan Hellseher
2024-11-16 7:28 ` Artyom V. Poptsov
2024-11-16 7:26 ` [bug#74355] [PATCH v2 1/7] gnu: Add go-github-com-caddyserver-zerossl Artyom V. Poptsov
2024-11-16 7:26 ` [bug#74355] [PATCH v2 2/7] gnu: Add go-github-com-libdns-libdns Artyom V. Poptsov
2024-11-16 7:26 ` [bug#74355] [PATCH v2 3/7] gnu: Add go-github-com-mholt-acmez Artyom V. Poptsov
2024-11-16 7:26 ` [bug#74355] [PATCH v2 4/7] gnu: Add go-github-com-zeebo-assert Artyom V. Poptsov
2024-11-16 7:26 ` [bug#74355] [PATCH v2 5/7] gnu: Add go-github-com-zeebo-pcg Artyom V. Poptsov
2024-11-16 7:26 ` [bug#74355] [PATCH v2 6/7] gnu: Add go-github-com-zeebo-blake3 Artyom V. Poptsov
2024-11-16 7:26 ` [bug#74355] [PATCH v2 7/7] gnu: Add go-github-com-caddyserver-certmagic Artyom V. Poptsov
2024-11-16 14:23 ` [bug#74355] [PATCH 0/7] " Sharlatan Hellseher
2024-11-16 15:21 ` [bug#74355] [PATCH v3 1/7] gnu: Add go-github-com-caddyserver-zerossl Artyom V. Poptsov
2024-11-16 15:21 ` [bug#74355] [PATCH v3 2/7] gnu: Add go-github-com-libdns-libdns Artyom V. Poptsov
2024-11-16 15:21 ` [bug#74355] [PATCH v3 3/7] gnu: Add go-github-com-mholt-acmez Artyom V. Poptsov
2024-11-16 15:21 ` [bug#74355] [PATCH v3 4/7] gnu: Add go-github-com-zeebo-assert Artyom V. Poptsov
2024-11-16 15:21 ` [bug#74355] [PATCH v3 5/7] gnu: Add go-github-com-zeebo-pcg Artyom V. Poptsov
2024-11-16 15:21 ` [bug#74355] [PATCH v3 6/7] gnu: Add go-github-com-zeebo-blake3 Artyom V. Poptsov
2024-11-16 15:21 ` [bug#74355] [PATCH v3 7/7] gnu: Add go-github-com-caddyserver-certmagic Artyom V. Poptsov
2024-11-16 15:34 ` [bug#74355] [PATCH v4 1/7] gnu: Add go-github-com-caddyserver-zerossl Artyom V. Poptsov
2024-11-16 15:34 ` [bug#74355] [PATCH v4 2/7] gnu: Add go-github-com-libdns-libdns Artyom V. Poptsov
2024-11-16 15:34 ` [bug#74355] [PATCH v4 3/7] gnu: Add go-github-com-mholt-acmez Artyom V. Poptsov
2024-11-16 15:34 ` [bug#74355] [PATCH v4 4/7] gnu: Add go-github-com-zeebo-assert Artyom V. Poptsov
2024-11-16 15:34 ` [bug#74355] [PATCH v4 5/7] gnu: Add go-github-com-zeebo-pcg Artyom V. Poptsov
2024-11-16 15:34 ` [bug#74355] [PATCH v4 6/7] gnu: Add go-github-com-zeebo-blake3 Artyom V. Poptsov
2024-11-16 15:34 ` [bug#74355] [PATCH v4 7/7] gnu: Add go-github-com-caddyserver-certmagic Artyom V. Poptsov
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=12c60a82e84d5b65741a465bfdb4aefee2e4a0b3.1731615008.git.poptsov.artyom@gmail.com \
--to=poptsov.artyom@gmail.com \
--cc=74355@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).