* [bug#34814] [PATCH 0/3] gnu: Add emacs-docker-tramp emacs-docker emacs-dockerfile-mode
@ 2019-03-11 17:55 Oleg Pykhalov
2019-03-11 18:00 ` [bug#34814] [PATCH 1/3] gnu: Add emacs-docker-tramp Oleg Pykhalov
2019-03-13 20:35 ` bug#34814: Status: [PATCH 0/3] gnu: Add emacs-docker-tramp emacs-docker emacs-dockerfile-mode Oleg Pykhalov
0 siblings, 2 replies; 5+ messages in thread
From: Oleg Pykhalov @ 2019-03-11 17:55 UTC (permalink / raw)
To: 34814
Hello Guix,
This patch serie provides Emacs interfaces to control Docker:
- C-x C-f /docker:xxxxxxxxxxxxxxxx
- M-x docker
- M-x dockerfile-mode
Oleg Pykhalov (3):
gnu: Add emacs-docker-tramp.
gnu: Add emacs-docker.
gnu: Add emacs-dockerfile-mode.
gnu/packages/emacs-xyz.scm | 79 ++++++++++++++++++++++++++++++++++++++
1 file changed, 79 insertions(+)
--
2.21.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#34814] [PATCH 1/3] gnu: Add emacs-docker-tramp.
2019-03-11 17:55 [bug#34814] [PATCH 0/3] gnu: Add emacs-docker-tramp emacs-docker emacs-dockerfile-mode Oleg Pykhalov
@ 2019-03-11 18:00 ` Oleg Pykhalov
2019-03-11 18:00 ` [bug#34814] [PATCH 2/3] gnu: Add emacs-docker Oleg Pykhalov
2019-03-11 18:00 ` [bug#34814] [PATCH 3/3] gnu: Add emacs-dockerfile-mode Oleg Pykhalov
2019-03-13 20:35 ` bug#34814: Status: [PATCH 0/3] gnu: Add emacs-docker-tramp emacs-docker emacs-dockerfile-mode Oleg Pykhalov
1 sibling, 2 replies; 5+ messages in thread
From: Oleg Pykhalov @ 2019-03-11 18:00 UTC (permalink / raw)
To: 34814
* gnu/packages/emacs-xyz.scm (emacs-docker-tramp): 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 b359777923..02340dcd03 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13247,3 +13247,24 @@ provides several enhancements over the ordinary
in the completion list and showing keyboard shortcuts, and it supports several
completion systems for selecting commands, such as ido and ivy.")
(license license:gpl3+)))
+
+(define-public emacs-docker-tramp
+ (package
+ (name "emacs-docker-tramp")
+ (version "0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emacs-pe/docker-tramp.el")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0lxvzmfg52fhxrhbvp92zwp7cv4i1rlxnkyyzgngj3sjm7y60yvg"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/emacs-pe/docker-tramp.el")
+ (synopsis "TRAMP integration for docker containers")
+ (description
+ "This package provides a TRAMP method for Docker containers.")
+ (license license:gpl3+)))
--
2.21.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#34814] [PATCH 2/3] gnu: Add emacs-docker.
2019-03-11 18:00 ` [bug#34814] [PATCH 1/3] gnu: Add emacs-docker-tramp Oleg Pykhalov
@ 2019-03-11 18:00 ` Oleg Pykhalov
2019-03-11 18:00 ` [bug#34814] [PATCH 3/3] gnu: Add emacs-dockerfile-mode Oleg Pykhalov
1 sibling, 0 replies; 5+ messages in thread
From: Oleg Pykhalov @ 2019-03-11 18:00 UTC (permalink / raw)
To: 34814
* gnu/packages/emacs-xyz.scm (emacs-docker): New variable.
---
gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 02340dcd03..0471c1cb94 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13268,3 +13268,35 @@ completion systems for selecting commands, such as ido and ivy.")
(description
"This package provides a TRAMP method for Docker containers.")
(license license:gpl3+)))
+
+(define-public emacs-docker
+ (package
+ (name "emacs-docker")
+ (version "1.2.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Silex/docker.el")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "15kd86kaq1x6giz855q9w6zvnyc742j309j0pmm86rwx398g4rq1"))))
+ (inputs
+ `(("emacs-undercover" ,emacs-undercover)))
+ (propagated-inputs
+ `(("emacs-dash" ,emacs-dash)
+ ("emacs-docker-tramp" ,emacs-docker-tramp)
+ ("emacs-magit-popup" ,emacs-magit-popup)
+ ("emacs-s" ,emacs-s)
+ ("emacs-tablist" ,emacs-tablist)
+ ("emacs-json-mode" ,emacs-json-mode)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (delete 'check)))) ;no tests
+ (build-system emacs-build-system)
+ (home-page "https://github.com/Silex/docker.el")
+ (synopsis "Manage docker from Emacs")
+ (description "This package provides an Emacs interface for Docker.")
+ (license license:gpl3+)))
--
2.21.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#34814] [PATCH 3/3] gnu: Add emacs-dockerfile-mode.
2019-03-11 18:00 ` [bug#34814] [PATCH 1/3] gnu: Add emacs-docker-tramp Oleg Pykhalov
2019-03-11 18:00 ` [bug#34814] [PATCH 2/3] gnu: Add emacs-docker Oleg Pykhalov
@ 2019-03-11 18:00 ` Oleg Pykhalov
1 sibling, 0 replies; 5+ messages in thread
From: Oleg Pykhalov @ 2019-03-11 18:00 UTC (permalink / raw)
To: 34814
* gnu/packages/emacs-xyz.scm (emacs-dockerfile-mode): New variable.
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0471c1cb94..ad2f2f96de 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13300,3 +13300,29 @@ completion systems for selecting commands, such as ido and ivy.")
(synopsis "Manage docker from Emacs")
(description "This package provides an Emacs interface for Docker.")
(license license:gpl3+)))
+
+(define-public emacs-dockerfile-mode
+ ;; Latest upstream release is too old.
+ (let ((commit "7223d92718f78fa3ab15667cdb2ed90cfeb579e7"))
+ (package
+ (name "emacs-dockerfile-mode")
+ (version (git-version "1.2" "1" commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/spotify/dockerfile-mode.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0hmipgl4rk6aih11i8mnspwdijjiwk2y0wns6lzs8bgkvy3c064r"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-s" ,emacs-s)))
+ (home-page "https://github.com/spotify/dockerfile-mode")
+ (synopsis "Major mode for editing Dockerfile")
+ (description
+ "This package provides a major mode @code{dockerfile-mode} for use with
+the standard @code{Dockerfile} file format.")
+ (license license:asl2.0))))
--
2.21.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#34814: Status: [PATCH 0/3] gnu: Add emacs-docker-tramp emacs-docker emacs-dockerfile-mode
2019-03-11 17:55 [bug#34814] [PATCH 0/3] gnu: Add emacs-docker-tramp emacs-docker emacs-dockerfile-mode Oleg Pykhalov
2019-03-11 18:00 ` [bug#34814] [PATCH 1/3] gnu: Add emacs-docker-tramp Oleg Pykhalov
@ 2019-03-13 20:35 ` Oleg Pykhalov
1 sibling, 0 replies; 5+ messages in thread
From: Oleg Pykhalov @ 2019-03-13 20:35 UTC (permalink / raw)
To: bug#34814
[-- Attachment #1: Type: text/plain, Size: 17 bytes --]
Pushed to master
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-03-13 20:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-11 17:55 [bug#34814] [PATCH 0/3] gnu: Add emacs-docker-tramp emacs-docker emacs-dockerfile-mode Oleg Pykhalov
2019-03-11 18:00 ` [bug#34814] [PATCH 1/3] gnu: Add emacs-docker-tramp Oleg Pykhalov
2019-03-11 18:00 ` [bug#34814] [PATCH 2/3] gnu: Add emacs-docker Oleg Pykhalov
2019-03-11 18:00 ` [bug#34814] [PATCH 3/3] gnu: Add emacs-dockerfile-mode Oleg Pykhalov
2019-03-13 20:35 ` bug#34814: Status: [PATCH 0/3] gnu: Add emacs-docker-tramp emacs-docker emacs-dockerfile-mode Oleg Pykhalov
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).