From patchwork Tue Mar 12 20:20:02 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Efraim Flashner X-Patchwork-Id: 1396 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id CC6FA16DA4; Tue, 12 Mar 2019 20:24:00 +0000 (GMT) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTP id 5CA2316DA1 for ; Tue, 12 Mar 2019 20:24:00 +0000 (GMT) Received: from localhost ([127.0.0.1]:60778 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h3nwN-0004Gr-S8 for patchwork@mira.cbaines.net; Tue, 12 Mar 2019 16:23:59 -0400 Received: from eggs.gnu.org ([209.51.188.92]:48558) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h3ntn-00025h-HG for guix-patches@gnu.org; Tue, 12 Mar 2019 16:21:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h3nth-0006T2-WF for guix-patches@gnu.org; Tue, 12 Mar 2019 16:21:16 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:55409) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h3ntd-0006OL-Bz for guix-patches@gnu.org; Tue, 12 Mar 2019 16:21:09 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h3ntd-0003ll-4i for guix-patches@gnu.org; Tue, 12 Mar 2019 16:21:09 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#34831] [PATCH 13/25] gnu: Add perl6-meta6. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 12 Mar 2019 20:21:09 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 34831 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 34831@debbugs.gnu.org Received: via spool by 34831-submit@debbugs.gnu.org id=B34831.155242205014225 (code B ref 34831); Tue, 12 Mar 2019 20:21:09 +0000 Received: (at 34831) by debbugs.gnu.org; 12 Mar 2019 20:20:50 +0000 Received: from localhost ([127.0.0.1]:40675 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h3ntJ-0003hC-Vt for submit@debbugs.gnu.org; Tue, 12 Mar 2019 16:20:50 -0400 Received: from flashner.co.il ([178.62.234.194]:49728) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h3ntI-0003fr-96 for 34831@debbugs.gnu.org; Tue, 12 Mar 2019 16:20:48 -0400 Received: from localhost (unknown [31.210.177.221]) by flashner.co.il (Postfix) with ESMTPSA id A7655407DE; Tue, 12 Mar 2019 20:20:42 +0000 (UTC) From: Efraim Flashner Date: Tue, 12 Mar 2019 22:20:02 +0200 Message-Id: <20190312202014.31224-13-efraim@flashner.co.il> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190312201608.30892-1-efraim@flashner.co.il> References: <20190312201608.30892-1-efraim@flashner.co.il> MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.51.188.43 X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/perl6.scm (perl6-meta6): New variable. --- gnu/packages/perl6.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/perl6.scm b/gnu/packages/perl6.scm index 845cfae3f2..3fdae92842 100644 --- a/gnu/packages/perl6.scm +++ b/gnu/packages/perl6.scm @@ -364,6 +364,40 @@ It will of course also be needed in classes thar are going to use create an object from a JSON representation of an object.") (license license:expat)))) +(define-public perl6-meta6 + (package + (name "perl6-meta6") + (version "0.0.23") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jonathanstowe/META6.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1xnlaamfbdlfb2zidim3bbc4mawsrg6qxhxi6gbld46z1cyry1cw")))) + (build-system rakudo-build-system) + (propagated-inputs + `(("perl6-json-class" ,perl6-json-class))) + (native-inputs + `(("perl6-json-fast" ,perl6-json-fast))) + (home-page "https://github.com/jonathanstowe/META6") + (synopsis "Do things with Perl 6 [META files]") + (description "This provides a representation of the Perl 6 META files +specification - the META file data can be read, created, parsed and written in a +manner that is conformant with the specification. + +Where they are known about it also makes allowance for @quot{customary} usage in +existing software (such as installers and so forth.) + +The intent of this is allow the generation and testing of META files for module +authors, so it can provide meta-information whether the attributes are mandatory +as per the spec and where known the places that @quot{customary} attributes are +used.") + (license license:artistic2.0))) + (define-public perl6-tap-harness (package (name "perl6-tap-harness")