From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32874) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fwpg7-0004P7-HI for guix-patches@gnu.org; Mon, 03 Sep 2018 10:18:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fwpg3-0000O6-1Y for guix-patches@gnu.org; Mon, 03 Sep 2018 10:18:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39436) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fwpg2-0000Nx-BC for guix-patches@gnu.org; Mon, 03 Sep 2018 10:18:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fwpg2-0003p9-4n for guix-patches@gnu.org; Mon, 03 Sep 2018 10:18:02 -0400 Subject: [bug#32625] [PATCH] gnu: Add r-abjutils. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60776) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fwpf8-00027L-62 for guix-patches@gnu.org; Mon, 03 Sep 2018 10:17:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fwpf1-0008W4-QF for guix-patches@gnu.org; Mon, 03 Sep 2018 10:17:04 -0400 Received: from pegasus.bbbm.mdc-berlin.de ([141.80.25.20]:37098) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fwpf1-0008Uf-5a for guix-patches@gnu.org; Mon, 03 Sep 2018 10:16:59 -0400 Received: from localhost (localhost [127.0.0.1]) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 32F35A81BC3 for ; Mon, 3 Sep 2018 16:16:57 +0200 (CEST) Received: from pegasus.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (pegasus.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id L15-_ZsGei6F for ; Mon, 3 Sep 2018 16:16:51 +0200 (CEST) Received: from SW-IT-P-CAS3.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Mon, 3 Sep 2018 16:16:51 +0200 (CEST) From: pimi Date: Mon, 3 Sep 2018 16:16:38 +0200 Message-ID: <20180903141638.16832-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain 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: 32625@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-abjutils): New variable. --- gnu/packages/cran.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e72eec369..35ac818d1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5062,3 +5062,37 @@ provides functionalities not found in either @code{TASSEL} or @code{r-qtl} in addition to visualization of genotypes as \"graphical genotypes\". Plotting is based on @code{r-ggplot2}.") (license license:gpl3))) + +(define-public r-abjutils + (package + (name "r-abjutils") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "abjutils" version)) + (sha256 + (base32 "0qrsc4if7aif73qp95lw6b5986c2r0jn7m39123zij8k15vc935b")))) + (build-system r-build-system) + (propagated-inputs + `(("r-devtools" ,r-devtools) + ("r-dplyr" ,r-dplyr) + ("r-glue" ,r-glue) + ("r-httr" ,r-httr) + ("r-magrittr" ,r-magrittr) + ("r-plyr" ,r-plyr) + ("r-progress" ,r-progress) + ("r-purrr" ,r-purrr) + ("r-rstudioapi" ,r-rstudioapi) + ("r-scales" ,r-scales) + ("r-stringi" ,r-stringi) + ("r-stringr" ,r-stringr) + ("r-tibble" ,r-tibble) + ("r-tidyr" ,r-tidyr))) + (home-page "https://github.com/abjur/abjutils/") + (synopsis "This package is a collection of tools for Jurimetrical analysis") + (description + "This package implements general purpose tools, such as functions for sampling +and basic manipulation of Brazilian lawsuits identification number. It also +implements functions for text cleaning, such as accentuation removal.") + (license license:expat))) -- 2.17.1