;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus ;;; Copyright © 2017, 2018 Efraim Flashner ;;; Copyright © 2017 Eric Bavier ;;; Copyright © 2020 Tobias Geerinckx-Rice ;;; ;;; 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.12.0") (source (origin (method url-fetch) (uri (string-append "http://download.augeas.net/augeas-" version ".tar.gz")) (sha256 (base32 "11ybhb13wkkilsn7b416a1dn61m1xrq0lbdpkhp5w61jrk4l469j")))) (build-system gnu-build-system) ;; Marked as "required" in augeas.pc. (propagated-inputs (list libxml2)) (inputs (list readline)) (native-inputs (list pkg-config)) (home-page "https://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+))) 3162db148&showmsg=1'>Expand)Author 2023-08-02gnu: pcre2: Enable JIT support of powerpc-linux....* gnu/packages/pcre.scm (pcre2)[arguments]: When building for powerpc-linux use the compile flag to enable jit support. Efraim Flashner 2023-08-02gnu: pcre: Enable JIT on powerpc-linux....* gnu/packages/pcre.scm (pcre)[arguments]: When building for powerpc-linux use the compile flag to enable jit support. Efraim Flashner 2022-06-30gnu: pcre: Use G-expression....* gnu/packages/pcre.scm (pcre)[arguments]: Use gexp. Marius Bakke 2022-06-30gnu: pcre2: Use G-expression....* gnu/packages/pcre.scm (pcre2)[arguments]: Convert to gexp. Marius Bakke 2022-06-30gnu: pcre2: Update to 10.40....* gnu/packages/pcre.scm (pcre2): Update to 10.40. [source](uri): Use new download location. Marius Bakke 2022-06-09gnu: pcre: Update with new source URI....* gnu/packages/pcre.scm (pcre)[source]: Download from sourceforge mirror. Efraim Flashner 2022-01-27gnu: pcre2: Fix building on riscv64-linux....* gnu/packages/pcre.scm (pcre2)[arguments]: Adjust configure-flags to not build with JIT when building for riscv64-linux. Efraim Flashner 2022-01-27gnu: pcre: Fix building on riscv64-linux....* gnu/packages/pcre.scm (pcre)[arguments]: Adjust configure-flags to not build with JIT when building for riscv64-linux. Efraim Flashner