Commit 5938d218 authored by Rene Ladan's avatar Rene Ladan
Browse files

devel/jsl: Remove expired port

2026-03-31 devel/jsl: No more upstream, use JSLint instead
parent ef186058
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5183,3 +5183,4 @@ lang/cython0|lang/cython|2026-03-31|Has expired
ftp/ftpsesame||2026-03-31|Has expired: dead upstream, broken on FreeBSD 15
devel/loki||2026-03-31|Has expired: dead upstream, sole consumer removed from tree long ago
mail/missey||2026-03-31|Has expired: mail/missey has been abandoned for many years
devel/jsl||2026-03-31|Has expired: No more upstream, use JSLint instead
+0 −1
Original line number Diff line number Diff line
@@ -1094,7 +1094,6 @@
    SUBDIR += jline
    SUBDIR += jna
    SUBDIR += jsap
    SUBDIR += jsl
    SUBDIR += jsmin
    SUBDIR += json-c
    SUBDIR += json-dto

devel/jsl/Makefile

deleted100644 → 0
+0 −35
Original line number Diff line number Diff line
PORTNAME=	jsl
PORTVERSION=	0.3.0
PORTREVISION=	2
CATEGORIES=	devel
MASTER_SITES=	ftp://ftp.Awfulhak.org/pub/jsl/ \
		http://www.javascriptlint.com/download/
EXTRACT_SUFX=	-src.tar.gz

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Analyzes JavaScript code looking for bugs and signs of poor quality
WWW=		https://www.javascriptlint.com/

DEPRECATED=	No more upstream, use JSLint instead
EXPIRATION_DATE=	2026-03-31

PLIST_FILES=	bin/jsl
WRKSRC=		${WRKDIR}/${DISTNAME}/src
USES=		gmake
MAKEFILE=	Makefile.ref
MAKE_ARGS=	OS_CFLAGS="-DXP_UNIX -DHAVE_VA_COPY -DVA_COPY=va_copy"
CFLAGS+=	-fPIC
MAKE_JOBS_UNSAFE=	yes
LLD_UNSAFE=	yes

.include <bsd.port.pre.mk>

JSLCFG_CMD=	${UNAME} -sr | ${SED} 's, ,,'

post-patch:
	${GREP} -v 'CC =' ${WRKSRC}/config/Linux_All.mk > ${WRKSRC}/config/$$(${JSLCFG_CMD}).mk

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/$$(${JSLCFG_CMD})_DBG.OBJ/jsl ${STAGEDIR}${PREFIX}/bin/jsl

.include <bsd.port.post.mk>

devel/jsl/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (jsl-0.3.0-src.tar.gz) = 86f16792d71fc59b96f65eca65b1b7466dc046efe6d5ac04c6632f1315e83cfa
SIZE (jsl-0.3.0-src.tar.gz) = 924756

devel/jsl/pkg-descr

deleted100644 → 0
+0 −15
Original line number Diff line number Diff line
Many JavaScript implementations do not warn against questionable coding
practices. Yes, that's nice for the site that "works best with Internet
Explorer" (designed with templates, scripted with snippets copied from
forums). But it's a nightmare when you actually want to write quality,
maintainable code.

That's where JavaScript Lint comes in. With JavaScript Lint, you can
check all your JavaScript source code for common mistakes without actually
running the script or opening the web page.

JavaScript Lint holds an advantage over competing lints because it is
based on the JavaScript engine for the Firefox browser. This provides
a robust framework that can not only check JavaScript syntax but also
examine the coding techniques used in the script and warn against
questionable practices.