unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Brian Leung <bkleung89@gmail.com>
To: 36778@debbugs.gnu.org
Subject: [bug#36778] [PATCH] Add and update Emacs packages.
Date: Fri, 2 Aug 2019 06:45:22 +0200	[thread overview]
Message-ID: <CAAc=MExHwTNgL=N-wbDKrhexBLu5un+KFZf=Ceqtc6P-j8be5w@mail.gmail.com> (raw)
In-Reply-To: <CAAc=MEw2TtjmihoSQE5AtxiGb1c3SDgBPkyZZPvkD6AwUC7YgQ@mail.gmail.com>


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

OK, I've added two more patches.

On Thu, Aug 1, 2019 at 6:02 PM Brian Leung <bkleung89@gmail.com> wrote:

> I've added another patch.
>
> On Tue, Jul 30, 2019 at 11:03 AM Brian Leung <bkleung89@gmail.com> wrote:
>
>> I've rebased and updated with several more patches.
>>
>> On Sat, Jul 27, 2019 at 5:23 AM Brian Leung <bkleung89@gmail.com> wrote:
>>
>>> I rebased and added a few additional patches.
>>>
>>

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

[-- Attachment #2: 0018-gnu-emacs-dired-hacks-Update-to-0.0.1-2.886befe.patch --]
[-- Type: text/x-patch, Size: 1390 bytes --]

From 85b4ac576a9939f6e5ea8c8eb612b5430716b255 Mon Sep 17 00:00:00 2001
From: Brian Leung <bkleung89@gmail.com>
Date: Fri, 2 Aug 2019 06:30:30 +0200
Subject: [PATCH 1/2] gnu: emacs-dired-hacks: Update to 0.0.1-2.886befe.

* gnu/packages/emacs-xyz.scm (emacs-dired-hacks): Update to 0.0.1-2.886befe.
---
 gnu/packages/emacs-xyz.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a199791f32..254b387797 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8682,8 +8682,8 @@ the actual transformations.")
       (license license:gpl2+))))
 
 (define-public emacs-dired-hacks
-  (let ((commit "2c1234592aee91dcd9401bcd67213e6a4a464fd9")
-        (revision "1"))
+  (let ((commit "886befe113fae397407c804f72c45613d1d43535")
+        (revision "2"))
     (package
       (name "emacs-dired-hacks")
       (version (string-append "0.0.1-" revision "."
@@ -8696,7 +8696,7 @@ the actual transformations.")
                 (file-name (git-file-name name version))
                 (sha256
                  (base32
-                  "1g7mky41cahpryzj6frdgzdymknpqq7pidzfjj9304887kijmhj3"))))
+                  "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl"))))
       (build-system emacs-build-system)
       (propagated-inputs
        `(("emacs-dash" ,emacs-dash)
-- 
2.22.0


[-- Attachment #3: 0019-gnu-Add-emacs-org-sidebar.patch --]
[-- Type: text/x-patch, Size: 2242 bytes --]

From d44629e12e479aa7777ca24ef63fe416f17f9a06 Mon Sep 17 00:00:00 2001
From: Brian Leung <bkleung89@gmail.com>
Date: Fri, 2 Aug 2019 06:43:00 +0200
Subject: [PATCH 2/2] gnu: Add emacs-org-sidebar.

* gnu/packages/emacs-xyz.scm (emacs-org-sidebar): New variable.
---
 gnu/packages/emacs-xyz.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 254b387797..60308fd1a6 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4110,6 +4110,39 @@ minutes is started automatically.  Every 4 breaks a long break is
 started with 20 minutes.  All values are customizable.")
     (license license:gpl3+)))
 
+(define-public emacs-org-sidebar
+  (let ((commit "74ca98b9920f3de3f13d49866581435e1ec63ec5")
+        (version "0.1")
+        (revision "1"))
+    (package
+      (name "emacs-org-sidebar")
+      (version (git-version version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/alphapapa/org-sidebar.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "03p1ndyw2qp2skib5hszc4xyh84w7p2mhkd4a9dy6qv8q47xpsqn"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-dash" ,emacs-dash)
+         ("emacs-org-super-agenda" ,emacs-org-super-agenda)
+         ("emacs-org" ,emacs-org)
+         ("emacs-org-ql" ,emacs-org-ql)
+         ("emacs-s" ,emacs-s)))
+      (home-page "https://github.com/alphapapa/org-sidebar")
+      (synopsis "Helpful sidebar for Org buffers")
+      (description "This package provides a sidebar for Org buffers.  At the
+top is a chronological list of scheduled and deadlined tasks in the current
+buffer (similar to the Org agenda ,but without all its features), and below
+that is a list of all other non-done to-do items.  If the buffer is narrowed,
+the sidebar only shows items in the narrowed portion; this allows seeing an
+overview of tasks in a subtree.")
+      (license license:gpl3+))))
+
 (define-public emacs-org-trello
   (package
     (name "emacs-org-trello")
-- 
2.22.0


  reply	other threads:[~2019-08-02  4:47 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-24  3:55 [bug#36778] [PATCH] Add and update Emacs packages Brian Leung
2019-07-27  3:23 ` Brian Leung
2019-07-30  9:03   ` Brian Leung
2019-08-01 16:02     ` Brian Leung
2019-08-02  4:45       ` Brian Leung [this message]
2019-08-03 18:32         ` Brian Leung
2019-08-05 14:23           ` bug#36778: " Ricardo Wurmus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAAc=MExHwTNgL=N-wbDKrhexBLu5un+KFZf=Ceqtc6P-j8be5w@mail.gmail.com' \
    --to=bkleung89@gmail.com \
    --cc=36778@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).