View | Details | Raw Unified | Return to bug 271654 | Differences between
and this patch

Collapse All | Expand All

(-)b/editors/sly-asdf/Makefile (-3 / +3 lines)
Lines 1-6 Link Here
1
PORTNAME=	sly-asdf
1
PORTNAME=	sly-asdf
2
PORTVERSION=	20210308
2
DISTVERSION=	0.2.0-20221119
3
PORTREVISION=	11
3
PORTEPOCH=	1
4
CATEGORIES=	editors elisp
4
CATEGORIES=	editors elisp
5
PKGNAMESUFFIX=	${EMACS_PKGNAMESUFFIX}
5
PKGNAMESUFFIX=	${EMACS_PKGNAMESUFFIX}
6
6
Lines 17-23 RUN_DEPENDS= ${MY_DEPENDS} Link Here
17
USES=		emacs
17
USES=		emacs
18
USE_GITHUB=	yes
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	mmgeorge
19
GH_ACCOUNT=	mmgeorge
20
GH_TAGNAME=	bcaeba9b73b582ae1c4fadc23c71ee7e38d9a64e
20
GH_TAGNAME=	6f9d751469bb82530db1673c22e7437ca6c95f45
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
23
(-)b/editors/sly-asdf/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1615760525
1
TIMESTAMP = 1685099209
2
SHA256 (mmgeorge-sly-asdf-20210308-bcaeba9b73b582ae1c4fadc23c71ee7e38d9a64e_GH0.tar.gz) = c23141f2c9a0dfff9a6452c7753f2c3d236ef0b36c5b1c967f61b898a3ab4ed7
2
SHA256 (mmgeorge-sly-asdf-0.2.0-20221119-6f9d751469bb82530db1673c22e7437ca6c95f45_GH0.tar.gz) = 4f21b946892296de9b26022e2d7765f01215f983f89d0f4adf8418c34d1b4d6b
3
SIZE (mmgeorge-sly-asdf-20210308-bcaeba9b73b582ae1c4fadc23c71ee7e38d9a64e_GH0.tar.gz) = 42843
3
SIZE (mmgeorge-sly-asdf-0.2.0-20221119-6f9d751469bb82530db1673c22e7437ca6c95f45_GH0.tar.gz) = 42754
(-)a/editors/sly-asdf/files/patch-README.md (-16 lines)
Removed Link Here
1
--- README.md.orig	2021-03-08 03:32:35 UTC
2
+++ README.md
3
@@ -16,9 +16,8 @@ Installing manually will require the contrib be regist
4
 ```
5
 (add-to-list 'sly-contribs 'sly-asdf 'append)
6
 ```
7
+
8
 ## Experimental
9
-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 
10
-```
11
-(setq sly-asdf-enable-experimental-syntax-checking t)
12
-(require 'sly-asdf-flymake)
13
-```
14
+Upstream currently supports a very experimental system-aware checker that
15
+builds on flymake. It is not available in this port (please use some ELPA
16
+package instead).
(-)b/editors/sly-asdf/files/patch-sly-asdf.el (-2 / +2 lines)
Lines 1-6 Link Here
1
--- sly-asdf.el.orig	2021-03-08 03:32:35 UTC
1
--- sly-asdf.el.orig	2023-05-26 11:13:10 UTC
2
+++ sly-asdf.el
2
+++ sly-asdf.el
3
@@ -354,10 +354,5 @@ in the directory of the current buffer."
3
@@ -355,10 +355,5 @@ in the directory of the current buffer."
4
 
4
 
5
 
5
 
6
 
6
 
(-)b/editors/sly-asdf/pkg-message (-5 / +4 lines)
Lines 2-8 Link Here
2
{ type: install
2
{ type: install
3
  message: <<EOM
3
  message: <<EOM
4
To use the sly-asdf contrib, you must:
4
To use the sly-asdf contrib, you must:
5
1. Register sly-asdf into SLY. You just have to add this line to some init
5
1. Register sly-asdf into SLY.  You just have to add this line to some init
6
   file:
6
   file:
7
(require 'sly-asdf)
7
(require 'sly-asdf)
8
   Doing this is not strictly necessary if you want to automatically activate
8
   Doing this is not strictly necessary if you want to automatically activate
Lines 11-19 To use the sly-asdf contrib, you must: Link Here
11
   upstream does.
11
   upstream does.
12
2. Ensure that ASDF is loaded by your Common Lisp implementation.
12
2. Ensure that ASDF is loaded by your Common Lisp implementation.
13
13
14
If you want sly-asdf to be automatically activated on each new SLY
14
If you want sly-asdf to be automatically activated on each new SLY session, put
15
session, put it in the `sly-contribs' list. E.g., you can add something like
15
it in the `sly-contribs' list.  E.g., you can add something like this in some
16
this in some Emacs' init file:
16
Emacs' init file:
17
(setq sly-contribs '(sly-fancy sly-asdf))
17
(setq sly-contribs '(sly-fancy sly-asdf))
18
or customize the variable.
18
or customize the variable.
19
19
20
- 

Return to bug 271654