aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2023-08-16 06:43:54 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2023-08-16 06:48:18 +0000
commitdeea9eaccdf8e2f68c652e1b5d85e4422c9965a9 (patch)
tree94f7cdeb365180b7aad0ede123ee062c9dbc5c60
parent6ca9d99d068497ae214acf1d11ecbd9ecdd37a25 (diff)
devel/lets: New port: CLI task runner for developers
-rw-r--r--devel/Makefile1
-rw-r--r--devel/lets/Makefile19
-rw-r--r--devel/lets/distinfo5
-rw-r--r--devel/lets/pkg-descr10
4 files changed, 35 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 1e07a2a709fa..b9e37f2b5dec 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -1131,6 +1131,7 @@
SUBDIR += lefthook
SUBDIR += leiningen
SUBDIR += lemon
+ SUBDIR += lets
SUBDIR += level-zero
SUBDIR += lfcbase
SUBDIR += lfcxml
diff --git a/devel/lets/Makefile b/devel/lets/Makefile
new file mode 100644
index 000000000000..5f0ef2c91753
--- /dev/null
+++ b/devel/lets/Makefile
@@ -0,0 +1,19 @@
+PORTNAME= lets
+DISTVERSIONPREFIX= v
+DISTVERSION= 0.0.53
+CATEGORIES= devel
+
+MAINTAINER= yuri@FreeBSD.org
+COMMENT= CLI task runner for developers
+WWW= https://lets-cli.org/
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USES= go:modules
+
+GO_MODULE= github.com/lets-cli/lets
+
+PLIST_FILES= bin/lets
+
+.include <bsd.port.mk>
diff --git a/devel/lets/distinfo b/devel/lets/distinfo
new file mode 100644
index 000000000000..91db42e3f17d
--- /dev/null
+++ b/devel/lets/distinfo
@@ -0,0 +1,5 @@
+TIMESTAMP = 1692167595
+SHA256 (go/devel_lets/lets-v0.0.53/v0.0.53.mod) = 753fb171cf10bc61a42f91a242f0ae4ac8136f1602cf43d941bfa78107aa9b2a
+SIZE (go/devel_lets/lets-v0.0.53/v0.0.53.mod) = 1107
+SHA256 (go/devel_lets/lets-v0.0.53/v0.0.53.zip) = 2114085873b3e8fa51000adae709f27fcfa664a379722f06220980d670b17608
+SIZE (go/devel_lets/lets-v0.0.53/v0.0.53.zip) = 424429
diff --git a/devel/lets/pkg-descr b/devel/lets/pkg-descr
new file mode 100644
index 000000000000..bd4c794907b2
--- /dev/null
+++ b/devel/lets/pkg-descr
@@ -0,0 +1,10 @@
+Lets is a CLI task runner for developers - a better alternative to make.
+
+Lets was designed for developers. Its simple yet powerful task runner with lots
+of features that just work.
+
+Lets use yaml as a config format which gives a well known, human-readable syntax
+with all yaml features built-in.
+
+You can have a couple of tasks or a hundred of them in your project. Lets allow
+you to focus on coding instead of writing hard-to-reason-about Makefiles.