Date: Fri, 20 Dec 2024 02:47:46 GMT From: Joseph Mingrone <jrm@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 6be2aff14359 - main - Common Lisp ports: Add missing license information Message-ID: <202412200247.4BK2lkJ4066892@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jrm: URL: https://cgit.FreeBSD.org/ports/commit/?id=6be2aff14359f47234e3a4b1e89baf3297e1d28c commit 6be2aff14359f47234e3a4b1e89baf3297e1d28c Author: Joseph Mingrone <jrm@FreeBSD.org> AuthorDate: 2024-12-15 17:23:11 +0000 Commit: Joseph Mingrone <jrm@FreeBSD.org> CommitDate: 2024-12-20 02:31:49 +0000 Common Lisp ports: Add missing license information Approved by: olgeni (maintainer, implicit) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D48090 --- converters/cl-babel-sbcl/Makefile | 2 ++ converters/cl-babel/Makefile | 2 ++ devel/cl-split-sequence-sbcl/Makefile | 2 ++ devel/cl-split-sequence/Makefile | 2 ++ devel/cl-trivial-features-sbcl/Makefile | 2 ++ devel/cl-trivial-features/Makefile | 2 ++ devel/cl-trivial-gray-streams-sbcl/Makefile | 2 ++ devel/cl-trivial-gray-streams/Makefile | 2 ++ security/cl-md5-sbcl/Makefile | 2 ++ security/cl-md5/Makefile | 2 ++ textproc/cl-ppcre-sbcl/Makefile | 2 ++ www/cl-lml-sbcl/Makefile | 2 ++ www/cl-lml/Makefile | 2 ++ 13 files changed, 26 insertions(+) diff --git a/converters/cl-babel-sbcl/Makefile b/converters/cl-babel-sbcl/Makefile index 1857ce17c354..7a05548188a0 100644 --- a/converters/cl-babel-sbcl/Makefile +++ b/converters/cl-babel-sbcl/Makefile @@ -9,6 +9,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Charset encoding/decoding library written in Common Lisp WWW= https://www.cliki.net/Babel +LICENSE= MIT + BUILD_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/babel/babel.asd:converters/cl-babel \ ${LOCALBASE}/${CL_LIBDIR_REL}/alexandria/sbclfasl/alexandria-1/arrays.fasl:devel/cl-alexandria-sbcl \ ${LOCALBASE}/${CL_LIBDIR_REL}/trivial-features/sbclfasl/src/tf-sbcl.fasl:devel/cl-trivial-features-sbcl \ diff --git a/converters/cl-babel/Makefile b/converters/cl-babel/Makefile index 0d486d68e668..55bd0ad92570 100644 --- a/converters/cl-babel/Makefile +++ b/converters/cl-babel/Makefile @@ -9,6 +9,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Charset encoding/decoding library written in Common Lisp WWW= https://www.cliki.net/Babel +LICENSE= MIT + BUILD_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/alexandria/alexandria.asd:devel/cl-alexandria \ ${LOCALBASE}/${CL_LIBDIR_REL}/trivial-features/trivial-features.asd:devel/cl-trivial-features \ ${LOCALBASE}/${CL_LIBDIR_REL}/trivial-gray-streams/trivial-gray-streams.asd:devel/cl-trivial-gray-streams diff --git a/devel/cl-split-sequence-sbcl/Makefile b/devel/cl-split-sequence-sbcl/Makefile index cc8cfbd10862..a378c7d28e21 100644 --- a/devel/cl-split-sequence-sbcl/Makefile +++ b/devel/cl-split-sequence-sbcl/Makefile @@ -9,6 +9,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Partitioning Common Lisp sequences WWW= https://www.cliki.net/SPLIT-SEQUENCE +LICENSE= PD + BUILD_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/split-sequence/split-sequence.asd:devel/cl-split-sequence RUN_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/split-sequence/split-sequence.asd:devel/cl-split-sequence diff --git a/devel/cl-split-sequence/Makefile b/devel/cl-split-sequence/Makefile index f603462604fe..1f82a758f35c 100644 --- a/devel/cl-split-sequence/Makefile +++ b/devel/cl-split-sequence/Makefile @@ -12,6 +12,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Partitioning Common Lisp sequences WWW= https://www.cliki.net/SPLIT-SEQUENCE +LICENSE= PD + WRKSRC= ${WRKDIR}/${PORTNAME} NO_BUILD= yes diff --git a/devel/cl-trivial-features-sbcl/Makefile b/devel/cl-trivial-features-sbcl/Makefile index 493bfaf78c25..4157f5e15be0 100644 --- a/devel/cl-trivial-features-sbcl/Makefile +++ b/devel/cl-trivial-features-sbcl/Makefile @@ -9,6 +9,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Ensures consistent *FEATURES* in Common Lisp WWW= https://www.cliki.net/trivial-features +LICENSE= MIT + BUILD_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/trivial-features/trivial-features.asd:devel/cl-trivial-features RUN_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/trivial-features/trivial-features.asd:devel/cl-trivial-features diff --git a/devel/cl-trivial-features/Makefile b/devel/cl-trivial-features/Makefile index 69726864232e..4834373fabe3 100644 --- a/devel/cl-trivial-features/Makefile +++ b/devel/cl-trivial-features/Makefile @@ -9,6 +9,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Ensures consistent *FEATURES* in Common Lisp WWW= https://www.cliki.net/trivial-features +LICENSE= MIT + NO_BUILD= yes USES= cl diff --git a/devel/cl-trivial-gray-streams-sbcl/Makefile b/devel/cl-trivial-gray-streams-sbcl/Makefile index 69c6f765fda6..1d4a472cbce5 100644 --- a/devel/cl-trivial-gray-streams-sbcl/Makefile +++ b/devel/cl-trivial-gray-streams-sbcl/Makefile @@ -9,6 +9,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Thin compatibility layer for Gray streams WWW= https://www.cliki.net/trivial-gray-streams +LICENSE= MIT + BUILD_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/trivial-gray-streams/trivial-gray-streams.asd:devel/cl-trivial-gray-streams RUN_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/trivial-gray-streams/trivial-gray-streams.asd:devel/cl-trivial-gray-streams diff --git a/devel/cl-trivial-gray-streams/Makefile b/devel/cl-trivial-gray-streams/Makefile index 51e4f640fe3c..6e096b381be3 100644 --- a/devel/cl-trivial-gray-streams/Makefile +++ b/devel/cl-trivial-gray-streams/Makefile @@ -9,6 +9,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Thin compatibility layer for Gray streams WWW= https://www.cliki.net/trivial-gray-streams +LICENSE= MIT + NO_BUILD= yes USES= cl diff --git a/security/cl-md5-sbcl/Makefile b/security/cl-md5-sbcl/Makefile index e59b77872cdb..49ef2bb69fd2 100644 --- a/security/cl-md5-sbcl/Makefile +++ b/security/cl-md5-sbcl/Makefile @@ -9,6 +9,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Native MD5 implementation in Common Lisp WWW= https://www.cliki.net/MD5 +LICENSE= PD + BUILD_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/md5/md5.asd:security/cl-md5 RUN_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/md5/md5.asd:security/cl-md5 diff --git a/security/cl-md5/Makefile b/security/cl-md5/Makefile index a1bf9c5d91a8..0d47e49a4b20 100644 --- a/security/cl-md5/Makefile +++ b/security/cl-md5/Makefile @@ -10,6 +10,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Native MD5 implementation in Common Lisp WWW= https://www.cliki.net/MD5 +LICENSE= PD + WRKSRC= ${WRKDIR}/${PKGNAMEPREFIX}${PORTNAME}-${DISTVERSION} NO_BUILD= yes diff --git a/textproc/cl-ppcre-sbcl/Makefile b/textproc/cl-ppcre-sbcl/Makefile index 3a5b1b812da5..4b92584c228f 100644 --- a/textproc/cl-ppcre-sbcl/Makefile +++ b/textproc/cl-ppcre-sbcl/Makefile @@ -8,6 +8,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Portable Perl-Compatible Regular Expression for Common Lisp WWW= http://www.weitz.de/cl-ppcre/ +LICENSE= BSD2CLAUSE + BUILD_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/cl-ppcre/cl-ppcre.asd:textproc/cl-ppcre RUN_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/cl-ppcre/cl-ppcre.asd:textproc/cl-ppcre diff --git a/www/cl-lml-sbcl/Makefile b/www/cl-lml-sbcl/Makefile index d311eab0cf02..43edc2f2bd6a 100644 --- a/www/cl-lml-sbcl/Makefile +++ b/www/cl-lml-sbcl/Makefile @@ -9,6 +9,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Lisp Markup Language WWW= http://lml.b9.com/ +LICENSE= GPLv2 + BUILD_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/system-registry/lml.asd:www/cl-lml RUN_DEPENDS= ${LOCALBASE}/${CL_LIBDIR_REL}/system-registry/lml.asd:www/cl-lml diff --git a/www/cl-lml/Makefile b/www/cl-lml/Makefile index 1b762cf015ea..12e9f5b73f79 100644 --- a/www/cl-lml/Makefile +++ b/www/cl-lml/Makefile @@ -10,6 +10,8 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Lisp Markup Language WWW= http://lml.b9.com/ +LICENSE= GPLv2 + NO_BUILD= yes USES= cl
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202412200247.4BK2lkJ4066892>