GNU bug report logs - #26367
Please add emacs-adaptive-wrap package

Previous Next

Package: guix;

Reported by: Ivan Vilata i Balaguer <ivan <at> selidor.net>

Date: Wed, 5 Apr 2017 10:16:02 UTC

Severity: normal

Done: Alex Kost <alezost <at> gmail.com>

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 26367 in the body.
You can then email your comments to 26367 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 bug-guix <at> gnu.org:
bug#26367; Package guix. (Wed, 05 Apr 2017 10:16:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Ivan Vilata i Balaguer <ivan <at> selidor.net>:
New bug report received and forwarded. Copy sent to bug-guix <at> gnu.org. (Wed, 05 Apr 2017 10:16:02 GMT) Full text and rfc822 format available.

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

From: Ivan Vilata i Balaguer <ivan <at> selidor.net>
To: bug-guix <at> gnu.org
Subject: Please add emacs-adaptive-wrap package
Date: Wed, 5 Apr 2017 12:15:39 +0200
Hi, this is a wishlist request to add the
[adaptive-wrap](https://elpa.gnu.org/packages/adaptive-wrap.html) ELPA
package to GNU Guix.  The following definition, as produced by ``guix
import elpa adaptive-wrap`` (except for removing the ``license:``
prefix) seems to work without issues with ``guix install -f FILE``:

```
(use-modules (guix)
             (guix build-system emacs)
             (guix licenses))

(package
  (name "emacs-adaptive-wrap")
  (version "0.5")
  (source
    (origin
      (method url-fetch)
      (uri (string-append
             "http://elpa.gnu.org/packages/adaptive-wrap-"
             version
             ".el"))
      (sha256
        (base32
          "0frgmp8vrrml4iykm60j4d6cl9rbcivy9yh24q6kd10bcyx59ypy"))))
  (build-system emacs-build-system)
  (home-page
    "http://elpa.gnu.org/packages/adaptive-wrap.html")
  (synopsis "Smart line-wrapping with wrap-prefix")
  (description
    "This package provides the `adaptive-wrap-prefix-mode' minor mode which sets
the wrap-prefix property on the fly so that single-long-line paragraphs get
word-wrapped in a way similar to what you'd get with M-q using
adaptive-fill-mode, but without actually changing the buffer's text.")
  (license gpl3+))
```

Thank you very much,

-- 
Ivan Vilata i Balaguer -- https://elvil.net/




Information forwarded to bug-guix <at> gnu.org:
bug#26367; Package guix. (Wed, 05 Apr 2017 10:46:01 GMT) Full text and rfc822 format available.

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

From: Catonano <catonano <at> gmail.com>
To: Ivan Vilata i Balaguer <ivan <at> selidor.net>
Cc: 26367 <at> debbugs.gnu.org
Subject: Re: bug#26367: Please add emacs-adaptive-wrap package
Date: Wed, 5 Apr 2017 12:44:58 +0200
[Message part 1 (text/plain, inline)]
here it is

I just built it, I didn't install it and run it

2017-04-05 12:15 GMT+02:00 Ivan Vilata i Balaguer <ivan <at> selidor.net>:

> Hi, this is a wishlist request to add the
> [adaptive-wrap](https://elpa.gnu.org/packages/adaptive-wrap.html) ELPA
> package to GNU Guix.  The following definition, as produced by ``guix
> import elpa adaptive-wrap`` (except for removing the ``license:``
> prefix) seems to work without issues with ``guix install -f FILE``:
>
> ```
> (use-modules (guix)
>              (guix build-system emacs)
>              (guix licenses))
>
> (package
>   (name "emacs-adaptive-wrap")
>   (version "0.5")
>   (source
>     (origin
>       (method url-fetch)
>       (uri (string-append
>              "http://elpa.gnu.org/packages/adaptive-wrap-"
>              version
>              ".el"))
>       (sha256
>         (base32
>           "0frgmp8vrrml4iykm60j4d6cl9rbcivy9yh24q6kd10bcyx59ypy"))))
>   (build-system emacs-build-system)
>   (home-page
>     "http://elpa.gnu.org/packages/adaptive-wrap.html")
>   (synopsis "Smart line-wrapping with wrap-prefix")
>   (description
>     "This package provides the `adaptive-wrap-prefix-mode' minor mode
> which sets
> the wrap-prefix property on the fly so that single-long-line paragraphs get
> word-wrapped in a way similar to what you'd get with M-q using
> adaptive-fill-mode, but without actually changing the buffer's text.")
>   (license gpl3+))
> ```
>
> Thank you very much,
>
> --
> Ivan Vilata i Balaguer -- https://elvil.net/
>
>
>
>
[Message part 2 (text/html, inline)]
[0001-gnu-Add-emacs-adaptive-wrap.patch (text/x-patch, attachment)]

Reply sent to Alex Kost <alezost <at> gmail.com>:
You have taken responsibility. (Fri, 07 Apr 2017 17:34:01 GMT) Full text and rfc822 format available.

Notification sent to Ivan Vilata i Balaguer <ivan <at> selidor.net>:
bug acknowledged by developer. (Fri, 07 Apr 2017 17:34:01 GMT) Full text and rfc822 format available.

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

From: Alex Kost <alezost <at> gmail.com>
To: Catonano <catonano <at> gmail.com>
Cc: 26367-done <at> debbugs.gnu.org, Ivan Vilata i Balaguer <ivan <at> selidor.net>
Subject: Re: bug#26367: Please add emacs-adaptive-wrap package
Date: Fri, 07 Apr 2017 20:33:35 +0300
> From be8efedf1710a907db522002c9df1773ab1681ae Mon Sep 17 00:00:00 2001
> From: humanitiesNerd <catonano <at> gmail.com>
> Date: Wed, 5 Apr 2017 12:42:05 +0200
> Subject: [PATCH] gnu: Add emacs-adaptive-wrap
>
> * gnu/packages/emacs.scm (emacs-adaptive-wrap): New variable.
> ---
>  gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)

Thanks to both of you!  I mentioned Ivan in the commit message and
applied this patch:

http://git.savannah.gnu.org/cgit/guix.git/commit/?id=350cfccb069ff6b8fd9625268612ce09be5f66c9

> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index 3db31f207..9e66c7e9f 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -4057,3 +4057,27 @@ jQuery and Bootstrap resources included via osscdn.")
>      (description
>       "This Emacs package highlights the s-exp at the current position.")
>      (license license:gpl3+)))
> +
> +(define-public emacs-adaptive-wrap
> +  (package
> +    (name "emacs-adaptive-wrap")
> +    (version "0.5")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append
> +             "http://elpa.gnu.org/packages/adaptive-wrap-"
> +             version
> +             ".el"))
> +       (sha256
> +        (base32
> +         "0frgmp8vrrml4iykm60j4d6cl9rbcivy9yh24q6kd10bcyx59ypy"))))
> +    (build-system emacs-build-system)
> +    (home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
> +    (synopsis "Smart line-wrapping with wrap-prefix")
> +    (description
> +     "This package provides the `adaptive-wrap-prefix-mode' minor mode which sets
                                   ^^
Since description supports texinfo markup, I used
@code{adaptive-wrap-prefix-mode} here...

> +the wrap-prefix property on the fly so that single-long-line paragraphs get
> +word-wrapped in a way similar to what you'd get with M-q using
                                                        ^^^
... and @kbd{M-q} here.

> +adaptive-fill-mode, but without actually changing the buffer's text.")
> +    (license license:gpl3+)))

-- 
Alex




Information forwarded to bug-guix <at> gnu.org:
bug#26367; Package guix. (Mon, 10 Apr 2017 07:07:02 GMT) Full text and rfc822 format available.

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

From: Ivan Vilata i Balaguer <ivan <at> selidor.net>
To: Alex Kost <alezost <at> gmail.com>
Cc: Catonano <catonano <at> gmail.com>, 26367-done <at> debbugs.gnu.org,
 Ivan Vilata i Balaguer <ivan <at> selidor.net>
Subject: Re: bug#26367: Please add emacs-adaptive-wrap package
Date: Mon, 10 Apr 2017 09:06:34 +0200
Alex Kost (2017-04-07 20:33:35 +0300) wrote:

> > From be8efedf1710a907db522002c9df1773ab1681ae Mon Sep 17 00:00:00 2001
> > From: humanitiesNerd <catonano <at> gmail.com>
> > Date: Wed, 5 Apr 2017 12:42:05 +0200
> > Subject: [PATCH] gnu: Add emacs-adaptive-wrap
> >
> > * gnu/packages/emacs.scm (emacs-adaptive-wrap): New variable.
> > ---
> >  gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++
> >  1 file changed, 24 insertions(+)
> 
> Thanks to both of you!  I mentioned Ivan in the commit message and
> applied this patch:
> 
> http://git.savannah.gnu.org/cgit/guix.git/commit/?id=350cfccb069ff6b8fd9625268612ce09be5f66c9

Thanks Catonano and Alex for the very prompt action!`:)`

-- 
Ivan Vilata i Balaguer -- https://elvil.net/




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

This bug report was last modified 6 years and 362 days ago.

Previous Next


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