;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus ;;; Copyright © 2017, 2018 Efraim Flashner ;;; Copyright © 2017 Eric Bavier ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages augeas) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix utils) #:use-module (guix build-system gnu) #:use-module (gnu packages) #:use-module (gnu packages readline) #:use-module (gnu packages pkg-config) #:use-module (gnu packages xml)) (define-public augeas (package (name "augeas") (version "1.11.0") (source (origin (method url-fetch) (uri (string-append "http://download.augeas.net/augeas-" version ".tar.gz")) (sha256 (base32 "1c507qj6dfn2dnsl27w94zs9r45xrgm07y8bqba9ry2s0psfhg1r")))) (build-system gnu-build-system) ;; Marked as "required" in augeas.pc (propagated-inputs `(("libxml2" ,libxml2))) (inputs `(("readline" ,readline))) (native-inputs `(("pkg-config" ,pkg-config))) (home-page "http://augeas.net/") (synopsis "Edit configuration files programmatically") (description "Augeas is a library and command line tool for programmatically editing configuration files in a controlled manner. Augeas exposes a tree of all configuration settings and a simple local API for manipulating the tree. Augeas then modifies underlying configuration files according to the changes that have been made to the tree; it does as little modeling of configurations as possible, and focuses exclusivley on transforming the tree-oriented syntax of its public API to the myriad syntaxes of individual configuration files.") (license license:lgpl2.1+))) d2a45bf614b15010fe4827b24049&showmsg=1'>Expand)Author 2019-05-02gnu: php: Update to 7.3.5....Julien Lepiller 2019-05-01gnu: php: Disable failing tests on armhf....Julien Lepiller 2019-04-04gnu: php: Update to 7.3.4....Julien Lepiller 2019-03-29gnu: php: Fix typo....Ludovic Courtès 2019-03-28gnu: php: Disable failing tests on armhf....Julien Lepiller 2019-03-07gnu: php: Update to 7.3.3....Julien Lepiller 2019-02-04gnu: php: Fix test failure....Oleg Pykhalov 2019-01-16gnu: php: Update to 7.3.1....Julien Lepiller 2019-01-16gnu: Move dbm databases to new module....Ricardo Wurmus 2019-01-16gnu: Move sqlite to separate module....Ricardo Wurmus 2019-01-01gnu: php-with-bcmath: Deprecate in favour of 'php'....Oleg Pykhalov 2018-12-29gnu: php: Build bcmath....Ricardo Wurmus 2018-12-17gnu: Add php-with-bcmath....Oleg Pykhalov 2018-12-13gnu: php: Update to 7.3.0....Oleg Pykhalov 2018-11-14Merge branch 'master' into core-updatesMarius Bakke 2018-11-12gnu: php: Update to 7.2.12....Julien Lepiller