git: 7c2e7dc09566 - main - sysutils/lsd: Adopt port

From: Yusuf Yaman <nxjoseph_at_FreeBSD.org>
Date: Mon, 07 Sep 2026 19:39:42 UTC
The branch main has been updated by nxjoseph:

URL: https://cgit.FreeBSD.org/ports/commit/?id=7c2e7dc09566412afd6c909caa083a4149eb832f

commit 7c2e7dc09566412afd6c909caa083a4149eb832f
Author:     Park Seongil <zihado@gmail.com>
AuthorDate: 2026-07-18 01:08:29 +0000
Commit:     Yusuf Yaman <nxjoseph@FreeBSD.org>
CommitDate: 2026-09-07 19:39:23 +0000

    sysutils/lsd: Adopt port
    
    While here:
    - Seperate DEPENDS field from USES field (pet portlint).
    - Remove increment from LIB_DEPENDS.
    - Ignore failing tests.
    
    PR:             296864
    Approved by:    osa, vvd (Mentors, implicit)
---
 sysutils/lsd/Makefile | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/sysutils/lsd/Makefile b/sysutils/lsd/Makefile
index 450440329b11..e98c4549c776 100644
--- a/sysutils/lsd/Makefile
+++ b/sysutils/lsd/Makefile
@@ -1,21 +1,26 @@
 PORTNAME=	lsd
 DISTVERSIONPREFIX=	v
 DISTVERSION=	1.2.0
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	sysutils
 
-MAINTAINER=	ports@freebsd.org
+MAINTAINER=	zihado@gmail.com
 COMMENT=	Pretty ls alternative with support for icons
 WWW=		https://github.com/lsd-rs/lsd/
 
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-LIB_DEPENDS+=	libgit2.so:devel/libgit2
+LIB_DEPENDS=	libgit2.so:devel/libgit2
+
 USES=		cargo
 USE_GITHUB=	yes
 GH_ACCOUNT=	lsd-rs
 
 PLIST_FILES=	bin/lsd
 
+CARGO_TEST_AFTER_ARGS=	--skip git::tests::test_git_workflow \
+			--skip meta::permissions::test::permission_octal_sticky \
+			--skip meta::permissions::test::permission_rwx_sticky
+
 .include <bsd.port.mk>