GNU bug report logs - #57773
[PATCH] * gnu/packages/emacs-xyz.scm: Added emacs-transpose-mark

Previous Next

Package: guix-patches;

Reported by: Trevor Richards <trev <at> trevdev.ca>

Date: Tue, 13 Sep 2022 15:33:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57773 in the body.
You can then email your comments to 57773 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#57773; Package guix-patches. (Tue, 13 Sep 2022 15:33:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Trevor Richards <trev <at> trevdev.ca>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 13 Sep 2022 15:33:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Trevor Richards <trev <at> trevdev.ca>
To: guix-patches <at> gnu.org
Subject: [PATCH] * gnu/packages/emacs-xyz.scm: Added emacs-transpose-mark
Date: Tue, 13 Sep 2022 08:21:37 -0700
---
 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 19be038746..7b85a0f5ec 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15771,6 +15771,30 @@ (define-public emacs-transpose-frame
 selected frame.")
     (license license:bsd-2)))
 
+(define-public emacs-transpose-mark
+  (let ((commit "667327602004794de97214cf336ac61650ef75b7")
+        (revision "0"))
+    (package
+      (name "emacs-transpose-mark")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/kwrooijen/transpose-mark.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/kwrooijen/transpose-mark.git")
+      (synopsis "A small library for transposing lines and regions.")
+      (description "Transpose mark provides some commands that makes
+transposing lines and regions easier. You can mark a line and transpose it
+with a line at point, or \"mark\" a region and transpose it with another
+region a point. The plugin provides visual feedback for marked regions.")
+      (license license:gpl3))))
+
 (define-public emacs-key-chord
   (package
     (name "emacs-key-chord")
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#57773; Package guix-patches. (Thu, 15 Sep 2022 20:32:01 GMT) Full text and rfc822 format available.

Message #8 received at 57773 <at> debbugs.gnu.org (full text, mbox):

From: Trevor Richards <trev <at> trevdev.ca>
To: 57773 <at> debbugs.gnu.org
Subject: [PATCH] gnu: add emacs-transpose-mark
Date: Tue, 13 Sep 2022 08:21:37 -0700
---
 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 19be038746..7b85a0f5ec 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15771,6 +15771,30 @@ (define-public emacs-transpose-frame
 selected frame.")
     (license license:bsd-2)))
 
+(define-public emacs-transpose-mark
+  (let ((commit "667327602004794de97214cf336ac61650ef75b7")
+        (revision "0"))
+    (package
+      (name "emacs-transpose-mark")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/kwrooijen/transpose-mark.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/kwrooijen/transpose-mark.git")
+      (synopsis "A small library for transposing lines and regions.")
+      (description "Transpose mark provides some commands that makes
+transposing lines and regions easier. You can mark a line and transpose it
+with a line at point, or \"mark\" a region and transpose it with another
+region a point. The plugin provides visual feedback for marked regions.")
+      (license license:gpl3))))
+
 (define-public emacs-key-chord
   (package
     (name "emacs-key-chord")
-- 
2.37.3





Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Sun, 18 Sep 2022 09:27:01 GMT) Full text and rfc822 format available.

Notification sent to Trevor Richards <trev <at> trevdev.ca>:
bug acknowledged by developer. (Sun, 18 Sep 2022 09:27:02 GMT) Full text and rfc822 format available.

Message #13 received at 57773-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Trevor Richards <trev <at> trevdev.ca>
Cc: 57773-done <at> debbugs.gnu.org
Subject: Re: [bug#57773] [PATCH] gnu: add emacs-transpose-mark
Date: Sun, 18 Sep 2022 11:26:47 +0200
Hello,

Trevor Richards <trev <at> trevdev.ca> writes:

> +(define-public emacs-transpose-mark
> +  (let ((commit "667327602004794de97214cf336ac61650ef75b7")
> +        (revision "0"))

Thank you. I normalized your commit message and applied your patch with
the changes below.

> +    (package
> +      (name "emacs-transpose-mark")
> +      (version (git-version "0.0.1" revision commit))

Base version is actually "0": I couldn't find any tag nor a Version keyord. 

> +         (uri (git-reference
> +               (url "https://github.com/kwrooijen/transpose-mark.git")

I removed the ".git" suffix.

> +      (home-page "https://github.com/kwrooijen/transpose-mark.git")

Ditto.

> +      (synopsis "A small library for transposing lines and regions.")

Synopsis are not expected to start with an article, nor end with a full
stop.

> +      (description "Transpose mark provides some commands that makes
> +transposing lines and regions easier. You can mark a line and transpose it
> +with a line at point, or \"mark\" a region and transpose it with another
> +region a point. The plugin provides visual feedback for marked
> regions.")

I added two spaces between sentences.

> +      (license license:gpl3))))

License is "gpl3+": it contains "or (at your option) any later version"

Regards,
-- 
Nicolas Goaziou




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 16 Oct 2022 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 192 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.