From unknown Sat Aug 09 13:21:57 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#37600] [PATCH] gnu: Add r-httpcode. Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 03 Oct 2019 13:50:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 37600 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 37600@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.157011054217539 (code B ref -1); Thu, 03 Oct 2019 13:50:01 +0000 Received: (at submit) by debbugs.gnu.org; 3 Oct 2019 13:49:02 +0000 Received: from localhost ([127.0.0.1]:38971 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iG1Ta-0004Yh-5k for submit@debbugs.gnu.org; Thu, 03 Oct 2019 09:49:02 -0400 Received: from lists.gnu.org ([209.51.188.17]:35919) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iG1TY-0004YU-N1 for submit@debbugs.gnu.org; Thu, 03 Oct 2019 09:49:01 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55823) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iG1TX-00056t-AR for guix-patches@gnu.org; Thu, 03 Oct 2019 09:49:00 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iG1TW-0005yq-5q for guix-patches@gnu.org; Thu, 03 Oct 2019 09:48:59 -0400 Received: from freeshell.de ([2a01:360:106::2]:39722) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iG1TV-0005xI-NZ for guix-patches@gnu.org; Thu, 03 Oct 2019 09:48:58 -0400 From: Wiktor =?UTF-8?Q?=C5=BBelazny?= DKIM-Filter: OpenDKIM Filter v2.9.2 freeshell.de D055835CC340 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freeshell.de; s=mail; t=1570110529; bh=8Er5yqWRNScLYG6RHkjY8PM96Emzb+iaOYX+ICLUIrU=; h=From:To:Subject:Date; b=RaLaZw9VJAOF+bA0ZKhNQMRHbl5LQ5Ke0vukcn4tM/IPJyrbs0/MdasCJacUjq1m0 QYDt0kG/CUW/45VeFS/vkWLl7eJkkaEGmWi4xUghR55qkietuXAb+ZPVHmmFF3a9iC +UXm1J54/GpbdP7s1I1nLb2n02o+d9ThMplbR3DA= Date: Thu, 3 Oct 2019 15:46:37 +0200 Message-Id: <20191003134637.7040-1-wz@freeshell.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2a01:360:106::2 X-Spam-Score: -1.4 (-) 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.4 (--) From: Wiktor =C5=BBelazny * gnu/packages/cran.scm (r-httpcode): New variable. --- gnu/packages/cran.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 3a9a605efe..8d94047475 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -15637,3 +15637,22 @@ unique identifiers, and whether it is a certain = length. In addition, files and to efficiently import multiple tabular data files into one data.table.") (license license:gpl3))) + +(define-public r-httpcode + (package + (name "r-httpcode") + (version "0.2.0") + (source (origin + (method url-fetch) + (uri (cran-uri "httpcode" version)) + (sha256 + (base32 + "06k853ihwzkcx4z3jzazpb03p91frqkwz18jy4fwr8j2nwyqbhgv")))) + (build-system r-build-system) + (home-page "https://github.com/sckott/httpcode") + (synopsis "HTTP status code helper") + (description "@code{httpcode} provides functionality for finding an= d +explaining the meaning of @code{HTTP} status codes. Functions are inclu= ded for +searching for codes by full or partial number, by message, and to get +appropriate dog and cat images for many status codes.") + (license license:expat))) --=20 2.23.0 From unknown Sat Aug 09 13:21:57 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: Wiktor =?UTF-8?Q?=C5=BBelazny?= Subject: bug#37600: closed (Re: [bug#37600] [PATCH] gnu: Add r-httpcode.) Message-ID: References: <87eetl5uwu.fsf@devup.no> <20191003134637.7040-1-wz@freeshell.de> X-Gnu-PR-Message: they-closed 37600 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 37600@debbugs.gnu.org Date: Sat, 21 Mar 2020 20:13:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1584821582-10051-1" This is a multi-part message in MIME format... ------------=_1584821582-10051-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #37600: [PATCH] gnu: Add r-httpcode. 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 37600@debbugs.gnu.org. --=20 37600: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D37600 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1584821582-10051-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 37600-done) by debbugs.gnu.org; 21 Mar 2020 20:12:59 +0000 Received: from localhost ([127.0.0.1]:48171 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jFkUN-0002bq-F7 for submit@debbugs.gnu.org; Sat, 21 Mar 2020 16:12:59 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:52981) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jFkUL-0002bd-Jv for 37600-done@debbugs.gnu.org; Sat, 21 Mar 2020 16:12:58 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 82C895C013F; Sat, 21 Mar 2020 16:12:52 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Sat, 21 Mar 2020 16:12:52 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= from:to:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=fm2; bh=abwxu7XQw/cv6sJ5F35KqcuGeV C6jIFqyjz7VBp+UaM=; b=zeSuA6vB3pQLUGF4D3jwi02Dcrbcb2VUO8mRAnCuZ6 dbVIMjF87DlL3iczTHSZ4aB7+F72/3aDsfhsL1twrjbl8WQhPXQncjctdKrcpHEx N3lze6SIHqFvF6yLP0HoeTl69aNSSsHOe9DAjU6aMNI4kHxNbvTGXfX9rMHwyDQE S34pfuha7/kJDO+oEryvAzskssDVlU2IG2sjENc7cyokW4pa4EWEqgNkqF6SHL2z 3lASGk5TzQmZHrJue0+xDvC+z2XqqXbNMsOAVPjWZGTOefzB/dXLJLlrl/jJeQJU Aj97sNSuzA/NlkBUv90T61qVfjj2tuaBBHHq+DX03CRQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=abwxu7 XQw/cv6sJ5F35KqcuGeVC6jIFqyjz7VBp+UaM=; b=fMBa9C1LgwMEBpKeZ5hy3u OUqK9Vbs9feuOICSRIjUZua15M4wsHeNPq0wwG4ENtRwdpARU/stubRqMRvSxbFy Fb+VN9JN4/ye+bYWhzjHdxUImlRy6I4WCYEdCeMT+ZSIEwsc8fZUuEtSfvci/k3r kdH/0S603BORP0EJw5olN5Vi9PSarlYH/O4Nvh0XMHWZG1Gk0K0dyEZ6L949wwXX vNGtTsDHUZIoWJXQ4viAls5oH1NdMit9nzD2BUEtY1P34tC7uw2wc6iZ3dS3hxSk htOEBuvZK2UtlIUxPSwRchWjXpB24LQq3a5zbR8cxc69op0BtRETD1iIXZ30d1oA == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrudegfedgudefhecutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmd enucfjughrpefhvffujghffgffkfggtgesghdtreertderjeenucfhrhhomhepofgrrhhi uhhsuceurghkkhgvuceomhgsrghkkhgvsehfrghsthhmrghilhdrtghomheqnecukfhppe ekgedrvddtvddrieekrdejheenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhep mhgrihhlfhhrohhmpehmsggrkhhkvgesfhgrshhtmhgrihhlrdgtohhm X-ME-Proxy: Received: from localhost (ti0006q161-2604.bb.online.no [84.202.68.75]) by mail.messagingengine.com (Postfix) with ESMTPA id 11FAF328005E; Sat, 21 Mar 2020 16:12:50 -0400 (EDT) From: Marius Bakke To: Wiktor =?utf-8?Q?=C5=BBelazny?= , 37600-done@debbugs.gnu.org Subject: Re: [bug#37600] [PATCH] gnu: Add r-httpcode. In-Reply-To: <20191003134637.7040-1-wz@freeshell.de> References: <20191003134637.7040-1-wz@freeshell.de> User-Agent: Notmuch/0.29.3 (https://notmuchmail.org) Emacs/26.3 (x86_64-pc-linux-gnu) Date: Sat, 21 Mar 2020 21:12:49 +0100 Message-ID: <87eetl5uwu.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 37600-done 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.7 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Wiktor =C5=BBelazny writes: > From: Wiktor =C5=BBelazny > > * gnu/packages/cran.scm (r-httpcode): New variable. Applied, thanks! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl52dUEACgkQoqBt8qM6 VPrvqwgAregkqCuhw3tgA1o78JBLZWS4LG0UaPlnEkjdvHxhKyzAp/SIw8K5Gk4j tzHiAQOPsW/l/iWCUJZgsdqakMf+SGaSLWoWdr/QUF61sgtUM7eP776+6xCUGrfe 9ZUQi0y1CWvWo1U26jwqj9GVfjoFgXwdcoyaLuVmr4F7AGxTrHaLWIDmM9EH2y7R +ANabOkzVGjSOeO/UdPCBJzyrqY1VyCUQEmL6mKI67vziM33kJ8T2KHcZcNMQQ3A ieoqFhbtaU8RErRXJbvR4pX4RytqEdlMOdbDVcQzW8w5LfSq7nDteaZPqpnSdhw5 Wt2nTDS2FO4uL0Lrb62/fgd8xw/dUg== =7NNj -----END PGP SIGNATURE----- --=-=-=-- ------------=_1584821582-10051-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 3 Oct 2019 13:49:02 +0000 Received: from localhost ([127.0.0.1]:38971 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iG1Ta-0004Yh-5k for submit@debbugs.gnu.org; Thu, 03 Oct 2019 09:49:02 -0400 Received: from lists.gnu.org ([209.51.188.17]:35919) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iG1TY-0004YU-N1 for submit@debbugs.gnu.org; Thu, 03 Oct 2019 09:49:01 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55823) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iG1TX-00056t-AR for guix-patches@gnu.org; Thu, 03 Oct 2019 09:49:00 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iG1TW-0005yq-5q for guix-patches@gnu.org; Thu, 03 Oct 2019 09:48:59 -0400 Received: from freeshell.de ([2a01:360:106::2]:39722) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iG1TV-0005xI-NZ for guix-patches@gnu.org; Thu, 03 Oct 2019 09:48:58 -0400 From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= DKIM-Filter: OpenDKIM Filter v2.9.2 freeshell.de D055835CC340 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freeshell.de; s=mail; t=1570110529; bh=8Er5yqWRNScLYG6RHkjY8PM96Emzb+iaOYX+ICLUIrU=; h=From:To:Subject:Date; b=RaLaZw9VJAOF+bA0ZKhNQMRHbl5LQ5Ke0vukcn4tM/IPJyrbs0/MdasCJacUjq1m0 QYDt0kG/CUW/45VeFS/vkWLl7eJkkaEGmWi4xUghR55qkietuXAb+ZPVHmmFF3a9iC +UXm1J54/GpbdP7s1I1nLb2n02o+d9ThMplbR3DA= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add r-httpcode. Date: Thu, 3 Oct 2019 15:46:37 +0200 Message-Id: <20191003134637.7040-1-wz@freeshell.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2a01:360:106::2 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit 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.4 (--) From: Wiktor =C5=BBelazny * gnu/packages/cran.scm (r-httpcode): New variable. --- gnu/packages/cran.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 3a9a605efe..8d94047475 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -15637,3 +15637,22 @@ unique identifiers, and whether it is a certain = length. In addition, files and to efficiently import multiple tabular data files into one data.table.") (license license:gpl3))) + +(define-public r-httpcode + (package + (name "r-httpcode") + (version "0.2.0") + (source (origin + (method url-fetch) + (uri (cran-uri "httpcode" version)) + (sha256 + (base32 + "06k853ihwzkcx4z3jzazpb03p91frqkwz18jy4fwr8j2nwyqbhgv")))) + (build-system r-build-system) + (home-page "https://github.com/sckott/httpcode") + (synopsis "HTTP status code helper") + (description "@code{httpcode} provides functionality for finding an= d +explaining the meaning of @code{HTTP} status codes. Functions are inclu= ded for +searching for codes by full or partial number, by message, and to get +appropriate dog and cat images for many status codes.") + (license license:expat))) --=20 2.23.0 ------------=_1584821582-10051-1--