GNU bug report logs -
#61007
[PATCH] gnu: emacs-origami-el: Fix cl package deprecation.
Previous Next
Reported by: Nicolas Graves <ngraves <at> ngraves.fr>
Date: Sun, 22 Jan 2023 16:28:02 UTC
Severity: normal
Tags: patch
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#61007: [PATCH] gnu: emacs-origami-el: Fix cl package deprecation.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 61007 <at> debbugs.gnu.org.
--
61007: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=61007
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hello,
Nicolas Graves via Guix-patches via <guix-patches <at> gnu.org> writes:
> * gnu/packages/emacs-xyz.scm (emacs-origami-el):
> [source] Add patch to fix cl package deprecation.
Applied.
The linter seems unhappy with the patch, but I think the linter is wrong
in this case.
Regards,
--
Nicolas Goaziou
[Message part 3 (message/rfc822, inline)]
* gnu/packages/emacs-xyz.scm (emacs-origami-el):
[source] Add patch to fix cl package deprecation.
[propagated-inputs] Formatting.
[home-page] Formatting.
---
gnu/packages/emacs-xyz.scm | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 41a0ccf09e..ed5c3bd71d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28753,24 +28753,30 @@ (define-public emacs-rjsx-mode
(define-public emacs-origami-el
(let ((commit "1f38085c8f9af7842765ed63f7d6dfe4dab59366")
(version "1.0")
- (revision "1"))
+ (revision "1")
+ (url "https://github.com/gregsexton/origami.el")
+ (patch "1d9c4f120c027a5009b0424270e3aae59f1cb128"))
(package
(name "emacs-origami-el")
(version (git-version version revision commit))
(source
(origin
(method git-fetch)
- (uri (git-reference
- (url "https://github.com/gregsexton/origami.el")
- (commit commit)))
+ (uri (git-reference (url url) (commit commit)))
(file-name (git-file-name name version))
(sha256
- (base32
- "0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x"))))
+ (base32 "0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x"))
+ (patches
+ (list
+ (origin
+ (method url-fetch)
+ (uri (string-append url "/commit/" patch ".patch"))
+ (sha256
+ (base32
+ "0yia4dhqjzdidxd77s2ggg6mmj05jbsnwc35myzzhzh1zbq8mrfy")))))))
(build-system emacs-build-system)
- (propagated-inputs
- (list emacs-dash emacs-s))
- (home-page "https://github.com/gregsexton/origami.el")
+ (propagated-inputs (list emacs-dash emacs-s))
+ (home-page url)
(synopsis "Flexible text-folding")
(description "This package provides a minor mode for collapsing and
expanding regions of text without modifying the actual contents.")
--
2.39.1
This bug report was last modified 2 years and 176 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.