View | Details | Raw Unified | Return to bug 276340
Collapse All | Expand All

(-)b/devel/Makefile (+2 lines)
Lines 7604-7609 Link Here
7604
    SUBDIR += rust-analyzer
7604
    SUBDIR += rust-analyzer
7605
    SUBDIR += rust-bindgen-cli
7605
    SUBDIR += rust-bindgen-cli
7606
    SUBDIR += rust-cbindgen
7606
    SUBDIR += rust-cbindgen
7607
    SUBDIR += rust-mode
7608
    SUBDIR += rust-script
7607
    SUBDIR += rustc-demangle
7609
    SUBDIR += rustc-demangle
7608
    SUBDIR += rvi
7610
    SUBDIR += rvi
7609
    SUBDIR += rvm
7611
    SUBDIR += rvm
(-)b/devel/rust-mode/Makefile (+27 lines)
Added Link Here
1
PORTNAME=	rust-mode
2
PORTVERSION=	20230805.1558
3
CATEGORIES=	devel
4
5
MAINTAINER=	pat@patmaddox.com
6
COMMENT=	Emacs major-mode for editing Rust source code
7
WWW=		https://github.com/rust-lang/
8
9
LICENSE=	APACHE20
10
11
USES=			emacs
12
EMACS_NO_DEPENDS=	yes
13
14
USE_GITHUB=	yes
15
GH_ACCOUNT=	rust-lang
16
GH_PROJECT=	rust-mode
17
GH_TAGNAME=	fac7d28
18
19
NO_ARCH=	yes
20
NO_BUILD=	yes
21
22
do-install:
23
	@${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}
24
	${INSTALL_DATA} ${WRKSRC}/*.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}
25
	@${RM} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/rust-mode-tests.el
26
27
.include <bsd.port.mk>
(-)b/devel/rust-mode/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1705275324
2
SHA256 (rust-lang-rust-mode-20230805.1558-fac7d28_GH0.tar.gz) = bb100bea0792102d626b0f682df5dfdba2ce5be1b8e46595ef3161f0c74cd433
3
SIZE (rust-lang-rust-mode-20230805.1558-fac7d28_GH0.tar.gz) = 53065
(-)b/devel/rust-mode/pkg-descr (+17 lines)
Added Link Here
1
rust-mode makes editing Rust code with Emacs enjoyable. It requires
2
Emacs 25 or later, and is included in both Emacs Prelude and Spacemacs
3
by default.
4
5
This mode provides:
6
- Syntax highlighting (for Font Lock Mode)
7
- Indentation
8
- Integration with Cargo, clippy and rustfmt
9
10
This mode does not provide auto completion, or jumping to function /
11
trait definitions. See Auto-completion below for tips on how to enable
12
this.
13
14
If you are missing features in rust-mode, please check out rustic
15
before you open a feature request. It depends on rust-mode and
16
provides additional features. This allows us to keep rust-mode
17
light-weight for users that are happy with basic functionality.
(-)b/devel/rust-mode/pkg-plist (-1 / +6 lines)
Added Link Here
0
- 
1
%%EMACS_SITE_LISPDIR%%/rust-cargo.el
2
%%EMACS_SITE_LISPDIR%%/rust-compile.el
3
%%EMACS_SITE_LISPDIR%%/rust-mode.el
4
%%EMACS_SITE_LISPDIR%%/rust-playpen.el
5
%%EMACS_SITE_LISPDIR%%/rust-rustfmt.el
6
%%EMACS_SITE_LISPDIR%%/rust-utils.el

Return to bug 276340