From unknown Sun Jun 22 17:14:19 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#62733] [PATCH] gnu: Add r-littler Resent-From: kyle Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 09 Apr 2023 03:15:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 62733 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 62733@debbugs.gnu.org Cc: rekado@elephly.net, Kyle Andrews X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16810100509812 (code B ref -1); Sun, 09 Apr 2023 03:15:02 +0000 Received: (at submit) by debbugs.gnu.org; 9 Apr 2023 03:14:10 +0000 Received: from localhost ([127.0.0.1]:59984 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1plLVJ-0002YB-J9 for submit@debbugs.gnu.org; Sat, 08 Apr 2023 23:14:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:39302) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1plLVI-0002Y4-EC for submit@debbugs.gnu.org; Sat, 08 Apr 2023 23:14:08 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1plLVI-0006S2-1Q for guix-patches@gnu.org; Sat, 08 Apr 2023 23:14:08 -0400 Received: from mout02.posteo.de ([185.67.36.66]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1plLVF-0000v5-VH for guix-patches@gnu.org; Sat, 08 Apr 2023 23:14:07 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id E8327240195 for ; Sun, 9 Apr 2023 05:14:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1681010042; bh=OxWxp+Crjc4Q1H50V3/OC9x8aEjyjeH8qMil5FinPU0=; h=From:To:Cc:Subject:Date:From; b=DeM8uRnQ+QsXQ0X0BW71nEMZBcKOF0C/6s0xX0sVYoarsfTWfg5hYhwy252Y9UHjp aS74NQ1uZbTcyjWZsUz/0MbtBb+VRv3ULuB2O6AtPGjBwaQmWTaJo5e5Z8fw97U0Vg 69fk7778ALMKFo2P5LXOGLJuQ2Vb44CmxR3/kcU8/3EjiuK7FdKACU9tHkW2Y+qpwk XIqdXaK2XXPhVsDKeZG4U88n8KdDg5uhhCVr8iEYB1R+NF2ZqCatLqA0OQOyTm1xA7 FmuSpJ0vQhruUuYfFMondvrb52X7lhrI7YIjFpZppb0ctweDapwzeQGTyeDLd/EaR3 xjqUeJO7C+TDw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4PvHJ657fJz6tm4; Sun, 9 Apr 2023 05:13:58 +0200 (CEST) From: kyle Date: Sun, 9 Apr 2023 03:13:56 +0000 Message-Id: <9aa99d67ff185fdd557401c8cf6f3c90638a37c3.1681010036.git.kyle@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.66; envelope-from=kyle@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) From: Kyle Andrews --- gnu/packages/statistics.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 628057a189..e61d06721e 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1010,6 +1010,42 @@ (define-public r-labeling algorithms.") (license license:expat))) +(define-public r-littler + (package + (name "r-littler") + (version "0.3.18") + (source (origin + (method url-fetch) + (uri (cran-uri "littler" version)) + (sha256 + (base32 + "1lp6a62g3yhzr4pv9kynibv7k9pd546w6hifs1aficyxbyg4dgqq")))) + (properties `((upstream-name . "littler"))) + (build-system r-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'install 'add-to-path + (lambda _ + (mkdir (string-append #$output "/bin")) + (copy-file "inst/bin/r" + (string-append #$output "/bin/r"))))))) + (inputs (list icu4c)) + (native-inputs + (list r-simplermarkdown automake autoconf zlib)) + (home-page "https://github.com/eddelbuettel/littler") + (synopsis "R at the Command-Line via 'r'") + (description + "This package provides a scripting and command-line front-end is provided by r +(aka littler') as a lightweight binary wrapper around the GNU R language and +environment for statistical computing and graphics. While R can be used in +batch mode, the r binary adds full support for both shebang'-style scripting +(i.e. using a hash-mark-exclamation-path expression as the first line in +scripts) as well as command-line use in standard Unix pipelines. In other +words, r provides the R language without the environment.") + (license license:gpl2+))) + (define-public r-magrittr (package (name "r-magrittr") -- 2.39.2 From unknown Sun Jun 22 17:14:19 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#62733] [PATCH] gnu: Add r-littler Resent-From: kyle Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 09 Apr 2023 13:38:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 62733 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 62733@debbugs.gnu.org Cc: rekado@elephly.net, Kyle Andrews Received: via spool by 62733-submit@debbugs.gnu.org id=B62733.168104742711831 (code B ref 62733); Sun, 09 Apr 2023 13:38:01 +0000 Received: (at 62733) by debbugs.gnu.org; 9 Apr 2023 13:37:07 +0000 Received: from localhost ([127.0.0.1]:60384 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1plVEA-00034k-L6 for submit@debbugs.gnu.org; Sun, 09 Apr 2023 09:37:07 -0400 Received: from mout01.posteo.de ([185.67.36.65]:52879) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1plVE8-00034F-QB for 62733@debbugs.gnu.org; Sun, 09 Apr 2023 09:37:05 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 9E2ED2400AA for <62733@debbugs.gnu.org>; Sun, 9 Apr 2023 15:36:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1681047418; bh=5jXEsp2w6k2CYoj70qdhmXHsEdFj9HQ94bWYr5X8CHc=; h=From:To:Cc:Subject:Date:From; b=N62NQIJBk1pNcG13paSehhRe5aoBH/7cQo5aUYX5A23iOdaUkzkByHC34k3EPV4UP mQBzsy59lTMId0mUwlYwUAkWCt3J8yVsRtGDzxsHu/1pzK2G6HX2xVG798PeCKOPAi oPnsdStYZCt6g4Omg93vtGIYvAahB2gkvretYqBDC0/sZRCGmbPVdk663vZAwZUJmk /2dma9/JQO8vkDv/vJQaGEWELvfNm35Mox8BU4EHA325IkG82mbjnWZ6b47E3JeNGI PriF+1t2rGwOM2+YsvEBCVMw8gyML0HA/9aO5Nf7CHOdPcbvz4/AOGwlsdE9EpKSTo wzYY9Z9Mmne9A== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4PvY6w5Gjfz9rxQ; Sun, 9 Apr 2023 15:36:56 +0200 (CEST) From: kyle Date: Sun, 9 Apr 2023 13:36:54 +0000 Message-Id: In-Reply-To: <62733@debbugs.gnu.org> References: <62733@debbugs.gnu.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) From: Kyle Andrews --- gnu/packages/statistics.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 628057a189..d057f52f08 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1010,6 +1010,42 @@ (define-public r-labeling algorithms.") (license license:expat))) +(define-public r-littler + (package + (name "r-littler") + (version "0.3.18") + (source (origin + (method url-fetch) + (uri (cran-uri "littler" version)) + (sha256 + (base32 + "1lp6a62g3yhzr4pv9kynibv7k9pd546w6hifs1aficyxbyg4dgqq")))) + (properties `((upstream-name . "littler"))) + (build-system r-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'install 'add-to-path + (lambda _ + (install-file + "inst/bin/r" + (string-append #$output "/bin"))))))) + (inputs (list icu4c)) + (native-inputs + (list r-simplermarkdown automake autoconf zlib pkg-config)) + (home-page "https://github.com/eddelbuettel/littler") + (synopsis "R at the Command-Line via 'r'") + (description + "This package provides a scripting and command-line front-end is provided by r +(aka littler') as a lightweight binary wrapper around the GNU R language and +environment for statistical computing and graphics. While R can be used in +batch mode, the r binary adds full support for both shebang'-style scripting +(i.e. using a hash-mark-exclamation-path expression as the first line in +scripts) as well as command-line use in standard Unix pipelines. In other +words, r provides the R language without the environment.") + (license license:gpl2+))) + (define-public r-magrittr (package (name "r-magrittr") -- 2.39.2 From unknown Sun Jun 22 17:14:19 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#62733] [PATCH] gnu: Add r-littler Resent-From: "(" Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 09 Apr 2023 13:52:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 62733 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: "kyle" , <62733@debbugs.gnu.org> Cc: rekado@elephly.net Received: via spool by 62733-submit@debbugs.gnu.org id=B62733.168104827813426 (code B ref 62733); Sun, 09 Apr 2023 13:52:01 +0000 Received: (at 62733) by debbugs.gnu.org; 9 Apr 2023 13:51:18 +0000 Received: from localhost ([127.0.0.1]:60396 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1plVRt-0003UU-Pr for submit@debbugs.gnu.org; Sun, 09 Apr 2023 09:51:17 -0400 Received: from knopi.disroot.org ([178.21.23.139]:52802) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1plVRr-0003UK-9L for 62733@debbugs.gnu.org; Sun, 09 Apr 2023 09:51:15 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id B1008401EC; Sun, 9 Apr 2023 15:51:13 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PUb3NAW_5qkP; Sun, 9 Apr 2023 15:51:12 +0200 (CEST) Content-Type: multipart/signed; boundary=fafb7f3f1cea364aec99acb330f88e5752021c19e394aaf945054e5af2a9; micalg=pgp-sha512; protocol="application/pgp-signature" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1681048272; bh=6TkUvdhPqthoiNLETrb8i2FnhMXI+QGU9wlp5bJw+aY=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=Lr+3bn+sNEPvA2vFGPrpx7/NL37Qmuicw9Xj1lOQv23xCqOPgOr8lmTdoKACKSYLk yhM5YnLU8Fxn6yhyBlsZXrqr8Ahp9RC5cvaMGC/ulXy4ejViYymKhayIim8N+Quuil F6Xk5OnluaBsbIkZS2Jxo3pvkdVme+2A85P4oSK8w4RygqKBIYkFwWp+ZrE62V8WKO 7EKkFt1EGIZ2Oq6UHh/b56DjeHMdztkSwGU9XdJKFLnQUPHSAgFA6/uI8WGvPBLztc ElzWL0Qig1S3DbyGWLCH2kGf7f3n/d3XMimGx0rnlZrvhBhxz8H5YNtaD4Mc6vzc6p kAYcwOP/Ud3AA== Date: Sun, 09 Apr 2023 14:51:08 +0100 Message-Id: From: "(" References: <62733@debbugs.gnu.org> In-Reply-To: X-Spam-Score: 0.1 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.9 (/) --fafb7f3f1cea364aec99acb330f88e5752021c19e394aaf945054e5af2a9 Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 On Sun Apr 9, 2023 at 2:36 PM BST, kyle wrote: > + (native-inputs > + (list r-simplermarkdown automake autoconf zlib pkg-config)) zlib should be a regular input -- ( --fafb7f3f1cea364aec99acb330f88e5752021c19e394aaf945054e5af2a9 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQGzBAABCgAdFiEE6Vh10NblKE5doNlW7ImHg/nqI20FAmQyws0ACgkQ7ImHg/nq I227DQv/dBpgSLobkbv+hI29lWJ+9ib1ESklILqau+Y3PMD4kOWk3luA7df+RWEM 3bgaSnUx3zuaV/4ZG5ZnJDq3T+YOIapoGXPSqAfEXVWVl+kmPNoprPXERASYkeHQ 7N9dpkcPC/m/kkz7nnJ2v4r/UNe9C696B0nuKpDMhrklQew5m29eDbQNflTTuXGM 3fMZMs8JG0LOi1670pRfUYE7tLfnWwqpU9YHQYa7N/N5uZHbqZHZ9v+Y5MxibeCb M++qDtxXT0bL10D6kRf1kRJPr5Jdpj09zPZ8bvGHgqIKsNOjOI7YSg2mYqlY+Enq 1pRLMg2OryJxuNjt3+mYQlX4aTJLgpX7u0gfl/lkKDrT0s208ZFM55WrNg/W0Z45 kw5zTbMub+zUbS3a9TNlRE/a8qWK7ai50GKPboW0Tqeo/Q2pynhQ3eOKw34sVPd7 ayY8qzhEAbkEFurhhwdu5m5LumrgqfWwSpuBrxkZ4TIfA8SlOIugDZuYJOMcIKab XWEFaWEb =C8V8 -----END PGP SIGNATURE----- --fafb7f3f1cea364aec99acb330f88e5752021c19e394aaf945054e5af2a9-- From unknown Sun Jun 22 17:14:19 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#62733] [PATCH v3] gnu: Add r-littler Resent-From: kyle Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 14 Apr 2023 16:06:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 62733 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 62733@debbugs.gnu.org Cc: rekado@elephly.net, Kyle Andrews Received: via spool by 62733-submit@debbugs.gnu.org id=B62733.168148835331972 (code B ref 62733); Fri, 14 Apr 2023 16:06:02 +0000 Received: (at 62733) by debbugs.gnu.org; 14 Apr 2023 16:05:53 +0000 Received: from localhost ([127.0.0.1]:47395 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pnLvt-0008Jb-GY for submit@debbugs.gnu.org; Fri, 14 Apr 2023 12:05:53 -0400 Received: from mout02.posteo.de ([185.67.36.66]:43923) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pnLvq-0008JA-UR for 62733@debbugs.gnu.org; Fri, 14 Apr 2023 12:05:51 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id DF2D2240341 for <62733@debbugs.gnu.org>; Fri, 14 Apr 2023 18:05:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1681488344; bh=lMQChW4NC2r79WrwWimPgp+sf1TfXbB1ieDhqTdAXKU=; h=From:To:Cc:Subject:Date:From; b=LZF+q6Ke4nhFmBXyDJqMK9I/DcuYZ8V5xzEvvfIGSMwU84WzONfFFfGw1pn2Yl+Cf edz/vBjz2Wo/3gyRNG5H3FbJx36yOPZvexp9SRIQQHtk3QYov5Z1vJ1t3bmrFWZW/n Pz50QEGPnJpXaH+/wPoOnUlUn79IEBUtyxmLXoUqPhjZMHnkomdVu2IgqVvMzDi3tA gpvZ9y/2LfUJyngi5Kbx3yMqcSAAgM2JM0oJvS4PWojbMXercX6iB1qoIoysHTfUhw JsjAYRvQcI7ugACPgCutLZQG4ZQObMK4HjR70GfHjM+KQIbw+4Pjv8oMB80FT8hCZg RIrhnSdme30Tw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4PyhBH3dRzz6tvx; Fri, 14 Apr 2023 18:05:43 +0200 (CEST) From: kyle Date: Fri, 14 Apr 2023 16:05:40 +0000 Message-Id: <211e245d7f8e899145bcf2325b23b6a4cf1fa9c6.1681488328.git.kyle@posteo.net> In-Reply-To: <62733@debbugs.gnu.org> References: <62733@debbugs.gnu.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) From: Kyle Andrews --- gnu/packages/statistics.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 628057a189..b960ed5631 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1010,6 +1010,42 @@ (define-public r-labeling algorithms.") (license license:expat))) +(define-public r-littler + (package + (name "r-littler") + (version "0.3.18") + (source (origin + (method url-fetch) + (uri (cran-uri "littler" version)) + (sha256 + (base32 + "1lp6a62g3yhzr4pv9kynibv7k9pd546w6hifs1aficyxbyg4dgqq")))) + (properties `((upstream-name . "littler"))) + (build-system r-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'install 'add-to-path + (lambda _ + (install-file + "inst/bin/r" + (string-append #$output "/bin"))))))) + (inputs (list icu4c zlib)) + (native-inputs + (list r-simplermarkdown automake autoconf pkg-config)) + (home-page "https://github.com/eddelbuettel/littler") + (synopsis "R at the Command-Line via 'r'") + (description + "This package provides a scripting and command-line front-end is provided by r +(aka littler') as a lightweight binary wrapper around the GNU R language and +environment for statistical computing and graphics. While R can be used in +batch mode, the r binary adds full support for both shebang'-style scripting +(i.e. using a hash-mark-exclamation-path expression as the first line in +scripts) as well as command-line use in standard Unix pipelines. In other +words, r provides the R language without the environment.") + (license license:gpl2+))) + (define-public r-magrittr (package (name "r-magrittr") -- 2.39.2 From unknown Sun Jun 22 17:14:19 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: kyle Subject: bug#62733: closed (Re: [PATCH v3] gnu: Add r-littler) Message-ID: References: <875y9usvbc.fsf@elephly.net> <9aa99d67ff185fdd557401c8cf6f3c90638a37c3.1681010036.git.kyle@posteo.net> X-Gnu-PR-Message: they-closed 62733 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 62733@debbugs.gnu.org Date: Mon, 17 Apr 2023 09:39:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1681724342-2220-1" This is a multi-part message in MIME format... ------------=_1681724342-2220-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #62733: [PATCH] gnu: Add r-littler which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 62733@debbugs.gnu.org. --=20 62733: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D62733 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1681724342-2220-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 62733-done) by debbugs.gnu.org; 17 Apr 2023 09:38:15 +0000 Received: from localhost ([127.0.0.1]:53227 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1poLJL-0000YS-AM for submit@debbugs.gnu.org; Mon, 17 Apr 2023 05:38:15 -0400 Received: from sender4-of-o50.zoho.com ([136.143.188.50]:21008) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1poLJF-0000YE-Rc for 62733-done@debbugs.gnu.org; Mon, 17 Apr 2023 05:38:09 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1681724283; cv=none; d=zohomail.com; s=zohoarc; b=Bib3wFmC1jy7kHx83SZoR9UrkceEXr0P5oT/KRji2qPPtIDBuu0aS7llcSlHjJapNMolrffUGYyuusC9oiLyr7hwknrtfvgW27nWpDuFewc6yLuTcuUwdFoMMtPEQr8x+eQyzALAYoMzYIZ8S26jB5EhTjEX31vMUwH1HUIbTk0= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1681724283; h=Content-Type:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=5er2rUVwA9mSguBETzSVZHZLNqMoQGfHTJ4rhsC+07M=; b=Z2v0CmQP5GBjnn84WKf7erVwy/OI6gL+7HxdHErPXYIL+wSUo9a0nGzYXP1IVlZOyTahivKM1tOHiWRoR6afzpBERqJ/mT0PnfPdulMO3L5bHs4pzlNHGbtbk/TC32snS4c5A2/Ge0H/lY1Ve3H7Q6vhBIJveevM8vslFTmkqbM= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1681724283; s=zoho; d=elephly.net; i=rekado@elephly.net; h=References:From:From:To:To:Cc:Cc:Subject:Subject:Date:Date:In-reply-to:Message-ID:MIME-Version:Content-Type:Message-Id:Reply-To; bh=5er2rUVwA9mSguBETzSVZHZLNqMoQGfHTJ4rhsC+07M=; b=EVYii0v6L1xw8HcwA5QQ5naYqJYR8hIorD8REGX9LT+JKaFW55DMlyqFz+uYhcJQ HRpBF4D++6QrjW4jLXPzNv61QcNAVjnL6CJ6FsJlWTv/tVkRCiCqkfma0qCPfeasaWA 9VsJ23B8AdIby+Jh3Wvqs51CqXaxjpLsqgf2RVQk= Received: from localhost (169-110-142-46.pool.kielnet.net [46.142.110.169]) by mx.zohomail.com with SMTPS id 1681724282549377.684429651702; Mon, 17 Apr 2023 02:38:02 -0700 (PDT) References: <62733@debbugs.gnu.org> <211e245d7f8e899145bcf2325b23b6a4cf1fa9c6.1681488328.git.kyle@posteo.net> User-agent: mu4e 1.10.2; emacs 28.2 From: Ricardo Wurmus To: kyle Subject: Re: [PATCH v3] gnu: Add r-littler Date: Mon, 17 Apr 2023 11:37:33 +0200 In-reply-to: <211e245d7f8e899145bcf2325b23b6a4cf1fa9c6.1681488328.git.kyle@posteo.net> Message-ID: <875y9usvbc.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain X-ZohoMailClient: External X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 62733-done Cc: 62733-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Thanks, I applied it with a few changes with commit a117510a8c9246f8e09577780ccaf3955f98d7ad. -- Ricardo ------------=_1681724342-2220-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Apr 2023 03:14:10 +0000 Received: from localhost ([127.0.0.1]:59984 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1plLVJ-0002YB-J9 for submit@debbugs.gnu.org; Sat, 08 Apr 2023 23:14:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:39302) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1plLVI-0002Y4-EC for submit@debbugs.gnu.org; Sat, 08 Apr 2023 23:14:08 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1plLVI-0006S2-1Q for guix-patches@gnu.org; Sat, 08 Apr 2023 23:14:08 -0400 Received: from mout02.posteo.de ([185.67.36.66]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1plLVF-0000v5-VH for guix-patches@gnu.org; Sat, 08 Apr 2023 23:14:07 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id E8327240195 for ; Sun, 9 Apr 2023 05:14:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1681010042; bh=OxWxp+Crjc4Q1H50V3/OC9x8aEjyjeH8qMil5FinPU0=; h=From:To:Cc:Subject:Date:From; b=DeM8uRnQ+QsXQ0X0BW71nEMZBcKOF0C/6s0xX0sVYoarsfTWfg5hYhwy252Y9UHjp aS74NQ1uZbTcyjWZsUz/0MbtBb+VRv3ULuB2O6AtPGjBwaQmWTaJo5e5Z8fw97U0Vg 69fk7778ALMKFo2P5LXOGLJuQ2Vb44CmxR3/kcU8/3EjiuK7FdKACU9tHkW2Y+qpwk XIqdXaK2XXPhVsDKeZG4U88n8KdDg5uhhCVr8iEYB1R+NF2ZqCatLqA0OQOyTm1xA7 FmuSpJ0vQhruUuYfFMondvrb52X7lhrI7YIjFpZppb0ctweDapwzeQGTyeDLd/EaR3 xjqUeJO7C+TDw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4PvHJ657fJz6tm4; Sun, 9 Apr 2023 05:13:58 +0200 (CEST) From: kyle To: guix-patches@gnu.org Subject: [PATCH] gnu: Add r-littler Date: Sun, 9 Apr 2023 03:13:56 +0000 Message-Id: <9aa99d67ff185fdd557401c8cf6f3c90638a37c3.1681010036.git.kyle@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.66; envelope-from=kyle@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: rekado@elephly.net, Kyle Andrews X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) From: Kyle Andrews --- gnu/packages/statistics.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 628057a189..e61d06721e 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1010,6 +1010,42 @@ (define-public r-labeling algorithms.") (license license:expat))) +(define-public r-littler + (package + (name "r-littler") + (version "0.3.18") + (source (origin + (method url-fetch) + (uri (cran-uri "littler" version)) + (sha256 + (base32 + "1lp6a62g3yhzr4pv9kynibv7k9pd546w6hifs1aficyxbyg4dgqq")))) + (properties `((upstream-name . "littler"))) + (build-system r-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'install 'add-to-path + (lambda _ + (mkdir (string-append #$output "/bin")) + (copy-file "inst/bin/r" + (string-append #$output "/bin/r"))))))) + (inputs (list icu4c)) + (native-inputs + (list r-simplermarkdown automake autoconf zlib)) + (home-page "https://github.com/eddelbuettel/littler") + (synopsis "R at the Command-Line via 'r'") + (description + "This package provides a scripting and command-line front-end is provided by r +(aka littler') as a lightweight binary wrapper around the GNU R language and +environment for statistical computing and graphics. While R can be used in +batch mode, the r binary adds full support for both shebang'-style scripting +(i.e. using a hash-mark-exclamation-path expression as the first line in +scripts) as well as command-line use in standard Unix pipelines. In other +words, r provides the R language without the environment.") + (license license:gpl2+))) + (define-public r-magrittr (package (name "r-magrittr") -- 2.39.2 ------------=_1681724342-2220-1--