Skip to content
Snippets Groups Projects
Commit 2bc33165 authored by Olivier Certner's avatar Olivier Certner Committed by Robert Clausecker
Browse files

editors/sly-asdf: Update to the latest version (0.2.0 + 1 one commit)

As the port seems to be using explicit versioning, switch to a "version-date"
scheme and bump PORTEPOCH.

Changes: A fix for query-replace across a system, a possible ECL fix, fix
jumping to source for errors.

Changelog: https://github.com/mmgeorge/sly-asdf/compare/bcaeba9b...6f9d7514

PR:		271654
parent 5de29b5f
No related branches found
No related tags found
No related merge requests found
PORTNAME= sly-asdf PORTNAME= sly-asdf
PORTVERSION= 20210308 DISTVERSION= 0.2.0-20221119
PORTREVISION= 11 PORTEPOCH= 1
CATEGORIES= editors elisp CATEGORIES= editors elisp
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
...@@ -17,7 +17,7 @@ RUN_DEPENDS= ${MY_DEPENDS} ...@@ -17,7 +17,7 @@ RUN_DEPENDS= ${MY_DEPENDS}
USES= emacs USES= emacs
USE_GITHUB= yes USE_GITHUB= yes
GH_ACCOUNT= mmgeorge GH_ACCOUNT= mmgeorge
GH_TAGNAME= bcaeba9b73b582ae1c4fadc23c71ee7e38d9a64e GH_TAGNAME= 6f9d751469bb82530db1673c22e7437ca6c95f45
NO_ARCH= yes NO_ARCH= yes
......
TIMESTAMP = 1615760525 TIMESTAMP = 1685099209
SHA256 (mmgeorge-sly-asdf-20210308-bcaeba9b73b582ae1c4fadc23c71ee7e38d9a64e_GH0.tar.gz) = c23141f2c9a0dfff9a6452c7753f2c3d236ef0b36c5b1c967f61b898a3ab4ed7 SHA256 (mmgeorge-sly-asdf-0.2.0-20221119-6f9d751469bb82530db1673c22e7437ca6c95f45_GH0.tar.gz) = 4f21b946892296de9b26022e2d7765f01215f983f89d0f4adf8418c34d1b4d6b
SIZE (mmgeorge-sly-asdf-20210308-bcaeba9b73b582ae1c4fadc23c71ee7e38d9a64e_GH0.tar.gz) = 42843 SIZE (mmgeorge-sly-asdf-0.2.0-20221119-6f9d751469bb82530db1673c22e7437ca6c95f45_GH0.tar.gz) = 42754
--- README.md.orig 2021-03-08 03:32:35 UTC
+++ README.md
@@ -16,9 +16,8 @@ Installing manually will require the contrib be regist
```
(add-to-list 'sly-contribs 'sly-asdf 'append)
```
+
## Experimental
-SLY-ASDF currently supports a very experimental system-aware checker that builds on flymake. This loads the system in a separate process and highlights any compilation/load errors for currently opened buffers. Only tested with SBCL. Enable this with
-```
-(setq sly-asdf-enable-experimental-syntax-checking t)
-(require 'sly-asdf-flymake)
-```
+Upstream currently supports a very experimental system-aware checker that
+builds on flymake. It is not available in this port (please use some ELPA
+package instead).
--- sly-asdf.el.orig 2021-03-08 03:32:35 UTC --- sly-asdf.el.orig 2023-05-26 11:13:10 UTC
+++ sly-asdf.el +++ sly-asdf.el
@@ -354,10 +354,5 @@ in the directory of the current buffer." @@ -355,10 +355,5 @@ in the directory of the current buffer."
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
{ type: install { type: install
message: <<EOM message: <<EOM
To use the sly-asdf contrib, you must: To use the sly-asdf contrib, you must:
1. Register sly-asdf into SLY. You just have to add this line to some init 1. Register sly-asdf into SLY. You just have to add this line to some init
file: file:
(require 'sly-asdf) (require 'sly-asdf)
Doing this is not strictly necessary if you want to automatically activate Doing this is not strictly necessary if you want to automatically activate
...@@ -11,9 +11,9 @@ To use the sly-asdf contrib, you must: ...@@ -11,9 +11,9 @@ To use the sly-asdf contrib, you must:
upstream does. upstream does.
2. Ensure that ASDF is loaded by your Common Lisp implementation. 2. Ensure that ASDF is loaded by your Common Lisp implementation.
If you want sly-asdf to be automatically activated on each new SLY If you want sly-asdf to be automatically activated on each new SLY session, put
session, put it in the `sly-contribs' list. E.g., you can add something like it in the `sly-contribs' list. E.g., you can add something like this in some
this in some Emacs' init file: Emacs' init file:
(setq sly-contribs '(sly-fancy sly-asdf)) (setq sly-contribs '(sly-fancy sly-asdf))
or customize the variable. or customize the variable.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment