unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#67961] [PATCH 0/3] Rename and update emacs-org-agenda-files-track.
@ 2023-12-21 22:17 Nicolas Graves via Guix-patches via
  2023-12-21 22:26 ` [bug#67961] [PATCH 1/3] gnu: emacs-org-dynamic-agenda: Rename package to emacs-org-agenda-files-track Nicolas Graves via Guix-patches via
  2024-01-18  8:03 ` [bug#67961] [PATCH 0/3] Rename and update emacs-org-agenda-files-track Andrew Tropin via Guix-patches via
  0 siblings, 2 replies; 5+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2023-12-21 22:17 UTC (permalink / raw)
  To: 67961; +Cc: ngraves

MELPA's maintainers advised for a rename before integration, hence the patch series. 

Nicolas Graves (3):
  gnu: emacs-org-dynamic-agenda: Rename package to
    emacs-org-agenda-files-track.
  gnu: emacs-org-dynamic-agenda-ql: Rename package to
    emacs-org-agenda-files-track-ql.
  gnu: emacs-org-agenda-files-track: Update to 0.4.0.

 gnu/packages/emacs-xyz.scm | 34 +++++++++++++++++++---------------
 1 file changed, 19 insertions(+), 15 deletions(-)

-- 
2.41.0





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

* [bug#67961] [PATCH 1/3] gnu: emacs-org-dynamic-agenda: Rename package to emacs-org-agenda-files-track.
  2023-12-21 22:17 [bug#67961] [PATCH 0/3] Rename and update emacs-org-agenda-files-track Nicolas Graves via Guix-patches via
@ 2023-12-21 22:26 ` Nicolas Graves via Guix-patches via
  2023-12-21 22:27   ` [bug#67961] [PATCH 2/3] gnu: emacs-org-dynamic-agenda-ql: Rename package to emacs-org-agenda-files-track-ql Nicolas Graves via Guix-patches via
  2023-12-21 22:27   ` [bug#67961] [PATCH 3/3] gnu: emacs-org-agenda-files-track: Update to 0.4.0 Nicolas Graves via Guix-patches via
  2024-01-18  8:03 ` [bug#67961] [PATCH 0/3] Rename and update emacs-org-agenda-files-track Andrew Tropin via Guix-patches via
  1 sibling, 2 replies; 5+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2023-12-21 22:26 UTC (permalink / raw)
  To: 67961; +Cc: ngraves

* gnu/packages/emacs-xyz.scm (emacs-org-dynamic-agenda): Define in terms of
'deprecated-package'.
(emacs-org-agenda-files-track): New variable, formerly known as "emacs-org-dynamic-agenda".

Change-Id: If0e8e3fe5871b585880944fd73a5ae37c6fd3464
---
 gnu/packages/emacs-xyz.scm | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 46cfbd5fc5..7fa2645288 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31831,15 +31831,15 @@ (define-public emacs-org-drill-table
 current tree.")
       (license license:gpl3+))))
 
-(define-public emacs-org-dynamic-agenda
+(define-public emacs-org-agenda-files-track
   (package
-    (name "emacs-org-dynamic-agenda")
+    (name "emacs-org-agenda-files-track")
     (version "0.3.1")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://git.sr.ht/~ngraves/org-dynamic-agenda")
+             (url "https://git.sr.ht/~ngraves/org-agenda-files-track")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
@@ -31847,13 +31847,15 @@ (define-public emacs-org-dynamic-agenda
     (build-system emacs-build-system)
     (arguments
      (list #:include
-           #~(list "org-dynamic-agenda\\.el" "README\\.org")))
-    (home-page "https://git.sr.ht/~ngraves/org-dynamic-agenda")
-    (synopsis "Dynamically generate org-agenda-files")
+           #~(list "org-agenda-files-track\\.el" "README\\.org")))
+    (home-page "https://git.sr.ht/~ngraves/org-agenda-files-track")
+    (synopsis "Fine-track org-agenda-files")
     (description
-     "This package dynamically generates org-agenda-files.")
+     "This package tracks org-agenda-files precisely to speed-up org-agenda.")
     (license license:gpl3+)))
 
+(define-deprecated emacs-org-dynamic-agenda emacs-org-agenda-files-track)
+
 (define-public emacs-org-dynamic-agenda-ql
   (package
     (inherit emacs-org-dynamic-agenda)
-- 
2.41.0





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

* [bug#67961] [PATCH 2/3] gnu: emacs-org-dynamic-agenda-ql: Rename package to emacs-org-agenda-files-track-ql.
  2023-12-21 22:26 ` [bug#67961] [PATCH 1/3] gnu: emacs-org-dynamic-agenda: Rename package to emacs-org-agenda-files-track Nicolas Graves via Guix-patches via
@ 2023-12-21 22:27   ` Nicolas Graves via Guix-patches via
  2023-12-21 22:27   ` [bug#67961] [PATCH 3/3] gnu: emacs-org-agenda-files-track: Update to 0.4.0 Nicolas Graves via Guix-patches via
  1 sibling, 0 replies; 5+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2023-12-21 22:27 UTC (permalink / raw)
  To: 67961; +Cc: ngraves

* gnu/packages/emacs-xyz.scm (emacs-org-dynamic-agenda-ql): Define in terms of
'deprecated-package'.
(emacs-org-agenda-files-track-ql): New variable, formerly known as "emacs-org-dynamic-agenda-ql".

Change-Id: Ib73181ecf6538de77c78f2d3b20f02e0df85beac
---
 gnu/packages/emacs-xyz.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7fa2645288..b03bf074ca 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31856,17 +31856,19 @@ (define-public emacs-org-agenda-files-track
 
 (define-deprecated emacs-org-dynamic-agenda emacs-org-agenda-files-track)
 
-(define-public emacs-org-dynamic-agenda-ql
+(define-public emacs-org-agenda-files-track-ql
   (package
-    (inherit emacs-org-dynamic-agenda)
-    (name "emacs-org-dynamic-agenda-ql")
+    (inherit emacs-org-agenda-files-track)
+    (name "emacs-org-agenda-files-track-ql")
     (arguments
      (list #:include
-           #~(list "org-dynamic-agenda-ql\\.el" "README\\.org")))
+           #~(list "org-agenda-files-track-ql\\.el" "README\\.org")))
     (propagated-inputs (list emacs-org-ql))
     (description
-     "This package dynamically generates org-agenda-files, and take advantage
-of the org-ql cache.")))
+     "This package tracks org-agenda-files precisely to speed-up org-agenda,
+and takes advantage of the org-ql cache.")))
+
+(define-deprecated emacs-org-dynamic-agenda-ql emacs-org-agenda-files-track-ql)
 
 (define-public emacs-dash-docs
   (let ((commit "dafc8fc9f1ddb2e4e39e0b8d066c42d5d7ce8d06")
-- 
2.41.0





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

* [bug#67961] [PATCH 3/3] gnu: emacs-org-agenda-files-track: Update to 0.4.0.
  2023-12-21 22:26 ` [bug#67961] [PATCH 1/3] gnu: emacs-org-dynamic-agenda: Rename package to emacs-org-agenda-files-track Nicolas Graves via Guix-patches via
  2023-12-21 22:27   ` [bug#67961] [PATCH 2/3] gnu: emacs-org-dynamic-agenda-ql: Rename package to emacs-org-agenda-files-track-ql Nicolas Graves via Guix-patches via
@ 2023-12-21 22:27   ` Nicolas Graves via Guix-patches via
  1 sibling, 0 replies; 5+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2023-12-21 22:27 UTC (permalink / raw)
  To: 67961; +Cc: ngraves

* gnu/packages/emacs-xyz.scm (emacs-org-agenda-files-track): Update to 0.4.0.

Change-Id: I69e0efd85d03dc5202d18a47d4e05b82e01b0994
---
 gnu/packages/emacs-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b03bf074ca..9054022ec3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31834,7 +31834,7 @@ (define-public emacs-org-drill-table
 (define-public emacs-org-agenda-files-track
   (package
     (name "emacs-org-agenda-files-track")
-    (version "0.3.1")
+    (version "0.4.0")
     (source
      (origin
        (method git-fetch)
@@ -31843,7 +31843,7 @@ (define-public emacs-org-agenda-files-track
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0g59ckcrc9qd0h78qwq4qm3kn97nvnc2a0yj4g3fh74wr1mg80ad"))))
+        (base32 "0d7fhsinm2cj8vd7s54x5r6jhq3l36b7x6s8cy5r6y005h8kac50"))))
     (build-system emacs-build-system)
     (arguments
      (list #:include
-- 
2.41.0





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

* [bug#67961] [PATCH 0/3] Rename and update emacs-org-agenda-files-track.
  2023-12-21 22:17 [bug#67961] [PATCH 0/3] Rename and update emacs-org-agenda-files-track Nicolas Graves via Guix-patches via
  2023-12-21 22:26 ` [bug#67961] [PATCH 1/3] gnu: emacs-org-dynamic-agenda: Rename package to emacs-org-agenda-files-track Nicolas Graves via Guix-patches via
@ 2024-01-18  8:03 ` Andrew Tropin via Guix-patches via
  1 sibling, 0 replies; 5+ messages in thread
From: Andrew Tropin via Guix-patches via @ 2024-01-18  8:03 UTC (permalink / raw)
  To: 67961, 67961-done; +Cc: ngraves

[-- Attachment #1: Type: text/plain, Size: 738 bytes --]

On 2023-12-21 23:17, Nicolas Graves via Guix-patches via wrote:

> MELPA's maintainers advised for a rename before integration, hence the patch series. 
>
> Nicolas Graves (3):
>   gnu: emacs-org-dynamic-agenda: Rename package to
>     emacs-org-agenda-files-track.
>   gnu: emacs-org-dynamic-agenda-ql: Rename package to
>     emacs-org-agenda-files-track-ql.
>   gnu: emacs-org-agenda-files-track: Update to 0.4.0.
>
>  gnu/packages/emacs-xyz.scm | 34 +++++++++++++++++++---------------
>  1 file changed, 19 insertions(+), 15 deletions(-)

Thank you!  Applied, pushed.  I screwed up an author name a bit, so it's
Nicolas Graves via Guix-patches via <guix-patches@gnu.org>, sorry :)

-- 
Best regards,
Andrew Tropin

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

end of thread, other threads:[~2024-01-18  8:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-21 22:17 [bug#67961] [PATCH 0/3] Rename and update emacs-org-agenda-files-track Nicolas Graves via Guix-patches via
2023-12-21 22:26 ` [bug#67961] [PATCH 1/3] gnu: emacs-org-dynamic-agenda: Rename package to emacs-org-agenda-files-track Nicolas Graves via Guix-patches via
2023-12-21 22:27   ` [bug#67961] [PATCH 2/3] gnu: emacs-org-dynamic-agenda-ql: Rename package to emacs-org-agenda-files-track-ql Nicolas Graves via Guix-patches via
2023-12-21 22:27   ` [bug#67961] [PATCH 3/3] gnu: emacs-org-agenda-files-track: Update to 0.4.0 Nicolas Graves via Guix-patches via
2024-01-18  8:03 ` [bug#67961] [PATCH 0/3] Rename and update emacs-org-agenda-files-track Andrew Tropin via Guix-patches via

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