pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

joker: fixed some pkglit warnings



Module Name:	pkgsrc-wip
Committed By:	Kevin Bloom <kevin.bloom%posteo.net@localhost>
Pushed By:	nuclearkev
Date:		Wed Aug 30 22:02:39 2023 -0400
Changeset:	d75df57ce647c7f9327d7a3ed87652f829107270

Modified Files:
	joker/DESCR
	joker/Makefile

Log Message:
joker: fixed some pkglit warnings

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=d75df57ce647c7f9327d7a3ed87652f829107270

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 joker/DESCR    | 18 ++++++++----------
 joker/Makefile |  2 +-
 2 files changed, 9 insertions(+), 11 deletions(-)

diffs:
diff --git a/joker/DESCR b/joker/DESCR
index 92f640db0d..9a7e20a83e 100644
--- a/joker/DESCR
+++ b/joker/DESCR
@@ -9,17 +9,15 @@ Project goals:
 - Provide some tooling for Clojure and its dialects. Joker has linter mode which
   can be used for linting Joker, Clojure and ClojureScript code. It catches some
   basic errors. Joker can also format (pretty print) Clojure code (see format
-  mode) or EDN data structures. For example, the following command can be used to
-  pretty print EDN data structure (read from stdin):
+  mode) or EDN data structures. For example, the following command can be used
+  to pretty print EDN data structure (read from stdin):
 
 Project Non-goals:
-- Performance. If you need it, use Clojure. Joker is a naive implementation of an
-  interpreter that evaluates unoptimized AST directly. I may be interested in
-  doing some basic optimizations but this is definitely not a priority.
+- Performance. If you need it, use Clojure. Joker is a naive implementation of
+  an interpreter that evaluates unoptimized AST directly. I may be interested
+  in doing some basic optimizations but this is definitely not a priority.
 - Have all Clojure features. Some features are impossible to implement due to a
   different host language (Go vs Java), others I don't find that important for
-  the use cases I have in mind for Joker. But generally Clojure is a pretty large
-  language at this point and it is simply unfeasible to reach feature parity with
-  it, even with naive implementation.
-
-
+  the use cases I have in mind for Joker. But generally Clojure is a pretty
+  large language at this point and it is simply unfeasible to reach feature
+  parity with it, even with naive implementation.
diff --git a/joker/Makefile b/joker/Makefile
index 4dd9eb7ca8..f7e3a57ef6 100644
--- a/joker/Makefile
+++ b/joker/Makefile
@@ -8,7 +8,7 @@ GITHUB_TAG=		v${PKGVERSION_NOREV}
 
 MAINTAINER=		kevin.bloom%posteo.net@localhost
 HOMEPAGE=		https://joker-lang.org/
-COMMENT=		A small dialect of Clojure and Clojure(Script) linter.
+COMMENT=		Small dialect of Clojure and Clojure(Script) linter
 LICENSE=		epl-v1.0
 
 INSTALLATION_DIRS+=	bin


Home | Main Index | Thread Index | Old Index