aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/augeas.scm
blob: b3c4803e04ca18f722668bc2a15c11293a8ab59f (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; 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 <http://www.gnu.org/licenses/>.

(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
     `(("libxml2" ,libxml2)))
    (inputs
     `(("readline" ,readline)))
    (native-inputs
     `(("pkg-config" ,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+)))
with-libsoup2): Add further information about where this package is used and upstream tracker for libsoup3. John Kehayias 2021-11-11gnu: Add webkitgtk-with-libsoup2...* gnu/packages/webkit.scm (webkitgtk-with-libsoup2): New variable. Maxim Cournoyer 2021-11-11gnu: webkitgtk: Add a debug output....* gnu/packages/webkit.scm[outputs]: Add a debug output. Maxim Cournoyer 2021-11-11gnu: webkitgtk: Use libsoup 3 and build with GCC....Clang is not needed when building with libsoup 3. * gnu/packages/webkit.scm (webkitgtk): Delete trailing #t. [configure-flags]: Remove -DUSE_SOUP2. [phases]{prepare-build-environment}: Remove phase. [native-inputs]: Remove clang. Maxim Cournoyer 2021-11-07gnu: webkitgtk: Improve the 32-bit x86 target check....* gnu/packages/webkit.scm (webkitgtk)[arguments]: In the 'prepare-build-environment' phase, use 'target-x86-32?'. Mark H Weaver 2021-11-06gnu: webkitgtk: Disable SSE2 when not on x86_64....* gnu/packages/webkit.scm (webkitgtk)[#:phases]: Add ‘disable-sse2’ if the current (target) system is not an x86_64 one. Liliana Marie Prikler 2021-11-06gnu: webkitgtk: Fix build on i686-linux....Fixes <https://bugs.gnu.org/51591>. * gnu/packages/webkit.scm (webkitgtk)[arguments]: Use quasiquote for the argument list. When building on i686-linux, insert a 'substitute*' form in the 'prepare-build-environment' phase that disables the use of '__builtin_mul_overflow'. Mark H Weaver 2021-11-04Revert "gnu: webkitgtk: Use GCC 11 instead of Clang."...This reverts commit 63f78f6a6ea0d33f3b1fa68c7285cfb865677211. It led to broken builds of epiphany, gnome-online-accounts, yelp, zenity, surf, and possibly others. Mark H Weaver 2021-11-04gnu: webkitgtk: Use GCC 11 instead of Clang....WebkitGTK still compiles fine on x86_64 using GCC 11. This is the only architecture known to compile currently, as i686 fails with Clang and others fail due to unsatisfied dependencies. * gnu/packages/webkit.scm (webkitgtk)[#:phases]: Drop ‘prepare-build-environment’. [native-inputs]: Drop clang, add gcc. Liliana Marie Prikler 2021-11-03gnu: webkitgtk: Fix the build....This is a followup to commit 8797a07ac0c2f2cce93b6642942a2654eaec1c69. * gnu/packages/webkit.scm (webkitgtk)[arguments]: Add "-DUSE_SOUP2=ON" to the configure flags. Add the 'prepare-build-environment' phase, which arranges to use clang for compilation. [native-inputs]: Add clang-11. [inputs]: Add lcms. Mark H Weaver 2021-11-01gnu: WebKitGTK: Update to 2.34.1 [fixes CVE-2021-{30846,30851,42762}]....https://webkitgtk.org/security/WSA-2021-0006.html * gnu/packages/webkit.scm (webkitgtk): Update to 2.34.1. Leo Famulari 2021-09-22gnu: WebKitGTK: Update to 2.32.4....* gnu/packages/webkit.scm (webkitgtk): Update to 2.32.4. Leo Famulari 2021-07-27gnu: WebKitGTK: Update to 2.32.3 [security fixes]...Fixes CVE-2021-{21775,21779,30663,30665,30689,30724,30749,30795,30797,30799}. https://webkitgtk.org/security/WSA-2021-0004.html * gnu/packages/webkit.scm (webkitgtk): Update to 2.32.2. Leo Famulari