From mboxrd@z Thu Jan 1 00:00:00 1970 From: contact.ng0@cryptolab.net Subject: [PATCH 7/7] gnu: Add tinycm. Date: Tue, 31 Jan 2017 12:53:39 +0000 Message-ID: <20170131125339.18500-8-contact.ng0@cryptolab.net> References: <20160925173931.GD9499@jasmine> <20170131125339.18500-1-contact.ng0@cryptolab.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51114) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cYXvA-0006Pu-Ud for guix-devel@gnu.org; Tue, 31 Jan 2017 07:52:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cYXv9-0002hq-MG for guix-devel@gnu.org; Tue, 31 Jan 2017 07:52:28 -0500 Received: from aibo.runbox.com ([91.220.196.211]:47804) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cYXv9-0002ha-E8 for guix-devel@gnu.org; Tue, 31 Jan 2017 07:52:27 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1cYXv8-0002oU-2q for guix-devel@gnu.org; Tue, 31 Jan 2017 13:52:26 +0100 In-Reply-To: <20170131125339.18500-1-contact.ng0@cryptolab.net> 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" To: guix-devel@gnu.org Cc: ng0 From: ng0 * gnu/packages/web.scm (tinycm): New variable. --- gnu/packages/web.scm | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 67b9797bb..465e1ea8f 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -13,7 +13,7 @@ ;;; Copyright © 2016 Rene Saavedra ;;; Copyright © 2016 Ben Woodcroft ;;; Copyright © 2016 Clément Lassieur -;;; Copyright © 2016 ng0 +;;; Copyright © 2016, 2017 ng0 ;;; Copyright © 2016 Arun Isaac ;;; Copyright © 2016 Tobias Geerinckx-Rice ;;; Copyright © 2016 Bake Timmons @@ -3516,6 +3516,41 @@ objects in HTML format.") and vice-versa.") (license l:gpl2+))) +(define-public tinycm + (package + (name "tinycm") + (version "0.1.29") + (source + (origin + (method url-fetch) + (uri (pypi-uri "tinycm" version)) + (sha256 + (base32 + "0d8fsmhdv410bvz1plk32whdad5qq1ixi9a2wnnqx3dpv6cixi0y")))) + (build-system python-build-system) + (inputs + `(("python-boolexp" ,python-boolexp) + ("python-colorama" ,python-colorama) + ("python-colorlog" ,python-colorlog) + ("python-distro" ,python-distro) + ("python-networkx" ,python-networkx) + ("python-pyparsing" ,python-pyparsing) + ("python-requests" ,python-requests) + ("python-ruamel.yaml" ,python-ruamel.yaml) + ("python-tabulate" ,python-tabulate) + ("python-typing" ,python-typing))) + (home-page "https://github.com/MartijnBraam/TinyCM") + (synopsis "Tiny Configuration Management tool") + (description + "The Tiny Configuration Manager. This is a very small +configuration management tool for when you need Puppet but for a way +smaller deployment. This tool doesn't use a special DSL for defining +your configuration, just plain YAML. Configuration manifests are saved +as a somename.cm.yml file and importable modules are somemodule.mod.yml. +The configuration files cannot contain any executable code but mode +complicated definitions can be created as python modules.") + (license l:expat))) + (define-public gumbo-parser (package (name "gumbo-parser") -- 2.11.0