all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: John Darrington <john@darrington.wattle.id.au>
To: John Darrington <john@darrington.wattle.id.au>
Cc: guix-devel@gnu.org, John Darrington <jmd@gnu.org>
Subject: Re: [PATCH] gnu: Add bind
Date: Sun, 18 Sep 2016 15:57:58 +0200	[thread overview]
Message-ID: <20160918135758.GA8167@jocasta.intra> (raw)
In-Reply-To: <20160910220817.GA6974@jocasta.intra>

[-- Attachment #1: Type: text/plain, Size: 5694 bytes --]

Does anyone have any opinions/objections before I make this commit?

J'

On Sun, Sep 11, 2016 at 12:08:17AM +0200, John Darrington wrote:
     I suggest that we use this version and remove the existing bind-utils.
     
     J'
     
     On Sun, Sep 11, 2016 at 12:06:26AM +0200, John Darrington wrote:
          * gnu/packags/dns.scm (bind): New variable
          ---
           gnu/packages/dns.scm | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++
           1 file changed, 69 insertions(+)
          
          diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
          index 819343a..dad8079 100644
          --- a/gnu/packages/dns.scm
          +++ b/gnu/packages/dns.scm
          @@ -3,6 +3,7 @@
           ;;; Copyright ?? 2016 Mark H Weaver <mhw@netris.org>
           ;;; Copyright ?? 2016 Ricardo Wurmus <rekado@elephly.net>
           ;;; Copyright ?? 2016 Efraim Flashner <efraim@flashner.co.il>
          +;;; Copyright ?? 2016 John Darrington <jmd@gnu.org>
           ;;;
           ;;; This file is part of GNU Guix.
           ;;;
          @@ -63,6 +64,74 @@ and BOOTP/TFTP for network booting of diskless machines.")
               ;; Source files only say GPL2 and GPL3 are allowed.
               (license (list license:gpl2 license:gpl3))))
           
          +(define-public bind
          +  (package
          +    (name "bind")
          +    (version "9.10.4-P2")
          +    (source (origin
          +              (method url-fetch)
          +              (uri (string-append
          +                    "ftp://ftp.isc.org/isc/bind9/" version "/" name "-"
          +                    version ".tar.gz"))
          +              (sha256
          +               (base32
          +                "08s48h5p916ixjiwgar4w6skc20crmg7yj1y7g89c083zvw8lnxk"))))
          +    (build-system gnu-build-system)
          +    (arguments
          +     `(#:configure-flags
          +       (list (string-append "--with-openssl="
          +                            (assoc-ref %build-inputs "openssl"))
          +             (string-append "--with-dlz-mysql="
          +                            (assoc-ref %build-inputs "mysql"))
          +             (string-append "--with-pkcs11="
          +                            (assoc-ref %build-inputs "p11-kit")))
          +       #:phases
          +       ;; When and if guix provides user namespaces for the build process,
          +       ;; then the following can be uncommented and the subsequent "force-test"
          +       ;; will not be necessary.
          +       ;;
          +       ;; (modify-phases %standard-phases
          +       ;;   (add-before 'check 'set-up-loopback
          +       ;;     (lambda _
          +       ;;          (system "bin/tests/system/ifconfig.sh up"))))
          +       (modify-phases %standard-phases
          +         (add-after 'strip 'move-to-utils
          +           (lambda _
          +             (for-each
          +              (lambda (file)
          +                (let ((target  (string-append (assoc-ref %outputs "utils") file))
          +                      (src  (string-append (assoc-ref %outputs "out") file)))
          +                  (mkdir-p (dirname target))
          +                  (link src target)
          +                  (delete-file src)))
          +              '("/bin/dig" "/bin/delv" "/bin/nslookup" "/bin/host" "/bin/nsupdate"
          +                "/share/man/man1/dig.1"
          +                "/share/man/man1/host.1"
          +                "/share/man/man1/nslookup.1"
          +                "/share/man/man1/nsupdate.1"))))
          +         (replace 'check
          +           (lambda _
          +             (zero? (system* "make" "force-test")))))))
          +    (outputs `("out" "utils"))
          +    (inputs
          +     ;; it would be nice to add GeoIP and gssapi once there is package
          +     `(("libcap" ,libcap)
          +       ("libxml2" ,libxml2)
          +       ("mysql" ,mysql)
          +       ("openssl" ,openssl)
          +       ("p11-kit" ,p11-kit)))
          +    (native-inputs `(("perl" ,perl)
          +                     ("net-tools" ,net-tools)))
          +    (synopsis "An implementation of the Domain Name System")
          +    (description "BIND is an implementation of the Domain Name System (DNS)
          +protocols for the Internet.  It is a reference implementation of those
          +protocols, but it is also production-grade software, suitable for use in
          +high-volume and high-reliability applications. The name BIND stands for
          +\"Berkeley Internet Name Domain\", because the software originated in the early
          +1980s at the University of California at Berkeley.")
          +    (home-page "https://www.isc.org/downloads/bind")
          +    (license (list license:isc))))
          +
           (define-public bind-utils
             (package
               (name "bind-utils")
          -- 
          2.1.4
          
          
     
     -- 
     Avoid eavesdropping.  Send strong encrypted email.
     PGP Public key ID: 1024D/2DE827B3 
     fingerprint = 8797 A26D 0854 2EAB 0285  A290 8A67 719C 2DE8 27B3
     See http://sks-keyservers.net or any PGP keyserver for public key.
     



-- 
Avoid eavesdropping.  Send strong encrypted email.
PGP Public key ID: 1024D/2DE827B3 
fingerprint = 8797 A26D 0854 2EAB 0285  A290 8A67 719C 2DE8 27B3
See http://sks-keyservers.net or any PGP keyserver for public key.


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

  reply	other threads:[~2016-09-18 13:58 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-30 16:36 [PATCH] gnu: Add bind John Darrington
2016-08-31 17:52 ` Leo Famulari
2016-08-31 18:38   ` John Darrington
2016-09-10 19:25     ` Leo Famulari
2016-09-10 22:06       ` John Darrington
2016-09-10 22:08         ` John Darrington
2016-09-18 13:57           ` John Darrington [this message]
2016-09-18 15:03             ` Hartmut Goebel
2016-09-18 17:52               ` John Darrington
  -- strict thread matches above, loose matches on Subject: below --
2016-08-29 19:56 John Darrington
2016-08-29 20:08 ` John Darrington

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

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

  git send-email \
    --in-reply-to=20160918135758.GA8167@jocasta.intra \
    --to=john@darrington.wattle.id.au \
    --cc=guix-devel@gnu.org \
    --cc=jmd@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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.