From debbugs-submit-bounces@debbugs.gnu.org Wed May 12 17:05:28 2021 Received: (at submit) by debbugs.gnu.org; 12 May 2021 21:05:28 +0000 Received: from localhost ([127.0.0.1]:40741 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lgw2q-0002YF-Gd for submit@debbugs.gnu.org; Wed, 12 May 2021 17:05:28 -0400 Received: from lists.gnu.org ([209.51.188.17]:38288) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lgw2o-0002Y6-M5 for submit@debbugs.gnu.org; Wed, 12 May 2021 17:05:27 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55516) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lgw2o-0002ma-Hx for guix-patches@gnu.org; Wed, 12 May 2021 17:05:26 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:40452) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lgw2j-0005nd-Cc for guix-patches@gnu.org; Wed, 12 May 2021 17:05:26 -0400 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id 2616F5D40096; Wed, 12 May 2021 23:05:17 +0200 (CEST) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-tshell. Date: Wed, 12 May 2021 23:05:07 +0200 Message-Id: <20210512210507.230812-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@xsteve.at; helo=dd3624.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Stefan=20Reich=C3=B6r?= 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 (---) * gnu/packages/emacs-xyz.scm (emacs-tshell): New variable. --- gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ff90c6bd3a..193cdcad6e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -27204,6 +27204,31 @@ easily. Four pre-set options are: @samp{shell}, @samp{terminal}, you use some other configuration.") (license license:gpl3+)))) +(define-public emacs-tshell + (let ((commit "47ef3a6c537b06eb422d9a124e1c44062223e323") + (revision "0")) + (package + (name "emacs-tshell") + (version (git-version "0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/TatriX/tshell") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yv38bqdp6b614lbj4v408vv5mlic3vs1v7266xrfxm1cm903apj")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-transient" ,emacs-transient))) + (home-page "https://github.com/TatriX/tshell") + (synopsis "A buffer-oriented Emacs shell.") + (description + "This shell allows to run one line commands by hitting RET. It supports +shell and emacs lisp commands.") + (license license:gpl3+)))) + (define-public emacs-extmap (package (name "emacs-extmap") -- 2.25.1 From debbugs-submit-bounces@debbugs.gnu.org Fri May 14 18:07:31 2021 Received: (at 48384-done) by debbugs.gnu.org; 14 May 2021 22:07:31 +0000 Received: from localhost ([127.0.0.1]:47241 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lhfxz-00053S-4G for submit@debbugs.gnu.org; Fri, 14 May 2021 18:07:31 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:33061) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lhfxw-000539-Jg for 48384-done@debbugs.gnu.org; Fri, 14 May 2021 18:07:29 -0400 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id B7DFB20002; Fri, 14 May 2021 22:07:21 +0000 (UTC) From: Nicolas Goaziou To: Stefan =?utf-8?Q?Reich=C3=B6r?= Subject: Re: [bug#48384] [PATCH] gnu: Add emacs-tshell. References: <20210512210507.230812-1-stefan@xsteve.at> Date: Sat, 15 May 2021 00:07:20 +0200 In-Reply-To: <20210512210507.230812-1-stefan@xsteve.at> ("Stefan =?utf-8?Q?Reich=C3=B6r=22's?= message of "Wed, 12 May 2021 23:05:07 +0200") Message-ID: <87lf8ht1ev.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 48384-done Cc: 48384-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.7 (-) Hello, Stefan Reich=C3=B6r writes: > * gnu/packages/emacs-xyz.scm (emacs-tshell): New variable. I applied it with the changes explained below. Thank you! > +(define-public emacs-tshell > + (let ((commit "47ef3a6c537b06eb422d9a124e1c44062223e323") > + (revision "0")) I added a comment explaining why we are not using a tagged release. > + (package > + (name "emacs-tshell") > + (version (git-version "0.1" revision commit)) I changed "0.1" into "0.1.0" because that is what the Version keywords says. > + (synopsis "A buffer-oriented Emacs shell.") Synopsis must not start with an article and end with a period. You may want to run "guix lint" to catch these. > + (description > + "This shell allows to run one line commands by hitting RET. It s= upports > +shell and emacs lisp commands.") I slightly reworded the description. Regards, --=20 Nicolas Goaziou From unknown Sat Sep 06 00:30:10 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 12 Jun 2021 11:24:06 +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