all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#34521] Guix patch
@ 2019-02-18  2:50 Brian Leung
  2019-02-18 15:36 ` Ricardo Wurmus
  0 siblings, 1 reply; 3+ messages in thread
From: Brian Leung @ 2019-02-18  2:50 UTC (permalink / raw)
  To: 34521


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

See attached.

[-- Attachment #1.2: Type: text/html, Size: 39 bytes --]

[-- Attachment #2: 0001-gnu-Add-emacs-isearch-prop.patch --]
[-- Type: text/x-patch, Size: 1660 bytes --]

From 869067c023cc1937e6f1f2656aa41b799ffdf34f Mon Sep 17 00:00:00 2001
From: Brian Leung <bkleung89@gmail.com>
Date: Mon, 18 Feb 2019 03:32:08 +0100
Subject: [PATCH] gnu: Add emacs-isearch-prop.
To: guix-patches@gnu.org

From: leungbk <bkleung89@gmail.com>

---
 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 bd3c51b087..d06b14ea34 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9626,6 +9626,28 @@ until the top-level form is no longer a macro call.")
     (description "Execute menu items as commands, with completion.")
     (license license:gpl3)))
 
+(define-public emacs-isearch-prop
+  (let ((commit "5e9dc44cf582d998aaa73ccd4d07cbda01248156")
+        (revision "1"))
+    (package
+      (name "emacs-isearch-prop")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/emacsmirror/isearch-prop.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1xawppy705ybsgx566zvj8zk2aajq0sqvhvfs7nijqq32lx0a2zl"))))
+      (build-system emacs-build-system)
+      (home-page "https://www.emacswiki.org/emacs/isearch-prop.el")
+      (synopsis "Extensions to `isearch.el'")
+      (description "Search text- or overlay-property contexts.")
+      (license license:gpl2+))))
+
 (define-public emacs-company-lua
   (let ((commit "0be8122f3adf57ad27953bf4b03545d6298d3da4"))
     (package
-- 
2.20.1


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

* [bug#34521] Guix patch
  2019-02-18  2:50 [bug#34521] Guix patch Brian Leung
@ 2019-02-18 15:36 ` Ricardo Wurmus
       [not found]   ` <CAAc=MExrt1FFb2LR=Jd=pn-AHV_Bs6HpioURzNKa8n6Cv5WDXQ@mail.gmail.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Wurmus @ 2019-02-18 15:36 UTC (permalink / raw)
  To: Brian Leung; +Cc: 34521


Hi Brian,

> Subject: [PATCH] gnu: Add emacs-isearch-prop.

Thank you for the patch.

> +(define-public emacs-isearch-prop
> +  (let ((commit "5e9dc44cf582d998aaa73ccd4d07cbda01248156")
> +        (revision "1"))
> +    (package
> +      (name "emacs-isearch-prop")
> +      (version (git-version "0" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url "https://github.com/emacsmirror/isearch-prop.git")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32
> +           "1xawppy705ybsgx566zvj8zk2aajq0sqvhvfs7nijqq32lx0a2zl"))))
> +      (build-system emacs-build-system)
> +      (home-page "https://www.emacswiki.org/emacs/isearch-prop.el")
> +      (synopsis "Extensions to `isearch.el'")
> +      (description "Search text- or overlay-property contexts.")

This description is a bit short.  How about this:

  The Emacs library @code{isearch-prop.el} lets you search within
  contexts.  You can limit incremental search to a set of zones of
  buffer text, search contexts that in effect constitute a multi-region.
  These zones can be defined in various ways, including some ways
  provided specially by this library.

What do you think?

> +      (license license:gpl2+))))

The license is actually GPLv3+.

--
Ricardo

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

* bug#34521: Guix patch
       [not found]     ` <CAAc=MEwmdMA-CLJQ7ehuMYNAuLGKNhpv++y94NpwHh9Sbb9cDg@mail.gmail.com>
@ 2019-02-18 21:09       ` Ricardo Wurmus
  0 siblings, 0 replies; 3+ messages in thread
From: Ricardo Wurmus @ 2019-02-18 21:09 UTC (permalink / raw)
  To: Brian Leung; +Cc: 34521-done


Hi Brian,

> Please ignore my last email---here is another fix to the patch.

Thank you.  I pushed it to the master branch with commit 48211de6d.

-- 
Ricardo

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

end of thread, other threads:[~2019-02-18 21:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-18  2:50 [bug#34521] Guix patch Brian Leung
2019-02-18 15:36 ` Ricardo Wurmus
     [not found]   ` <CAAc=MExrt1FFb2LR=Jd=pn-AHV_Bs6HpioURzNKa8n6Cv5WDXQ@mail.gmail.com>
     [not found]     ` <CAAc=MEwmdMA-CLJQ7ehuMYNAuLGKNhpv++y94NpwHh9Sbb9cDg@mail.gmail.com>
2019-02-18 21:09       ` bug#34521: " Ricardo Wurmus

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.