Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: cljstyle-0.16.626
@ 2024-08-22 22:26 atweiden
  2024-08-23  7:13 ` [PR REVIEW] " Eloitor
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: atweiden @ 2024-08-22 22:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 751 bytes --]

There is a new pull request by atweiden against master on the void-packages repository

https://github.com/atweiden/void-packages cljstyle
https://github.com/void-linux/void-packages/pull/51948

New package: cljstyle-0.16.626
[cljstyle](https://github.com/greglook/cljstyle):  A tool for formatting Clojure code

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**


#### Local build testing
- I built this PR locally for my native architecture, x86_64

A patch file from https://github.com/void-linux/void-packages/pull/51948.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cljstyle-51948.patch --]
[-- Type: text/x-diff, Size: 3755 bytes --]

From 3eef7b7b52425c8497338f9085034fd334437e38 Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <atweiden@ioiojo.com>
Date: Thu, 22 Aug 2024 20:57:59 +0000
Subject: [PATCH] New package: cljstyle-0.16.626

---
 ...1-hard-code-version-map-to-avoid-git.patch | 27 ++++++++
 srcpkgs/cljstyle/template                     | 62 +++++++++++++++++++
 2 files changed, 89 insertions(+)
 create mode 100644 srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch
 create mode 100644 srcpkgs/cljstyle/template

diff --git a/srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch b/srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch
new file mode 100644
index 00000000000000..d6aeef8487b139
--- /dev/null
+++ b/srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch
@@ -0,0 +1,27 @@
+From 09d899d94fd0eb45004f1e589984fb3f320be8eb Mon Sep 17 00:00:00 2001
+From: Andy Weidenbaum <atweiden@ioiojo.com>
+Date: Thu, 22 Aug 2024 21:29:40 +0000
+Subject: [PATCH] hard code version map to avoid git
+
+---
+ build.clj | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/build.clj b/build.clj
+index f021cfc..c0c8a3f 100644
+--- a/build.clj
++++ b/build.clj
+@@ -263,7 +263,9 @@
+ (defn uberjar
+   "Compile the Clojure source files and package all dependencies into an uberjar."
+   [opts]
+-  (let [version (version-info opts)
++  (let [version {:tag "0.16.626"
++                 :commit "58f88f28d28d8692a2a89e0ff297b5552759c1c5"
++                 :date "2024-08-22T21:26:10"}
+         uber-file (io/file (:uber-file opts "target/cljstyle.jar"))
+         basis (:basis opts project-basis)]
+     (when (or (not (.exists uber-file))
+-- 
+2.46.0
+
diff --git a/srcpkgs/cljstyle/template b/srcpkgs/cljstyle/template
new file mode 100644
index 00000000000000..05aae2204f30d9
--- /dev/null
+++ b/srcpkgs/cljstyle/template
@@ -0,0 +1,62 @@
+# Template file for 'cljstyle'
+pkgname=cljstyle
+version=0.16.626
+revision=1
+hostmakedepends="clojure mandrel"
+makedepends="zlib-devel"
+short_desc="Tool for formatting Clojure code"
+maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
+license="EPL-1.0"
+homepage="https://github.com/greglook/cljstyle"
+changelog="https://github.com/greglook/cljstyle/raw/main/CHANGELOG.md"
+distfiles="https://github.com/greglook/cljstyle/archive/${version}.tar.gz"
+checksum=5b62022e0875b8726d9998f3d0950fbe603bd05b63817b09273c7e1bdde76116
+nocross="mandrel"
+
+do_build() {
+	local _args
+
+	export JAVA_HOME=/usr/lib/jvm/mandrel21
+	export GRAALVM_HOME=/usr/lib/jvm/mandrel21
+	export PATH="${PATH}:${GRAALVM_HOME}/bin"
+
+	clojure -T:build fetch-deps
+	clojure -T:build graal-uberjar
+
+	export GRAAL_STATIC=true
+	_args+=" --static"
+	# necessary for compatibility with older machines, e.g. see:
+	# https://github.com/borkdude/deps.clj/actions/runs/6337277754/job/17212028399
+	_args+=" -march=compatibility"
+	_args+=" -O1"
+
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		_args+=" --libc=musl"
+		# see: https://github.com/oracle/graal/issues/3398
+		_args+=" -H:CCompilerOption=-Wl,-z,stack-size=2097152"
+	else
+		# see: https://github.com/oracle/graal/issues/3737
+		_args+=" -H:+StaticExecutableWithDynamicLibC"
+	fi
+
+	LC_ALL=C.UTF-8 \
+		${GRAALVM_HOME}/bin/native-image \
+		-J-Xss$(ulimit -s)K \
+		-J-Xmx3G \
+		-J-Xms2G \
+		-jar target/graal/uber.jar \
+		-o target/graal/cljstyle \
+		$_args \
+		-H:+UnlockExperimentalVMOptions \
+		-H:IncludeResources=^META-INF/MANIFEST.MF$ \
+		-H:+ReportExceptionStackTraces \
+		--features=clj_easy.graal_build_time.InitClojureClasses \
+		--report-unsupported-elements-at-runtime \
+		--enable-preview \
+		--no-fallback
+}
+
+do_install() {
+	vbin target/graal/cljstyle
+	vlicense LICENSE.txt
+}

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR REVIEW] New package: cljstyle-0.16.626
  2024-08-22 22:26 [PR PATCH] New package: cljstyle-0.16.626 atweiden
@ 2024-08-23  7:13 ` Eloitor
  2024-08-23 20:28 ` [PR PATCH] [Updated] " atweiden
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Eloitor @ 2024-08-23  7:13 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 283 bytes --]

New review comment by Eloitor on void-packages repository

https://github.com/void-linux/void-packages/pull/51948#discussion_r1728487974

Comment:
Why not "Clojure code formatter"?
In this way it is easy to search formatters: https://voidlinux.org/packages/?arch=x86_64&q=formatter

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Updated] New package: cljstyle-0.16.626
  2024-08-22 22:26 [PR PATCH] New package: cljstyle-0.16.626 atweiden
  2024-08-23  7:13 ` [PR REVIEW] " Eloitor
@ 2024-08-23 20:28 ` atweiden
  2024-08-23 20:35 ` atweiden
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: atweiden @ 2024-08-23 20:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 756 bytes --]

There is an updated pull request by atweiden against master on the void-packages repository

https://github.com/atweiden/void-packages cljstyle
https://github.com/void-linux/void-packages/pull/51948

New package: cljstyle-0.16.626
[cljstyle](https://github.com/greglook/cljstyle):  A tool for formatting Clojure code

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**


#### Local build testing
- I built this PR locally for my native architecture, x86_64

A patch file from https://github.com/void-linux/void-packages/pull/51948.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cljstyle-51948.patch --]
[-- Type: text/x-diff, Size: 3793 bytes --]

From d755e61954901378771eecfcf5080c00948e74b4 Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <atweiden@ioiojo.com>
Date: Thu, 22 Aug 2024 20:57:59 +0000
Subject: [PATCH] New package: cljstyle-0.16.626

---
 ...1-hard-code-version-map-to-avoid-git.patch | 27 ++++++++
 srcpkgs/cljstyle/template                     | 66 +++++++++++++++++++
 2 files changed, 93 insertions(+)
 create mode 100644 srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch
 create mode 100644 srcpkgs/cljstyle/template

diff --git a/srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch b/srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch
new file mode 100644
index 00000000000000..d6aeef8487b139
--- /dev/null
+++ b/srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch
@@ -0,0 +1,27 @@
+From 09d899d94fd0eb45004f1e589984fb3f320be8eb Mon Sep 17 00:00:00 2001
+From: Andy Weidenbaum <atweiden@ioiojo.com>
+Date: Thu, 22 Aug 2024 21:29:40 +0000
+Subject: [PATCH] hard code version map to avoid git
+
+---
+ build.clj | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/build.clj b/build.clj
+index f021cfc..c0c8a3f 100644
+--- a/build.clj
++++ b/build.clj
+@@ -263,7 +263,9 @@
+ (defn uberjar
+   "Compile the Clojure source files and package all dependencies into an uberjar."
+   [opts]
+-  (let [version (version-info opts)
++  (let [version {:tag "0.16.626"
++                 :commit "58f88f28d28d8692a2a89e0ff297b5552759c1c5"
++                 :date "2024-08-22T21:26:10"}
+         uber-file (io/file (:uber-file opts "target/cljstyle.jar"))
+         basis (:basis opts project-basis)]
+     (when (or (not (.exists uber-file))
+-- 
+2.46.0
+
diff --git a/srcpkgs/cljstyle/template b/srcpkgs/cljstyle/template
new file mode 100644
index 00000000000000..f3148030a0a3b7
--- /dev/null
+++ b/srcpkgs/cljstyle/template
@@ -0,0 +1,66 @@
+# Template file for 'cljstyle'
+pkgname=cljstyle
+version=0.16.626
+revision=1
+hostmakedepends="clojure mandrel"
+makedepends="zlib-devel"
+short_desc="Tool for formatting Clojure code"
+maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
+license="EPL-1.0"
+homepage="https://github.com/greglook/cljstyle"
+changelog="https://github.com/greglook/cljstyle/raw/main/CHANGELOG.md"
+distfiles="https://github.com/greglook/cljstyle/archive/${version}.tar.gz"
+checksum=5b62022e0875b8726d9998f3d0950fbe603bd05b63817b09273c7e1bdde76116
+nocross="mandrel"
+
+do_build() {
+	local _args
+
+	export JAVA_HOME=/usr/lib/jvm/mandrel21
+	export GRAALVM_HOME=/usr/lib/jvm/mandrel21
+	export PATH="${PATH}:${GRAALVM_HOME}/bin"
+
+	clojure -T:build fetch-deps
+	clojure -T:build graal-uberjar
+
+	export GRAAL_STATIC=true
+	_args+=" --static"
+	# necessary for compatibility with older machines, e.g. see:
+	# https://github.com/borkdude/deps.clj/actions/runs/6337277754/job/17212028399
+	_args+=" -march=compatibility"
+	_args+=" -O1"
+
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		_args+=" --libc=musl"
+		# see: https://github.com/oracle/graal/issues/3398
+		_args+=" -H:CCompilerOption=-Wl,-z,stack-size=2097152"
+	else
+		# see: https://github.com/oracle/graal/issues/3737
+		_args+=" -H:+StaticExecutableWithDynamicLibC"
+	fi
+
+	LC_ALL=C.UTF-8 \
+		${GRAALVM_HOME}/bin/native-image \
+		-J-Xss$(ulimit -s)K \
+		-J-Xmx3G \
+		-J-Xms2G \
+		-jar target/graal/uber.jar \
+		-o target/graal/cljstyle \
+		$_args \
+		-H:+UnlockExperimentalVMOptions \
+		-H:IncludeResources=^META-INF/MANIFEST.MF$ \
+		-H:+ReportExceptionStackTraces \
+		--features=clj_easy.graal_build_time.InitClojureClasses \
+		--report-unsupported-elements-at-runtime \
+		--enable-preview \
+		--no-fallback
+}
+
+do_check() {
+	clojure -M:check
+}
+
+do_install() {
+	vbin target/graal/cljstyle
+	vlicense LICENSE.txt
+}

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Updated] New package: cljstyle-0.16.626
  2024-08-22 22:26 [PR PATCH] New package: cljstyle-0.16.626 atweiden
  2024-08-23  7:13 ` [PR REVIEW] " Eloitor
  2024-08-23 20:28 ` [PR PATCH] [Updated] " atweiden
@ 2024-08-23 20:35 ` atweiden
  2024-08-23 20:42 ` [PR REVIEW] " atweiden
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: atweiden @ 2024-08-23 20:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 756 bytes --]

There is an updated pull request by atweiden against master on the void-packages repository

https://github.com/atweiden/void-packages cljstyle
https://github.com/void-linux/void-packages/pull/51948

New package: cljstyle-0.16.626
[cljstyle](https://github.com/greglook/cljstyle):  A tool for formatting Clojure code

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**


#### Local build testing
- I built this PR locally for my native architecture, x86_64

A patch file from https://github.com/void-linux/void-packages/pull/51948.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cljstyle-51948.patch --]
[-- Type: text/x-diff, Size: 3790 bytes --]

From 46b8bed5a72a3aa3a1107f5c9bc2ed7fd9d0d2ce Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <atweiden@ioiojo.com>
Date: Thu, 22 Aug 2024 20:57:59 +0000
Subject: [PATCH] New package: cljstyle-0.16.626

---
 ...1-hard-code-version-map-to-avoid-git.patch | 27 ++++++++
 srcpkgs/cljstyle/template                     | 66 +++++++++++++++++++
 2 files changed, 93 insertions(+)
 create mode 100644 srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch
 create mode 100644 srcpkgs/cljstyle/template

diff --git a/srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch b/srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch
new file mode 100644
index 00000000000000..d6aeef8487b139
--- /dev/null
+++ b/srcpkgs/cljstyle/patches/0001-hard-code-version-map-to-avoid-git.patch
@@ -0,0 +1,27 @@
+From 09d899d94fd0eb45004f1e589984fb3f320be8eb Mon Sep 17 00:00:00 2001
+From: Andy Weidenbaum <atweiden@ioiojo.com>
+Date: Thu, 22 Aug 2024 21:29:40 +0000
+Subject: [PATCH] hard code version map to avoid git
+
+---
+ build.clj | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/build.clj b/build.clj
+index f021cfc..c0c8a3f 100644
+--- a/build.clj
++++ b/build.clj
+@@ -263,7 +263,9 @@
+ (defn uberjar
+   "Compile the Clojure source files and package all dependencies into an uberjar."
+   [opts]
+-  (let [version (version-info opts)
++  (let [version {:tag "0.16.626"
++                 :commit "58f88f28d28d8692a2a89e0ff297b5552759c1c5"
++                 :date "2024-08-22T21:26:10"}
+         uber-file (io/file (:uber-file opts "target/cljstyle.jar"))
+         basis (:basis opts project-basis)]
+     (when (or (not (.exists uber-file))
+-- 
+2.46.0
+
diff --git a/srcpkgs/cljstyle/template b/srcpkgs/cljstyle/template
new file mode 100644
index 00000000000000..d7151aadf7e519
--- /dev/null
+++ b/srcpkgs/cljstyle/template
@@ -0,0 +1,66 @@
+# Template file for 'cljstyle'
+pkgname=cljstyle
+version=0.16.626
+revision=1
+hostmakedepends="clojure mandrel"
+makedepends="zlib-devel"
+short_desc="Tool for formatting Clojure code"
+maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
+license="EPL-1.0"
+homepage="https://github.com/greglook/cljstyle"
+changelog="https://github.com/greglook/cljstyle/raw/main/CHANGELOG.md"
+distfiles="https://github.com/greglook/cljstyle/archive/${version}.tar.gz"
+checksum=5b62022e0875b8726d9998f3d0950fbe603bd05b63817b09273c7e1bdde76116
+nocross="mandrel"
+
+export JAVA_HOME=/usr/lib/jvm/mandrel21
+export GRAALVM_HOME=/usr/lib/jvm/mandrel21
+export PATH="${PATH}:${GRAALVM_HOME}/bin"
+
+do_build() {
+	local _args
+
+	clojure -T:build fetch-deps
+	clojure -T:build graal-uberjar
+
+	export GRAAL_STATIC=true
+	_args+=" --static"
+	# necessary for compatibility with older machines, e.g. see:
+	# https://github.com/borkdude/deps.clj/actions/runs/6337277754/job/17212028399
+	_args+=" -march=compatibility"
+	_args+=" -O1"
+
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		_args+=" --libc=musl"
+		# see: https://github.com/oracle/graal/issues/3398
+		_args+=" -H:CCompilerOption=-Wl,-z,stack-size=2097152"
+	else
+		# see: https://github.com/oracle/graal/issues/3737
+		_args+=" -H:+StaticExecutableWithDynamicLibC"
+	fi
+
+	LC_ALL=C.UTF-8 \
+		${GRAALVM_HOME}/bin/native-image \
+		-J-Xss$(ulimit -s)K \
+		-J-Xmx3G \
+		-J-Xms2G \
+		-jar target/graal/uber.jar \
+		-o target/graal/cljstyle \
+		$_args \
+		-H:+UnlockExperimentalVMOptions \
+		-H:IncludeResources=^META-INF/MANIFEST.MF$ \
+		-H:+ReportExceptionStackTraces \
+		--features=clj_easy.graal_build_time.InitClojureClasses \
+		--report-unsupported-elements-at-runtime \
+		--enable-preview \
+		--no-fallback
+}
+
+do_check() {
+	clojure -M:check
+}
+
+do_install() {
+	vbin target/graal/cljstyle
+	vlicense LICENSE.txt
+}

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR REVIEW] New package: cljstyle-0.16.626
  2024-08-22 22:26 [PR PATCH] New package: cljstyle-0.16.626 atweiden
                   ` (2 preceding siblings ...)
  2024-08-23 20:35 ` atweiden
@ 2024-08-23 20:42 ` atweiden
  2024-11-22  2:03 ` github-actions
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: atweiden @ 2024-08-23 20:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 307 bytes --]

New review comment by atweiden on void-packages repository

https://github.com/void-linux/void-packages/pull/51948#discussion_r1729494946

Comment:
I’m not opposed to that change. But is there not a repo-wide rule which stipulates template `short_desc` fields have to be direct from the upstream project?

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: cljstyle-0.16.626
  2024-08-22 22:26 [PR PATCH] New package: cljstyle-0.16.626 atweiden
                   ` (3 preceding siblings ...)
  2024-08-23 20:42 ` [PR REVIEW] " atweiden
@ 2024-11-22  2:03 ` github-actions
  2024-11-26 13:39 ` atweiden
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: github-actions @ 2024-11-22  2:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/51948#issuecomment-2492720884

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: cljstyle-0.16.626
  2024-08-22 22:26 [PR PATCH] New package: cljstyle-0.16.626 atweiden
                   ` (4 preceding siblings ...)
  2024-11-22  2:03 ` github-actions
@ 2024-11-26 13:39 ` atweiden
  2025-02-26  2:01 ` github-actions
  2025-03-12  2:02 ` [PR PATCH] [Closed]: " github-actions
  7 siblings, 0 replies; 9+ messages in thread
From: atweiden @ 2024-11-26 13:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 147 bytes --]

New comment by atweiden on void-packages repository

https://github.com/void-linux/void-packages/pull/51948#issuecomment-2500830944

Comment:
bump

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: cljstyle-0.16.626
  2024-08-22 22:26 [PR PATCH] New package: cljstyle-0.16.626 atweiden
                   ` (5 preceding siblings ...)
  2024-11-26 13:39 ` atweiden
@ 2025-02-26  2:01 ` github-actions
  2025-03-12  2:02 ` [PR PATCH] [Closed]: " github-actions
  7 siblings, 0 replies; 9+ messages in thread
From: github-actions @ 2025-02-26  2:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/51948#issuecomment-2683702815

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Closed]: New package: cljstyle-0.16.626
  2024-08-22 22:26 [PR PATCH] New package: cljstyle-0.16.626 atweiden
                   ` (6 preceding siblings ...)
  2025-02-26  2:01 ` github-actions
@ 2025-03-12  2:02 ` github-actions
  7 siblings, 0 replies; 9+ messages in thread
From: github-actions @ 2025-03-12  2:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 597 bytes --]

There's a closed pull request on the void-packages repository

New package: cljstyle-0.16.626
https://github.com/void-linux/void-packages/pull/51948

Description:
[cljstyle](https://github.com/greglook/cljstyle):  A tool for formatting Clojure code

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**


#### Local build testing
- I built this PR locally for my native architecture, x86_64

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2025-03-12  2:02 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-22 22:26 [PR PATCH] New package: cljstyle-0.16.626 atweiden
2024-08-23  7:13 ` [PR REVIEW] " Eloitor
2024-08-23 20:28 ` [PR PATCH] [Updated] " atweiden
2024-08-23 20:35 ` atweiden
2024-08-23 20:42 ` [PR REVIEW] " atweiden
2024-11-22  2:03 ` github-actions
2024-11-26 13:39 ` atweiden
2025-02-26  2:01 ` github-actions
2025-03-12  2:02 ` [PR PATCH] [Closed]: " github-actions

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).