From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:52436) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gzdJ6-00083Z-QT for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gzdJ4-0005J2-Qd for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:12 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42222) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gzdJ1-0005F7-1f for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:08 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gzdJ0-0001d9-S7 for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:06 -0500 Subject: [bug#34696] [PATCH] gnu: add r-rematch2. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:52003) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gzdIG-0007a2-3M for guix-patches@gnu.org; Fri, 01 Mar 2019 03:13:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gzdDf-0006kO-Ed for guix-patches@gnu.org; Fri, 01 Mar 2019 03:08:36 -0500 Received: from mail-wm1-x341.google.com ([2a00:1450:4864:20::341]:39772) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gzdDd-0006hY-GF for guix-patches@gnu.org; Fri, 01 Mar 2019 03:08:33 -0500 Received: by mail-wm1-x341.google.com with SMTP id z84so11304101wmg.4 for ; Fri, 01 Mar 2019 00:08:32 -0800 (PST) Received: from lenovo.iit.local ([90.147.180.254]) by smtp.gmail.com with ESMTPSA id a9sm4181699wmm.10.2019.03.01.00.08.30 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 01 Mar 2019 00:08:30 -0800 (PST) From: =?UTF-8?Q?Nicol=C3=B2?= Balzarotti Date: Fri, 1 Mar 2019 09:07:54 +0100 Message-Id: <20190301080758.5548-4-anothersms@gmail.com> In-Reply-To: <20190301080758.5548-1-anothersms@gmail.com> References: <20190301080758.5548-1-anothersms@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 34696@debbugs.gnu.org --- gnu/packages/cran.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index a9b775f67e..6ab5ecc8da 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -10757,3 +10757,23 @@ using @code{S3}.") "Checks adherence to a given style, syntax errors and possible semantic issues. Supports on the fly checking of R code edited with 'RStudio IDE', 'Emacs', 'Vim', 'Sublime Text' and 'Atom'.") (license license:expat))) +(define-public r-rematch2 + (package + (name "r-rematch2") + (version "2.0.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "rematch2" version)) + (sha256 + (base32 + "16k0i5p7fa3qfxv59ijyn638wpz8n4jrkrnilqmh5g9l8f8bn4h6")))) + (build-system r-build-system) + (propagated-inputs `(("r-tibble" ,r-tibble))) + (home-page + "https://github.com/r-lib/rematch2#readme") + (synopsis + "Tidy Output from Regular Expression Matching") + (description + "Wrappers on 'regexpr' and 'gregexpr' to return the match results in tidy data frames.") + (license license:expat))) -- 2.20.1