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

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

bug#61339: closed ([PATCH] gnu: Add smartdns.)


From: GNU bug Tracking System
Subject: bug#61339: closed ([PATCH] gnu: Add smartdns.)
Date: Sat, 11 Feb 2023 21:16:03 +0000

Your message dated Sat, 11 Feb 2023 22:15:38 +0100
with message-id <87zg9jsy2t.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#61339] [PATCH] gnu: Add smartdns.
has caused the debbugs.gnu.org bug report #61339,
regarding [PATCH] gnu: Add smartdns.
to be marked as done.

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


-- 
61339: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=61339
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add smartdns. Date: Tue, 07 Feb 2023 13:57:46 +0800
* gnu/packages/dns.scm (smartdns): New variable.
---
 gnu/packages/dns.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index 6eac4fa542..ef65dfa713 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
 ;;; Copyright © 2020 Simon South <simon@simonsouth.net>
 ;;; Copyright © 2021 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1389,3 +1390,38 @@ (define-public openresolv
 configure the real @file{/etc/resolv.conf} and optionally any local
 nameservers other than libc.")
     (license license:bsd-2)))
+
+(define-public smartdns
+  (package
+    (name "smartdns")
+    (version "40")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/pymumu/smartdns";)
+                    (commit (string-append "Release" version))))
+              (file-name (git-file-name name version))
+              (modules '((guix build utils)))
+              (snippet '(substitute* "Makefile"
+                          ((".*SYSTEMDSYSTEMUNITDIR.*") "")))
+              (sha256
+               (base32
+                "0ibbj96s40xgk6q7dsgpx65rjkknl1pn7nca5fcbbhcm2m80nzjj"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list #:tests? #f                  ;no tests
+           #:make-flags
+           #~(list (string-append "CC=" #$(cc-for-target))
+                   (string-append "DESTDIR=" #$output)
+                   "PREFIX=''")
+           #:phases
+           #~(modify-phases %standard-phases
+               (delete 'configure))))
+    (inputs (list openssl))
+    (home-page "https://github.com/pymumu/smartdns";)
+    (synopsis "Local DNS server")
+    (description
+     "This package provides @code{SmartDNS}, a DNS server which accepts DNS
+query requests from local clients, obtains DNS query results from multiple
+upstream DNS servers, and returns the fastest access results to clients.")
+    (license license:gpl3+)))

base-commit: 1f684d00d25f0f205c4cc4b762d8f56911062581
-- 
2.39.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#61339] [PATCH] gnu: Add smartdns. Date: Sat, 11 Feb 2023 22:15:38 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Hello,

Hilton Chain via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/dns.scm (smartdns): New variable.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou


--- End Message ---

reply via email to

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