From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 26 13:40:04 2021 Received: (at submit) by debbugs.gnu.org; 26 Apr 2021 17:40:04 +0000 Received: from localhost ([127.0.0.1]:47079 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lb5DH-00010J-Uo for submit@debbugs.gnu.org; Mon, 26 Apr 2021 13:40:04 -0400 Received: from lists.gnu.org ([209.51.188.17]:45512) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lb5DG-00010B-6c for submit@debbugs.gnu.org; Mon, 26 Apr 2021 13:40:02 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:59002) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lb5DF-0001if-Ut for guix-patches@gnu.org; Mon, 26 Apr 2021 13:40:01 -0400 Received: from mout02.posteo.de ([185.67.36.66]:43901) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lb5DC-0004dl-Ry for guix-patches@gnu.org; Mon, 26 Apr 2021 13:40:01 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id D203A2400FC for ; Mon, 26 Apr 2021 19:39:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.org; s=2017; t=1619458793; bh=Gp65mzRw70py7qjSGoqR6qZWizGkyYE7ZShKAqRM2OY=; h=From:To:Subject:Date:From; b=LaSdPRODjAwN3a/dxRnsb6tbx6A7ryrg2akELv6GNMrBcJiUI1Nqecg3PjFql/fn+ afAmrNe96nN/eFtfpcITfCcnTq68GXaQqz6IuWGLnV2RXwV1v62E3YHUWSzPFlsW6a Bka/pa1nCn5NtkqG/A/FMpKSXoU/e+KmUKlqbxVUdszb5MSPoGdoieHGa6TD/poF3g fBH/2TqcKORPbfObm8WRdkfItCtM79Sn42qa9+pyhGVbMvTbti0NEN9Y6FLA0SOPys AKvve9MQXffTpnxk1jfO9FvKT4PNBXcv4bo6SWBAPhPY/GHsPp5a+orBJoSptJcSiY FzvakRIdRzhBw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4FTXGK05sSz9rxM for ; Mon, 26 Apr 2021 19:39:52 +0200 (CEST) From: Alexandr Vityazev To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-multitran. Date: Mon, 26 Apr 2021 17:40:06 +0000 Message-ID: <87zgxl3pxl.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=185.67.36.66; envelope-from=avityazev@posteo.org; helo=mout02.posteo.de X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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_LOW=-0.7, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=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 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 (--) gnu/packages/emacs-xyz.scm (emacs-multitran): New variable. --- gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 591d6a1d2d..69c8063c42 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -27828,3 +27828,24 @@ files, providing syntax highlighting and indentation rules.") quasi-prefix map, with many useful bindings. These bindings are shorter than usual, using mostly unprefixed keys.") (license license:gpl3+))) + +(define-public emacs-multitran + (package + (name "emacs-multitran") + (version "0.4.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zevlg/multitran.el") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08b9a0pb38swgvg2v97pm4g2zda0xagdgq42znwhkmhzjiskh2g1")))) + (build-system emacs-build-system) + (home-page "https://github.com/zevlg/multitran.el") + (synopsis "Interface to multitran") + (description + "Multitran (multitran.el) is a zero-dependancy interface to +http://multitran.com online dictionary.") + (license license:gpl3+))) -- 2.31.1 -- Alexandr Vityazev From debbugs-submit-bounces@debbugs.gnu.org Sun May 09 07:05:05 2021 Received: (at 48040-done) by debbugs.gnu.org; 9 May 2021 11:05:05 +0000 Received: from localhost ([127.0.0.1]:55346 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfhFB-00026a-5l for submit@debbugs.gnu.org; Sun, 09 May 2021 07:05:05 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:39268) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfhF8-00026A-38 for 48040-done@debbugs.gnu.org; Sun, 09 May 2021 07:05:03 -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:To:From:Sender:Reply-To:Cc: 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=kIrwVXyMzAmFHYE725jEfnpiVFVlNYdX3lZKp6xVXhw=; b=gOydO6/BuEX3yB7KwuM435JZv npsHA3B/Pq3Qsolu33nTK4hEcl0dizC/+F7Xv6R30OEK0H76hLU32mytRVET0GdKQt8IVwvb+cAEt A3q54f+E/BCFDihXeqTFKMKvw8GTpKzhhcQiZACSKBLfEi1ma5tSS1krkBdom5WwpQQAR7DmfCesz bQBg87WGYv0oVeBRoVAqPYWuI9cNslGaGDmlVOTnbBEhk0Sg3qJDlSjMbLSx9Iku2RFEnoWLfEBqv UnUVfU0qKVPQAadbFXWJlJ0BImXSOZ4YzvG0maaTRmwYejILGvy0Mq5xdgZaoTzfdbYaMVlqr+Cfq gsanas8xg==; Received: from [192.168.2.1] (helo=steel) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1lfhF5-000F7P-E3; Sun, 09 May 2021 16:34:59 +0530 From: Arun Isaac To: Alexandr Vityazev , 48040-done@debbugs.gnu.org Subject: Re: [bug#48040] [PATCH] gnu: Add emacs-multitran. In-Reply-To: <87zgxl3pxl.fsf@posteo.net> References: <87zgxl3pxl.fsf@posteo.net> Date: Sun, 09 May 2021 16:34:43 +0530 Message-ID: <878s4o88xg.fsf@systemreboot.net> 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: 48040-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.0 (-) --=-=-= Content-Type: text/plain Hi Alexandr, Pushed to master with the synopsis and description slightly changed. Thanks! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQFPBAEBCAA5FiEEf3MDQ/Lwnzx3v3nTLiXui2GAK7MFAmCXwcsbHGFydW5pc2Fh Y0BzeXN0ZW1yZWJvb3QubmV0AAoJEC4l7othgCuzulwIALRuwKEGL0uy08+K/xT2 eXKlHOeqI3m02N7I6iTdGjfgb+KhCe8lSfw77dop+qrWZXBRyGkuiUjENtouQBww ER7MY+z+kBk7hEc9cJEnT3h6jTikAXDiE9kqgM3cyKtafEEakjAJX9+3KvBVlN6C gBqOHUOSWy9M0irpPIRAiYZvN6Aii01B+gAqKC3iUxI0yPuzUVGDs9ea+zV3haUN skBkIl0m7BEZYVC0Kny92O8dfNQ+Hzu5By14ZI2iOGS8vujIGVwicEXWE//wJqO6 Dlo5oaykRmmUQnp6Qx5PpjLi/vePM5MZ/XjAx4xiFX7ZJFlhRXnTKLhdeOk8xhoL xdQ= =oeAX -----END PGP SIGNATURE----- --=-=-=-- From unknown Sun Jun 22 11:41:43 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 06 Jun 2021 11:24:08 +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