From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:48277) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hRgsp-00013I-5g for guix-patches@gnu.org; Fri, 17 May 2019 13:43:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hRgso-0006iH-5d for guix-patches@gnu.org; Fri, 17 May 2019 13:43:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45369) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hRgso-0006hx-2v for guix-patches@gnu.org; Fri, 17 May 2019 13:43:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hRgsn-0006Ww-Vy for guix-patches@gnu.org; Fri, 17 May 2019 13:43:02 -0400 Subject: [bug#35782] [PATCH] gnu: Add mallard-ducktype Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:48055) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hRgs3-0000Ud-8e for guix-patches@gnu.org; Fri, 17 May 2019 13:42:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hRgs1-0005ZH-SQ for guix-patches@gnu.org; Fri, 17 May 2019 13:42:15 -0400 Received: from minsky.hcoop.net ([104.248.1.95]:46724) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hRgs1-0005WV-PJ for guix-patches@gnu.org; Fri, 17 May 2019 13:42:13 -0400 Received: from marsh.hcoop.net ([45.55.52.66]) by minsky.hcoop.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hRgs0-0003qY-L4 for guix-patches@gnu.org; Fri, 17 May 2019 13:42:12 -0400 Date: Fri, 17 May 2019 13:42:12 -0400 (EDT) From: Jack Hill Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; BOUNDARY="925712948-883311471-1558114932=:5164" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35782@debbugs.gnu.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --925712948-883311471-1558114932=:5164 Content-Type: text/plain; format=flowed; charset=ISO-8859-15 Content-Transfer-Encoding: 8BIT * gnu/packages/python-xyz.scm: (mallard-ducktype) new variable. --- gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 5322b70759..1c337e0685 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -59,6 +59,7 @@ ;;; Copyright © 2018 Vagrant Cascadian ;;; Copyright © 2019 Brett Gilio ;;; Copyright © 2019 Sam +;;; Copyright © 2019 Jack Hill ;;; ;;; This file is part of GNU Guix. ;;; @@ -3224,6 +3225,32 @@ Markdown input files, and more. Pelican uses Jinja2 for templating and is very extensible.") (license license:agpl3+))) +(define-public mallard-ducktype + (package + (name "mallard-ducktype") + (version "1.0.1") + (source + (origin + (method git-fetch) + ;; git-reference because a proper source tarball is not available + ;; https://lists.gnu.org/archive/html/guix-devel/2019-05/msg00209.html + (uri (git-reference + (url "https://github.com/projectmallard/mallard-ducktype.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0crland0kmpsyjfmnflcw7gaqy5b87b6ah17cmr9d5z1kyazf54n")))) + (build-system python-build-system) + (home-page "http://projectmallard.org") + (synopsis "Convert Ducktype to Mallard documentation markup") + (description + "Ducktype is a lightweight syntax that can represent all the semantics +of the Mallard XML documentation system. Ducktype files can be converted to +Mallard using the @command{ducktype} tool. The yelp-tools package +provides additional functionality on the produced Mallard documents.") + (license license:expat))) + (define-public python-scikit-image (package (name "python-scikit-image") -- 2.21.0 --925712948-883311471-1558114932=:5164--