unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#41252] [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2.
@ 2020-05-14  9:15 Michael Rohleder
  2020-05-14  9:22 ` bug#41252: " Nicolas Goaziou
  2020-05-14 10:02 ` [bug#41252] " zimoun
  0 siblings, 2 replies; 5+ messages in thread
From: Michael Rohleder @ 2020-05-14  9:15 UTC (permalink / raw)
  To: 41252


[-- Attachment #1.1: Type: text/plain, Size: 148 bytes --]

To test this, I made a presentation about guix git workflow in emacs:
https://www.rohleder.de/~mike/guix-workflow/

maybe, its useful for someone.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2. --]
[-- Type: text/x-patch, Size: 1268 bytes --]

From 528ccdab63cf399012582450491be6df3d8cc431 Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike@rohleder.de>
Date: Thu, 14 May 2020 08:16:49 +0000
Subject: [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2.

* gnu/packages/emacs-xyz.scm (emacs-org-re-reveal): Update to 2.12.2.
---
 gnu/packages/emacs-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 264fb2a1d7..415669b30f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -14567,7 +14567,7 @@ powerful Org contents.")
 (define-public emacs-org-re-reveal
   (package
     (name "emacs-org-re-reveal")
-    (version "2.5.1")
+    (version "2.12.2")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -14576,7 +14576,7 @@ powerful Org contents.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1zbz6hbddxbb264ibmhc04cmnpk17kb50jpn5l8878q4hxw5wwy2"))))
+                "19nz77f2r49hqavz50ri222prhrd5890vhvc7jfazbascbcdjbqv"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-htmlize" ,emacs-htmlize)
-- 
2.26.2


[-- Attachment #1.3: Type: text/plain, Size: 105 bytes --]


love, peace and harmony!

-- 
The best thing about UDP jokes is that I don’t care if you get it.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* bug#41252: [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2.
  2020-05-14  9:15 [bug#41252] [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2 Michael Rohleder
@ 2020-05-14  9:22 ` Nicolas Goaziou
  2020-05-14 10:02 ` [bug#41252] " zimoun
  1 sibling, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2020-05-14  9:22 UTC (permalink / raw)
  To: Michael Rohleder; +Cc: 41252-done

Hello,

Michael Rohleder <mike@rohleder.de> writes:

> To test this, I made a presentation about guix git workflow in emacs:
> https://www.rohleder.de/~mike/guix-workflow/

Nice.

> Subject: [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2.
>
> * gnu/packages/emacs-xyz.scm (emacs-org-re-reveal): Update to 2.12.2.

Applied. Thank you.

Regards,

-- 
Nicolas Goaziou




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

* [bug#41252] [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2.
  2020-05-14  9:15 [bug#41252] [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2 Michael Rohleder
  2020-05-14  9:22 ` bug#41252: " Nicolas Goaziou
@ 2020-05-14 10:02 ` zimoun
  2020-05-14 10:45   ` Michael Rohleder
  1 sibling, 1 reply; 5+ messages in thread
From: zimoun @ 2020-05-14 10:02 UTC (permalink / raw)
  To: Michael Rohleder; +Cc: 41252

Dear Michael,

On Thu, 14 May 2020 at 11:17, Michael Rohleder <mike@rohleder.de> wrote:

> To test this, I made a presentation about guix git workflow in emacs:
> https://www.rohleder.de/~mike/guix-workflow/

Nice!

Just one minor comment, instead of this long '--ad-hoc' line, you
should use a manifest file.

#+BEGIN_SRC shell
guix environment -C -N -E TERM guix --expose=/var/guix=/var/guix \
--ad-hoc emacs-no-x emacs-magit git git:send-email emacs-yasnippet
help2man pkg-config guile \
-- emacs --execute "(load-theme 'wombat)"
#+END_SRC

#+BEGIN_SRC shell
guix environment -C -N -E TERM guix --expose=/var/guix=/var/guix \
-m my-manifest.scm \
-- emacs --execute "(load-theme 'wombat)"
#+END_SRC

--8<---------------cut here---------------start------------->8---
(specifications->manifest
   '("emacs-no-x" "emacs-magit"
     "git" "git:send-email"
     "emacs-yasnippet"
     "help2man" "pkg-config guile"))
--8<---------------cut here---------------end--------------->8---

The main advantages are:
 - version control the file
 - reuse elsewhere, for example "guix install"
 - easy to locally extend:
   guix environment -m my-manifest --ad-hoc emacs-evil


Well, thank you for sharing and for the update.

All the best,
simon




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

* [bug#41252] [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2.
  2020-05-14 10:02 ` [bug#41252] " zimoun
@ 2020-05-14 10:45   ` Michael Rohleder
  2020-05-14 16:41     ` zimoun
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Rohleder @ 2020-05-14 10:45 UTC (permalink / raw)
  To: zimoun; +Cc: 41252

[-- Attachment #1: Type: text/plain, Size: 430 bytes --]

Hey zimon!

zimoun <zimon.toutoune@gmail.com> writes:
> Just one minor comment, instead of this long '--ad-hoc' line, you
> should use a manifest file.

thank you for your suggestion!

I wanted to keep this presentation "file free", meaning, I didnt want
that the reader needs to download any files.
(some thing for a .emacs init file...).


-- 
I hear and I forget. I see and I remember. I write and I understand.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* [bug#41252] [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2.
  2020-05-14 10:45   ` Michael Rohleder
@ 2020-05-14 16:41     ` zimoun
  0 siblings, 0 replies; 5+ messages in thread
From: zimoun @ 2020-05-14 16:41 UTC (permalink / raw)
  To: Michael Rohleder; +Cc: 41252

On Thu, 14 May 2020 at 12:45, Michael Rohleder <mike@rohleder.de> wrote:

> I wanted to keep this presentation "file free", meaning, I didnt want
> that the reader needs to download any files.
> (some thing for a .emacs init file...).

I understand.  Depend on the audience:

--8<---------------cut here---------------start------------->8---
cat > /tmp/manif.scm<<EOF
(specifications->manifest
   '("emacs-no-x" "emacs-magit"
     "git" "git:send-email"
     "emacs-yasnippet"
     "help2man" "pkg-config guile"))
EOF
guix environment -m /tmp/manifest.scm
--8<---------------cut here---------------end--------------->8---


All the best,
simon




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

end of thread, other threads:[~2020-05-14 16:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-14  9:15 [bug#41252] [PATCH] gnu: emacs-org-re-reveal: Update to 2.12.2 Michael Rohleder
2020-05-14  9:22 ` bug#41252: " Nicolas Goaziou
2020-05-14 10:02 ` [bug#41252] " zimoun
2020-05-14 10:45   ` Michael Rohleder
2020-05-14 16:41     ` zimoun

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).