unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#28530] [PATCH 0/2] Update emacs-pdf-tools and add emacs-tablist
@ 2017-09-20 16:55 Alex Kost
  2017-09-20 17:01 ` [bug#28530] [PATCH 1/2] gnu: Add emacs-tablist Alex Kost
  2017-09-28 15:46 ` bug#28530: [PATCH 0/2] Update emacs-pdf-tools and add emacs-tablist Alex Kost
  0 siblings, 2 replies; 4+ messages in thread
From: Alex Kost @ 2017-09-20 16:55 UTC (permalink / raw)
  To: 28530

This is a simple update of 'emacs-pdf-tools', except it requires the
additional package now: 'emacs-tablist' (previously it was a part of
'emacs-pdf-tools'), so I will send 2 patches:

[PATCH 1/2] gnu: Add emacs-tablist.
[PATCH 2/2] gnu: emacs-pdf-tools: Update to 0.80.

-- 
Alex

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

* [bug#28530] [PATCH 1/2] gnu: Add emacs-tablist.
  2017-09-20 16:55 [bug#28530] [PATCH 0/2] Update emacs-pdf-tools and add emacs-tablist Alex Kost
@ 2017-09-20 17:01 ` Alex Kost
  2017-09-20 17:01   ` [bug#28530] [PATCH 2/2] gnu: emacs-pdf-tools: Update to 0.80 Alex Kost
  2017-09-28 15:46 ` bug#28530: [PATCH 0/2] Update emacs-pdf-tools and add emacs-tablist Alex Kost
  1 sibling, 1 reply; 4+ messages in thread
From: Alex Kost @ 2017-09-20 17:01 UTC (permalink / raw)
  To: 28530

* gnu/packages/emacs.scm (emacs-tablist): New variable.
---
 gnu/packages/emacs.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 817313702..00d2328a9 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1277,6 +1277,28 @@ Maps directly inside Emacs.")
 single buffer.")
     (license license:gpl3+)))
 
+(define-public emacs-tablist
+  (package
+    (name "emacs-tablist")
+    (version "0.70")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/politza/tablist/archive/v"
+                    version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/politza/tablist")
+    (synopsis "Extension for @code{tabulated-list-mode}")
+    (description "Tablist is the Emacs package that provides several
+additional features to @code{tabulated-list-mode}: it adds marks,
+filters, new key bindings and faces.  It can be enabled by
+@code{tablist-mode} or @code{tablist-minor-mode} commands.")
+    (license license:gpl3+)))
+
 (define-public emacs-pdf-tools
   (package
     (name "emacs-pdf-tools")
-- 
2.13.2

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

* [bug#28530] [PATCH 2/2] gnu: emacs-pdf-tools: Update to 0.80.
  2017-09-20 17:01 ` [bug#28530] [PATCH 1/2] gnu: Add emacs-tablist Alex Kost
@ 2017-09-20 17:01   ` Alex Kost
  0 siblings, 0 replies; 4+ messages in thread
From: Alex Kost @ 2017-09-20 17:01 UTC (permalink / raw)
  To: 28530

* gnu/packages/emacs.scm (emacs-pdf-tools): Update to 0.80.
[propagated-inputs]: Add 'emacs-tablist' as it is the new dependency.
---
 gnu/packages/emacs.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 00d2328a9..87a644660 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1302,7 +1302,7 @@ filters, new key bindings and faces.  It can be enabled by
 (define-public emacs-pdf-tools
   (package
     (name "emacs-pdf-tools")
-    (version "0.70")
+    (version "0.80")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -1311,7 +1311,7 @@ filters, new key bindings and faces.  It can be enabled by
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "1m0api6wiawswyk46bdsyk6r5rg3b86a4paar6nassm6x6c6vr77"))))
+                "06imydn3a92vr57azpn1zhqc14kxyyslmyi9ldsyphan9b724gb6"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; there are no tests
@@ -1360,6 +1360,7 @@ filters, new key bindings and faces.  It can be enabled by
               ("glib" ,glib)
               ("libpng" ,libpng)
               ("zlib" ,zlib)))
+    (propagated-inputs `(("tablist" ,emacs-tablist)))
     (synopsis "Emacs support library for PDF files")
     (description
      "PDF Tools is, among other things, a replacement of DocView for PDF
-- 
2.13.2

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

* bug#28530: [PATCH 0/2] Update emacs-pdf-tools and add emacs-tablist
  2017-09-20 16:55 [bug#28530] [PATCH 0/2] Update emacs-pdf-tools and add emacs-tablist Alex Kost
  2017-09-20 17:01 ` [bug#28530] [PATCH 1/2] gnu: Add emacs-tablist Alex Kost
@ 2017-09-28 15:46 ` Alex Kost
  1 sibling, 0 replies; 4+ messages in thread
From: Alex Kost @ 2017-09-28 15:46 UTC (permalink / raw)
  To: 28530-done

Alex Kost (2017-09-20 19:55 +0300) wrote:

> This is a simple update of 'emacs-pdf-tools', except it requires the
> additional package now: 'emacs-tablist' (previously it was a part of
> 'emacs-pdf-tools'), so I will send 2 patches:
>
> [PATCH 1/2] gnu: Add emacs-tablist.
> [PATCH 2/2] gnu: emacs-pdf-tools: Update to 0.80.

Applied.  Sorry if I didn't wait enough time (only about a week), but
since these changes are simple and usual, I decided to go ahead :-)

-- 
Alex

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

end of thread, other threads:[~2017-09-28 15:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-20 16:55 [bug#28530] [PATCH 0/2] Update emacs-pdf-tools and add emacs-tablist Alex Kost
2017-09-20 17:01 ` [bug#28530] [PATCH 1/2] gnu: Add emacs-tablist Alex Kost
2017-09-20 17:01   ` [bug#28530] [PATCH 2/2] gnu: emacs-pdf-tools: Update to 0.80 Alex Kost
2017-09-28 15:46 ` bug#28530: [PATCH 0/2] Update emacs-pdf-tools and add emacs-tablist Alex Kost

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