From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH] gnu: Add Augeas. Date: Thu, 21 Jan 2016 16:05:43 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/x-patch; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48502) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aMGo8-0003sw-BV for guix-devel@gnu.org; Thu, 21 Jan 2016 10:06:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aMGo3-0005sa-C7 for guix-devel@gnu.org; Thu, 21 Jan 2016 10:05:56 -0500 Received: from venus.bbbm.mdc-berlin.de ([141.80.25.30]:59023) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aMGo3-0005s7-1d for guix-devel@gnu.org; Thu, 21 Jan 2016 10:05:51 -0500 Received: from localhost (localhost [127.0.0.1]) by venus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 910ED380EC6 for ; Thu, 21 Jan 2016 16:05:50 +0100 (CET) Received: from venus.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (venus.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AYti0aF9xhPk for ; Thu, 21 Jan 2016 16:05:43 +0100 (CET) Received: from HTCAONE.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) by venus.bbbm.mdc-berlin.de (Postfix) with ESMTP for ; Thu, 21 Jan 2016 16:05:43 +0100 (CET) Content-Disposition: inline; filename="0001-gnu-Add-Augeas.patch" List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel >From 546a8651db1c420fee841a2da6474593e4c9aa93 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 21 Jan 2016 16:03:26 +0100 Subject: [PATCH] gnu: Add Augeas. * gnu/packages/augeas.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. --- gnu-system.am | 1 + gnu/packages/augeas.scm | 59 +++++++++++++++++++++++++++++++++++++++++++= ++++++ 2 files changed, 60 insertions(+) create mode 100644 gnu/packages/augeas.scm diff --git a/gnu-system.am b/gnu-system.am index 3426056..c66e5ea 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -42,6 +42,7 @@ GNU_SYSTEM_MODULES =3D \ gnu/packages/attr.scm \ gnu/packages/audacity.scm \ gnu/packages/audio.scm \ + gnu/packages/augeas.scm \ gnu/packages/autogen.scm \ gnu/packages/autotools.scm \ gnu/packages/avahi.scm \ diff --git a/gnu/packages/augeas.scm b/gnu/packages/augeas.scm new file mode 100644 index 0000000..95b96ca --- /dev/null +++ b/gnu/packages/augeas.scm @@ -0,0 +1,59 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright =C2=A9 2016 Ricardo Wurmus +;;; +;;; 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 (a= t +;;; 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.4.0") + (source (origin + (method url-fetch) + (uri (string-append "http://download.augeas.net/augeas-" + version ".tar.gz")) + (sha256 + (base32 + "0c2vncn0afmgwggnqa5s5z7m3zbcc66bi8v9m1h9w0i9q9xax7v5"))= )) + (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 edi= ting +configuration files in a controlled manner. Augeas exposes a tree of al= l +configuration settings and a simple local API for manipulating the tree. +Augeas then modifies underlying configuration files according to the cha= nges +that have been made to the tree; it does as little modeling of configura= tions +as possible, and focuses exclusivley on transforming the tree-oriented s= yntax +of its public API to the myriad syntaxes of individual configuration fil= es.") + (license license:lgpl2.1+))) --=20 2.1.0