all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#72326] [PATCH] gnu: Add emacs-ssh-deploy.
@ 2024-07-27 19:57 Sisiutl
  2024-07-27 23:40 ` Suhail Singh
  2024-07-28 12:17 ` [bug#72326] [PATCH v2] " Sisiutl
  0 siblings, 2 replies; 5+ messages in thread
From: Sisiutl @ 2024-07-27 19:57 UTC (permalink / raw)
  To: 72326; +Cc: Sisiutl

* gnu/packages/emacs-xyz.scm (emacs-ssh-deploy): New variable.

Change-Id: I016d3c15f376c099f260d955672bab2b19f8b978
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5639ed5fce..04b4a8af66 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -35053,6 +35053,28 @@ (define-public emacs-ssh-agency
 passphrase until the first time you push to a remote.")
     (license license:gpl3+)))
 
+(define-public emacs-ssh-deploy
+  (package
+    (name "emacs-ssh-deploy")
+    (version "3.1.16")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://elpa.gnu.org/packages/ssh-deploy-" version
+                           ".tar"))
+       (sha256
+	(base32 "0fb88l3270d7l808q8x16zcvjgsjbyhgifgv17syfsj0ja63x28p"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/cjohansson/emacs-ssh-deploy")
+    (synopsis "Deployment via Tramp, global or per directory.")
+    (description
+     "ssh-deploy enables automatic deploys on explicit-save actions, manual uploads,
+renaming, deleting, downloads, file and directory differences, launching remote
+terminals (eshell, shell), detection of remote changes, remote directory
+browsing, remote SQL database sessions and running custom deployment scripts via
+Tramp.")
+    (license license:gpl3+)))
+
 (define-public emacs-super-save
   (package
     (name "emacs-super-save")

base-commit: 46a64c7fdd057283063aae6df058579bb07c4b6a
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#72326] [PATCH] gnu: Add emacs-ssh-deploy.
  2024-07-27 19:57 [bug#72326] [PATCH] gnu: Add emacs-ssh-deploy Sisiutl
@ 2024-07-27 23:40 ` Suhail Singh
  2024-07-28 12:17 ` [bug#72326] [PATCH v2] " Sisiutl
  1 sibling, 0 replies; 5+ messages in thread
From: Suhail Singh @ 2024-07-27 23:40 UTC (permalink / raw)
  To: Sisiutl; +Cc: 72326

Sisiutl <sisiutl@egregore.fun> writes:

> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://elpa.gnu.org/packages/ssh-deploy-" version
> +                           ".tar"))
> +       (sha256
> +	(base32 "0fb88l3270d7l808q8x16zcvjgsjbyhgifgv17syfsj0ja63x28p"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/cjohansson/emacs-ssh-deploy")

Building from git should be preferred.  The tar archives on ELPA aren't
guaranteed to be bit-for-bit identical over time.  The elpa.gnu.org link
can be, instead, used as the home-page.

> +    (synopsis "Deployment via Tramp, global or per directory.")

Minor nit-pick: synopsis doesn't end with a period.  I think the wording
could probably also be improved.  Quoting the manual:

#+begin_quote
   Synopses must start with a capital letter and must not end with a
period.  They must not start with “a” or “the”, which usually does not
bring anything; for instance, prefer “File-frobbing tool” over “A tool
that frobs files”.  The synopsis should say what the package is—e.g.,
“Core GNU utilities (file, text, shell)”—or what it is used for—e.g.,
the synopsis for GNU grep is “Print lines matching a pattern”.
#+end_quote

-- 
Suhail




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#72326] [PATCH v2] gnu: Add emacs-ssh-deploy
  2024-07-27 19:57 [bug#72326] [PATCH] gnu: Add emacs-ssh-deploy Sisiutl
  2024-07-27 23:40 ` Suhail Singh
@ 2024-07-28 12:17 ` Sisiutl
  2024-08-15 14:07   ` Nicolas Graves via Guix-patches via
  1 sibling, 1 reply; 5+ messages in thread
From: Sisiutl @ 2024-07-28 12:17 UTC (permalink / raw)
  To: 72326; +Cc: Sisiutl

* gnu/packages/emacs-xyz.scm (emacs-ssh-deploy): New variable.

Change-Id: Ice4dc774f43b116ffd01c7649f2b212b9fc96fcc
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5639ed5fce..cd94da7a14 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -35053,6 +35053,30 @@ (define-public emacs-ssh-agency
 passphrase until the first time you push to a remote.")
     (license license:gpl3+)))
 
+(define-public emacs-ssh-deploy
+  (package
+    (name "emacs-ssh-deploy")
+    (version "3.1.16")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/cjohansson/emacs-ssh-deploy")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0iwciwnlkpbasnwdvvip5g39jq4qc8srfw0s07ljb3c3njg3jhsg"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/cjohansson/emacs-ssh-deploy")
+    (synopsis "A deployment plugin via Tramp, global or per directory")
+    (description
+     "ssh-deploy enables automatic deploys on explicit-save actions, manual uploads,
+renaming, deleting, downloads, file and directory differences, launching remote
+terminals (eshell, shell), detection of remote changes, remote directory
+browsing, remote SQL database sessions and running custom deployment scripts via
+Tramp.")
+    (license license:gpl3+)))
+
 (define-public emacs-super-save
   (package
     (name "emacs-super-save")

base-commit: 46a64c7fdd057283063aae6df058579bb07c4b6a
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#72326] [PATCH v2] gnu: Add emacs-ssh-deploy
  2024-07-28 12:17 ` [bug#72326] [PATCH v2] " Sisiutl
@ 2024-08-15 14:07   ` Nicolas Graves via Guix-patches via
  2024-08-20  8:27     ` bug#72326: [PATCH] " Nicolas Goaziou via Guix-patches via
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2024-08-15 14:07 UTC (permalink / raw)
  To: Sisiutl, 72326; +Cc: Sisiutl

On 2024-07-28 14:17, Sisiutl wrote:
>  
> +    (synopsis "A deployment plugin via Tramp, global or per directory")
> +    (description
> +     "ssh-deploy enables automatic deploys on explicit-save actions, manual uploads,
> +renaming, deleting, downloads, file and directory differences, launching remote
> +terminals (eshell, shell), detection of remote changes, remote directory
> +browsing, remote SQL database sessions and running custom deployment scripts via
> +Tramp.")

Hi Sisiutl, 

Another minor nitpick that you can also find here
https://qa.guix.gnu.org/issue/72326:

description should start with an upper-case letter or digit

You can start the description with @code{ssh-deploy} for instance if
convenient.

Otherwise LGTM, built and rebuilt deterministically.

-- 
Best regards,
Nicolas Graves




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#72326: [PATCH] gnu: Add emacs-ssh-deploy.
  2024-08-15 14:07   ` Nicolas Graves via Guix-patches via
@ 2024-08-20  8:27     ` Nicolas Goaziou via Guix-patches via
  0 siblings, 0 replies; 5+ messages in thread
From: Nicolas Goaziou via Guix-patches via @ 2024-08-20  8:27 UTC (permalink / raw)
  To: 72326-done; +Cc: Sisiutl, Nicolas Graves, Suhail Singh

Hello,

> On 2024-07-28 14:17, Sisiutl wrote:
> >  
> > +    (synopsis "A deployment plugin via Tramp, global or per directory")
> > +    (description
> > +     "ssh-deploy enables automatic deploys on explicit-save actions, manual uploads,
> > +renaming, deleting, downloads, file and directory differences, launching remote
> > +terminals (eshell, shell), detection of remote changes, remote directory
> > +browsing, remote SQL database sessions and running custom deployment scripts via
> > +Tramp.")
> 
> Hi Sisiutl, 
> 
> Another minor nitpick that you can also find here
> https://qa.guix.gnu.org/issue/72326:
> 
> description should start with an upper-case letter or digit
> 
> You can start the description with @code{ssh-deploy} for instance if
> convenient.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-08-20  8:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-27 19:57 [bug#72326] [PATCH] gnu: Add emacs-ssh-deploy Sisiutl
2024-07-27 23:40 ` Suhail Singh
2024-07-28 12:17 ` [bug#72326] [PATCH v2] " Sisiutl
2024-08-15 14:07   ` Nicolas Graves via Guix-patches via
2024-08-20  8:27     ` bug#72326: [PATCH] " Nicolas Goaziou via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.