From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 11 16:35:28 2019 Received: (at submit) by debbugs.gnu.org; 11 Jul 2019 20:35:29 +0000 Received: from localhost ([127.0.0.1]:38795 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hlfmq-0007E4-It for submit@debbugs.gnu.org; Thu, 11 Jul 2019 16:35:28 -0400 Received: from lists.gnu.org ([209.51.188.17]:54709) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hlfmm-0007Du-Ue for submit@debbugs.gnu.org; Thu, 11 Jul 2019 16:35:26 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35330) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlfml-0000rt-OQ for guix-patches@gnu.org; Thu, 11 Jul 2019 16:35:24 -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,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlfmj-0003cg-Nc for guix-patches@gnu.org; Thu, 11 Jul 2019 16:35:23 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:59638) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hlfmf-0003OR-VB for guix-patches@gnu.org; Thu, 11 Jul 2019 16:35:20 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=GsuAJGLJu/cz4LHHj/qnZ8WO6TqYorvIWKduTSmoUno=; b=NkP3d+HvW+ZrhKM5ieHH45i7Si 6EzE8tQFOCuXKbDsD2BrngfCIk/WkSTFX4Rg1xMDO+4W4BWWHdo+Y0pIR968n5uxwBXBRskicvURQ i2B3SAd3A7FOJbhMUMgXB3GYsnNGIyPmJB5gGEeCAA2gxIHDCImHFHohl4x9YmZqy0EY=; Received: from [49.206.15.108] (helo=steel.lan) by systemreboot.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.92) (envelope-from ) id 1hlfmV-0006if-5P; Fri, 12 Jul 2019 02:05:07 +0530 From: Arun Isaac To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-elpher. Date: Fri, 12 Jul 2019 02:04:59 +0530 Message-Id: <20190711203500.23812-1-arunisaac@systemreboot.net> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 139.59.75.54 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Arun Isaac 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 (--) * gnu/packages/emacs-xyz.scm (emacs-elpher): New variable. --- gnu/packages/emacs-xyz.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 2d9f271cc8..78bd630ecf 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -16481,3 +16481,37 @@ it forcibly @item Dedicated window for debugging program. @end enumerate") (license license:gpl3+)))) + +(define-public emacs-elpher + (package + (name "emacs-elpher") + (version "1.4.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tgvaughan/elpher") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "07xansmhn4l0b9ghzf56vyx8cqg0q01aq3pz5ikx2i19v5f0rc66")))) + (build-system emacs-build-system) + (native-inputs + `(("texinfo" ,texinfo))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'install 'build-doc + (lambda _ + (invoke "makeinfo" "elpher.texi")))))) + (home-page "https://github.com/tgvaughan/elpher") + (synopsis "Gopher client for Emacs") + (description "Elpher is a full-featured gopher client for Emacs. Its +features include intuitive keyboard and mouse-driven browsing, out-of-the-box +compatibility with evil-mode, clickable web and gopher links in plain text, +caching of visited sites, pleasant and configurable visualization of Gopher +directories, direct visualisation of image files, jumping directly to links by +name (with autocompletion), a simple bookmark management system and +connections using TLS encryption.") + (license license:gpl3+))) -- 2.22.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 13 08:49:23 2019 Received: (at 36606) by debbugs.gnu.org; 13 Jul 2019 12:49:23 +0000 Received: from localhost ([127.0.0.1]:41565 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hmHSt-0001Wb-CG for submit@debbugs.gnu.org; Sat, 13 Jul 2019 08:49:23 -0400 Received: from eggs.gnu.org ([209.51.188.92]:57977) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hmHSr-0001WN-Lv for 36606@debbugs.gnu.org; Sat, 13 Jul 2019 08:49:22 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:33259) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hmHSl-0007dx-OW; Sat, 13 Jul 2019 08:49:15 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=56140 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hmHSl-0000pE-9S; Sat, 13 Jul 2019 08:49:15 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Arun Isaac Subject: Re: [bug#36606] [PATCH] gnu: Add emacs-elpher. References: <20190711203500.23812-1-arunisaac@systemreboot.net> Date: Sat, 13 Jul 2019 14:49:13 +0200 In-Reply-To: <20190711203500.23812-1-arunisaac@systemreboot.net> (Arun Isaac's message of "Fri, 12 Jul 2019 02:04:59 +0530") Message-ID: <875zo69k1i.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 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-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 36606 Cc: 36606@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: -3.3 (---) Hello, Arun Isaac skribis: > * gnu/packages/emacs-xyz.scm (emacs-elpher): New variable. Nice package. :-) LGTM! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 14 10:58:38 2019 Received: (at 36606-done) by debbugs.gnu.org; 14 Jul 2019 14:58:38 +0000 Received: from localhost ([127.0.0.1]:45625 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hmfxW-0005VE-05 for submit@debbugs.gnu.org; Sun, 14 Jul 2019 10:58:38 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:53674) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hmfxS-0005V1-VD for 36606-done@debbugs.gnu.org; Sun, 14 Jul 2019 10:58:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Type:MIME-Version:Message-ID:Date: References:In-Reply-To:Subject:Cc:To:From:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=/n54VCwc8Xey2K6df6dsXHFFknx0GeevqvWRuriweOA=; b=AEEbd+eQBuyECLyC/KA5bmoIb B8hMdPr0rbBqLqd3ccrO6DKMe91BjYq2s5S0TyBXhzfi2ppRqaQcnwfjpa2J2nT1iiHJTdbY3BQuy 9qhR91kuJ7cQ6sIP2AQSZKTsvyOiWpnXmxSXdkzBimyqySdGJBW9z32yXhyz6GBPuCpb0=; Received: from [49.206.15.108] (helo=steel) by systemreboot.net with esmtpsa (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1hmfxP-000690-LG; Sun, 14 Jul 2019 20:28:31 +0530 From: Arun Isaac To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#36606] [PATCH] gnu: Add emacs-elpher. In-Reply-To: <875zo69k1i.fsf@gnu.org> References: <20190711203500.23812-1-arunisaac@systemreboot.net> <875zo69k1i.fsf@gnu.org> Date: Sun, 14 Jul 2019 20:28:22 +0530 Message-ID: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 36606-done Cc: 36606-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 (-) --=-=-= Content-Type: text/plain Thanks for the review! Pushed to master! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEf3MDQ/Lwnzx3v3nTLiXui2GAK7MFAl0rQw4ACgkQLiXui2GA K7MxsggAkCu4NZ1Of/jHvdEUJCtzQ8bqPKlayaXTtQ2/I45Q8sqk0sm7JPXN5tmP 1C4luNYnKOqEUnJWc/GqwQZOZmXYSPBZgADAi1a7Hjcj7FpRYhhzpt7GhpvOcJ0u iE2z7s8ys8TVa7YyHC8FuHI9rF4JEF4IlfBA8vCxsTCLkrbMjS4cuZa7gcC536lJ cFXJ3X3H7jdb54EMLyMorNKSmM+QZfsEI3f4yRkM9BnIFSvip0CtJh/xsC2qSgdF Hiz88TeH56OAkSl/MyOVGt5PuHf8/ZED0hCswSNBSf8s0ZsZnoM4kExOO4jTm7sF AyFgQHQOmtlBgaWUI5slIHFLuQ/oCg== =pS3O -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Aug 15 16:57:41 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 12 Aug 2019 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator