aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2017-07-23 18:34:30 -0400
committerLeo Famulari <leo@famulari.name>2017-07-23 19:05:37 -0400
commit5391c6c9d224bba4732d91471da6d314bc90dd01 (patch)
treea79b16282c0bfd8a5883dd9bf0ea4770cd8b9def /gnu
parentc67d80563fc7021484602889454de534469f2785 (diff)
downloadguix-5391c6c9d224bba4732d91471da6d314bc90dd01.tar.gz
guix-5391c6c9d224bba4732d91471da6d314bc90dd01.zip
gnu: bind: Update to 9.11.1-P3.
This fixes a regression introduced in the fix for CVE-2017-3142, in BIND 9.11.1-P2, commit faa1369e3cb72bda4ba8b63029d0ad780df9cf78. See 'CHANGELOG' in the source distribution for more information. * gnu/packages/dns.scm (isc-bind): Update to 9.11.1-P3.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/dns.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index ccb13d4fec..e29708a3a6 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -99,7 +99,7 @@ and BOOTP/TFTP for network booting of diskless machines.")
(define-public isc-bind
(package
(name "bind")
- (version "9.11.1-P2")
+ (version "9.11.1-P3")
(source (origin
(method url-fetch)
(uri (string-append
@@ -107,7 +107,7 @@ and BOOTP/TFTP for network booting of diskless machines.")
version ".tar.gz"))
(sha256
(base32
- "19gyh7yij6cpvk5b199ghhns5wmsz67d2rpgvl91dbkm2m1wclxz"))))
+ "1x6cfwkcv6nwc0mh5fzv70f38nl04yhgq90gr5nrjiif8dsnwhjj"))))
(build-system gnu-build-system)
(outputs `("out" "utils"))
(inputs
ead of 'cons*'.Ludovic Courtès * gnu/installer/services.scm (system-services->configuration): Use 'append' and 'list' instead of 'cons*'. 2019-04-08installer: Generate 'set-xorg-configuration' snippet.Ludovic Courtès * gnu/installer/services.scm (system-services->configuration): Add 'set-xorg-configuration' service. * gnu/installer/steps.scm (format-configuration): Add 'xorg' service module. 2019-04-08installer: Xfce service uses the 'service' form.Ludovic Courtès * gnu/installer/services.scm (%system-services): Adjust Xfce snippet to use the 'service' form. 2019-04-07installer: Internationalize service "names".Ludovic Courtès * gnu/installer/services.scm (%system-services): Mark networking service names with 'G_'. * gnu/installer/newt/services.scm (run-networking-cbt-page): Pass 'system-service-name' through 'G_'. 2019-04-07installer: Offer NM, Connman, and DHCP to non-desktop installs.Ludovic Courtès * gnu/installer/services.scm (%system-services): Add NetworkManager, Connman, and the DHCP client. * gnu/installer/newt/services.scm (run-networking-cbt-page): Add 'network-management?' parameter and honor it. (run-services-page): Adjust call accordingly. 2019-04-07installer: Add dialog to select networking services.Ludovic Courtès * gnu/installer/newt/services.scm (run-networking-cbt-page): New procedure. (run-services-page): Call it. * gnu/installer/services.scm (%system-services): Add OpenSSH and Tor. (networking-system-service?): New procedure. * gnu/installer/steps.scm (format-configuration): Add 'networking' and 'ssh' to the service modules. 2019-04-07installer: Generalize desktop environments to system services.Ludovic Courtès * gnu/installer/services.scm (<desktop-environment>): Rename to... (<system-service>): ... this. Add a 'type' field. (%desktop-environments): Rename to... (%system-services): ... this. (desktop-system-service?): New procedure. (desktop-environments->configuration): Rename to... (system-services->configuration): ... this. Determine the base list of services based on whether SERVICES contains at least one "desktop" service. * gnu/installer/newt/services.scm (run-desktop-environments-cbt-page): Adjust accordingly. * gnu/installer.scm (installer-steps): Likewise. 2019-03-27services: Deprecate 'xfce-desktop-service'.Ludovic Courtès * gnu/services/desktop.scm (xfce-desktop-service-type)[default-value] [description]: New fields. (xfce-desktop-service): Deprecate. * gnu/system/examples/desktop.tmpl: Use the (service …) form. * gnu/installer/services.scm (%desktop-environments): Add TODO comment. * doc/guix.texi (Desktop Services): Adjust accordingly, and fix spelling of "Xfce" throughout. 2019-03-27services: Deprecate 'gnome-desktop-service'.Ludovic Courtès * gnu/services/desktop.scm (gnome-desktop-service-type)[default-value]: New field. (gnome-desktop-service): Deprecate. * gnu/installer/services.scm (%desktop-environments): Use the (service …) form for GNOME. * gnu/system/examples/desktop.tmpl: Likewise. * doc/guix.texi (Desktop Services): Adjust accordingly. 2019-03-27installer: Use the (service …) form for MATE.Ludovic Courtès * gnu/installer/services.scm (%desktop-environments): Use 'mate-desktop-service-type' for MATE. 2019-01-17installer: Add services page.Mathieu Othacehe Add a page to select services, for now only desktop environments choice is available. * gnu/installer.scm (steps): Add services step. * gnu/installer/newt.scm (newt-installer): Add services-page field. * gnu/installer/newt/services.scm: New file. * gnu/installer/record.scm (installer): Add services-page field. * gnu/installer/services.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add new files. * po/guix/POTFILES.in: Add new files.