Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: zprint-1.2.9
@ 2024-08-10 20:12 atweiden
  2024-08-10 20:23 ` [PR PATCH] [Updated] " atweiden
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: atweiden @ 2024-08-10 20:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/atweiden/void-packages zprint
https://github.com/void-linux/void-packages/pull/51771

New package: zprint-1.2.9
> [zprint](https://github.com/kkinnear/zprint) is a library and command line tool providing a variety of pretty printing capabilities for both Clojure code and Clojure/EDN structures. It can meet almost anyone's needs. As such, it supports a number of major source code formatting approaches.

#### 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/51771.patch is attached

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

From efc63fecf0bcd503e899a1d2b3a3d60e2dad5886 Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <atweiden@ioiojo.com>
Date: Sat, 10 Aug 2024 19:34:36 +0000
Subject: [PATCH] New package: zprint-1.2.9

---
 srcpkgs/zprint/template | 67 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 67 insertions(+)
 create mode 100644 srcpkgs/zprint/template

diff --git a/srcpkgs/zprint/template b/srcpkgs/zprint/template
new file mode 100644
index 00000000000000..ba45d1b0e1fa59
--- /dev/null
+++ b/srcpkgs/zprint/template
@@ -0,0 +1,67 @@
+# Template file for 'zprint'
+pkgname=zprint
+version=1.2.9
+revision=1
+hostmakedepends="clojure leiningen mandrel"
+makedepends="zlib-devel"
+short_desc="Pretty print Clojure source and s-expressions"
+maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
+license="MIT"
+homepage="https://github.com/kkinnear/zprint"
+changelog="https://github.com/kkinnear/zprint/raw/main/CHANGELOG.md"
+distfiles="https://github.com/kkinnear/zprint/archive/${version}.tar.gz"
+checksum=f765621426c7404b1ada632987890279c38bc8a614f9f61063d68bb06de8a30a
+nocross="mandrel"
+
+pre_build() {
+	local _ss
+	# don't exceed host machine max stack size
+	_ss="$(ulimit -s)K"
+	vsed -i -e "s/Xss500m/Xss$_ss/" project.clj
+}
+
+do_build() {
+	local _args
+
+	export JAVA_HOME=/usr/lib/jvm/mandrel21
+	export GRAALVM_HOME=/usr/lib/jvm/mandrel21
+
+	lein deps
+	lein uberjar
+
+	_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"
+	_args+=" --enable-preview"
+
+	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
+
+	# see: kkinnear/zprint/zprintl.sh
+	LC_ALL=C.UTF-8 \
+		${GRAALVM_HOME}/bin/native-image \
+		--no-server \
+		-J-Xmx3G \
+		-J-Xms2G \
+		-jar target/zprint-filter-${version} \
+		$_args \
+		-H:Name="zprintl-${version}" \
+		-H:EnableURLProtocols=https,http \
+		-H:+ReportExceptionStackTraces \
+		--report-unsupported-elements-at-runtime \
+		--initialize-at-build-time \
+		--no-fallback
+}
+
+do_install() {
+	vbin zprintl-1.2.9 zprint
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: zprint-1.2.9
  2024-08-10 20:12 [PR PATCH] New package: zprint-1.2.9 atweiden
@ 2024-08-10 20:23 ` atweiden
  2024-08-10 20:34 ` atweiden
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: atweiden @ 2024-08-10 20:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/atweiden/void-packages zprint
https://github.com/void-linux/void-packages/pull/51771

New package: zprint-1.2.9
> [zprint](https://github.com/kkinnear/zprint) is a library and command line tool providing a variety of pretty printing capabilities for both Clojure code and Clojure/EDN structures. It can meet almost anyone's needs. As such, it supports a number of major source code formatting approaches.

#### 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/51771.patch is attached

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

From 1b200fde11a4c8fec4e0121d36e71d4c191793bf Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <atweiden@ioiojo.com>
Date: Sat, 10 Aug 2024 19:34:36 +0000
Subject: [PATCH] New package: zprint-1.2.9

---
 srcpkgs/zprint/template | 67 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 67 insertions(+)
 create mode 100644 srcpkgs/zprint/template

diff --git a/srcpkgs/zprint/template b/srcpkgs/zprint/template
new file mode 100644
index 00000000000000..b54fdf4bb25771
--- /dev/null
+++ b/srcpkgs/zprint/template
@@ -0,0 +1,67 @@
+# Template file for 'zprint'
+pkgname=zprint
+version=1.2.9
+revision=1
+hostmakedepends="virtual?java-runtime leiningen mandrel"
+makedepends="zlib-devel"
+short_desc="Pretty print Clojure source and s-expressions"
+maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
+license="MIT"
+homepage="https://github.com/kkinnear/zprint"
+changelog="https://github.com/kkinnear/zprint/raw/main/CHANGELOG.md"
+distfiles="https://github.com/kkinnear/zprint/archive/${version}.tar.gz"
+checksum=f765621426c7404b1ada632987890279c38bc8a614f9f61063d68bb06de8a30a
+nocross="mandrel"
+
+pre_build() {
+	local _ss
+	# don't exceed host machine max stack size
+	_ss="$(ulimit -s)K"
+	vsed -i -e "s/Xss500m/Xss$_ss/" project.clj
+}
+
+do_build() {
+	local _args
+
+	export JAVA_HOME=/usr/lib/jvm/mandrel21
+	export GRAALVM_HOME=/usr/lib/jvm/mandrel21
+
+	lein deps
+	lein uberjar
+
+	_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"
+	_args+=" --enable-preview"
+
+	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
+
+	# see: kkinnear/zprint/zprintl.sh
+	LC_ALL=C.UTF-8 \
+		${GRAALVM_HOME}/bin/native-image \
+		--no-server \
+		-J-Xmx3G \
+		-J-Xms2G \
+		-jar target/zprint-filter-${version} \
+		$_args \
+		-H:Name="zprintl-${version}" \
+		-H:EnableURLProtocols=https,http \
+		-H:+ReportExceptionStackTraces \
+		--report-unsupported-elements-at-runtime \
+		--initialize-at-build-time \
+		--no-fallback
+}
+
+do_install() {
+	vbin zprintl-1.2.9 zprint
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: zprint-1.2.9
  2024-08-10 20:12 [PR PATCH] New package: zprint-1.2.9 atweiden
  2024-08-10 20:23 ` [PR PATCH] [Updated] " atweiden
@ 2024-08-10 20:34 ` atweiden
  2024-08-23 20:57 ` atweiden
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: atweiden @ 2024-08-10 20:34 UTC (permalink / raw)
  To: ml

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

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

https://github.com/atweiden/void-packages zprint
https://github.com/void-linux/void-packages/pull/51771

New package: zprint-1.2.9
> [zprint](https://github.com/kkinnear/zprint) is a library and command line tool providing a variety of pretty printing capabilities for both Clojure code and Clojure/EDN structures. It can meet almost anyone's needs. As such, it supports a number of major source code formatting approaches.

#### 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/51771.patch is attached

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

From 857ddbe9289675a0469096af54eb3e588629cb02 Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <atweiden@ioiojo.com>
Date: Sat, 10 Aug 2024 19:34:36 +0000
Subject: [PATCH] New package: zprint-1.2.9

---
 srcpkgs/zprint/template | 68 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 68 insertions(+)
 create mode 100644 srcpkgs/zprint/template

diff --git a/srcpkgs/zprint/template b/srcpkgs/zprint/template
new file mode 100644
index 00000000000000..d521a775b8560c
--- /dev/null
+++ b/srcpkgs/zprint/template
@@ -0,0 +1,68 @@
+# Template file for 'zprint'
+pkgname=zprint
+version=1.2.9
+revision=1
+hostmakedepends="clojure leiningen mandrel"
+makedepends="zlib-devel"
+short_desc="Pretty print Clojure source and s-expressions"
+maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
+license="MIT"
+homepage="https://github.com/kkinnear/zprint"
+changelog="https://github.com/kkinnear/zprint/raw/main/CHANGELOG.md"
+distfiles="https://github.com/kkinnear/zprint/archive/${version}.tar.gz"
+checksum=f765621426c7404b1ada632987890279c38bc8a614f9f61063d68bb06de8a30a
+nocross="mandrel"
+
+pre_build() {
+	local _ss
+	# don't exceed host machine max stack size
+	_ss="$(ulimit -s)K"
+	vsed -i -e "s/Xss500m/Xss$_ss/" project.clj
+}
+
+do_build() {
+	local _args
+
+	export JAVA_HOME=/usr/lib/jvm/mandrel21
+	export GRAALVM_HOME=/usr/lib/jvm/mandrel21
+	export PATH="${PATH}:${GRAALVM_HOME}/bin"
+
+	lein deps
+	lein uberjar
+
+	_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"
+	_args+=" --enable-preview"
+
+	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
+
+	# see: kkinnear/zprint/zprintl.sh
+	LC_ALL=C.UTF-8 \
+		${GRAALVM_HOME}/bin/native-image \
+		--no-server \
+		-J-Xmx3G \
+		-J-Xms2G \
+		-jar target/zprint-filter-${version} \
+		$_args \
+		-H:Name="zprintl-${version}" \
+		-H:EnableURLProtocols=https,http \
+		-H:+ReportExceptionStackTraces \
+		--report-unsupported-elements-at-runtime \
+		--initialize-at-build-time \
+		--no-fallback
+}
+
+do_install() {
+	vbin zprintl-1.2.9 zprint
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: zprint-1.2.9
  2024-08-10 20:12 [PR PATCH] New package: zprint-1.2.9 atweiden
  2024-08-10 20:23 ` [PR PATCH] [Updated] " atweiden
  2024-08-10 20:34 ` atweiden
@ 2024-08-23 20:57 ` atweiden
  2024-08-23 21:04 ` atweiden
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: atweiden @ 2024-08-23 20:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/atweiden/void-packages zprint
https://github.com/void-linux/void-packages/pull/51771

New package: zprint-1.2.9
> [zprint](https://github.com/kkinnear/zprint) is a library and command line tool providing a variety of pretty printing capabilities for both Clojure code and Clojure/EDN structures. It can meet almost anyone's needs. As such, it supports a number of major source code formatting approaches.

#### 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/51771.patch is attached

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

From 04f9d2d3e19723da6122f19909dad649c235bc78 Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <atweiden@ioiojo.com>
Date: Sat, 10 Aug 2024 19:34:36 +0000
Subject: [PATCH] New package: zprint-1.2.9

---
 srcpkgs/zprint/template | 85 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)
 create mode 100644 srcpkgs/zprint/template

diff --git a/srcpkgs/zprint/template b/srcpkgs/zprint/template
new file mode 100644
index 00000000000000..b97558a0c95754
--- /dev/null
+++ b/srcpkgs/zprint/template
@@ -0,0 +1,85 @@
+# Template file for 'zprint'
+pkgname=zprint
+version=1.2.9
+revision=1
+hostmakedepends="clojure leiningen mandrel"
+makedepends="zlib-devel"
+checkdepends="diffutils grep"
+short_desc="Pretty print Clojure source and s-expressions"
+maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
+license="MIT"
+homepage="https://github.com/kkinnear/zprint"
+changelog="https://github.com/kkinnear/zprint/raw/main/CHANGELOG.md"
+distfiles="https://github.com/kkinnear/zprint/archive/${version}.tar.gz"
+checksum=f765621426c7404b1ada632987890279c38bc8a614f9f61063d68bb06de8a30a
+nocross="mandrel"
+
+pre_build() {
+	local _ss
+	# don't exceed host machine max stack size
+	_ss="$(ulimit -s)K"
+	vsed -i -e "s/Xss500m/Xss$_ss/" project.clj
+}
+
+export JAVA_HOME=/usr/lib/jvm/mandrel21
+export GRAALVM_HOME=/usr/lib/jvm/mandrel21
+export PATH="${PATH}:${GRAALVM_HOME}/bin"
+
+do_build() {
+	local _args
+
+	lein deps
+	lein uberjar
+
+	_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"
+	_args+=" --enable-preview"
+
+	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
+
+	# see: kkinnear/zprint/zprintl.sh
+	LC_ALL=C.UTF-8 \
+		${GRAALVM_HOME}/bin/native-image \
+		--no-server \
+		-J-Xmx3G \
+		-J-Xms2G \
+		-jar target/zprint-filter-${version} \
+		$_args \
+		-H:Name="zprintl-${version}" \
+		-H:EnableURLProtocols=https,http \
+		-H:+ReportExceptionStackTraces \
+		--report-unsupported-elements-at-runtime \
+		--initialize-at-build-time \
+		--no-fallback
+}
+
+do_check() {
+	# see: kkinnear/zprint/test_zprintm
+	local _exe _jar
+	_exe=./target/zprintl-${version}
+	_jar=target/zprint-filter-${version}
+	$_exe <src/zprint/zprint.cljc >z.cljc
+	diff z.cljc src/zprint/zprint.cljc
+	rm -f z.cljc
+	java -jar $_jar -e 2>uj.edn
+	grep -v "\<Fn@" <uj.edn >ujx.edn
+	$_exe -e 2>gv.edn
+	grep -v "\<Fn@" <gv.edn >gvx.edn
+	diff ujx.edn gvx.edn
+	rm -f uj.edn ujx.edn gv.edn gvx.edn
+}
+
+do_install() {
+	vbin zprintl-1.2.9 zprint
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: zprint-1.2.9
  2024-08-10 20:12 [PR PATCH] New package: zprint-1.2.9 atweiden
                   ` (2 preceding siblings ...)
  2024-08-23 20:57 ` atweiden
@ 2024-08-23 21:04 ` atweiden
  2024-11-22  2:03 ` github-actions
  2024-11-26 13:39 ` atweiden
  5 siblings, 0 replies; 7+ messages in thread
From: atweiden @ 2024-08-23 21:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/atweiden/void-packages zprint
https://github.com/void-linux/void-packages/pull/51771

New package: zprint-1.2.9
> [zprint](https://github.com/kkinnear/zprint) is a library and command line tool providing a variety of pretty printing capabilities for both Clojure code and Clojure/EDN structures. It can meet almost anyone's needs. As such, it supports a number of major source code formatting approaches.

#### 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/51771.patch is attached

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

From 835dcc546cd651dae40ec8a923f2b6893b59b99f Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <atweiden@ioiojo.com>
Date: Sat, 10 Aug 2024 19:34:36 +0000
Subject: [PATCH] New package: zprint-1.2.9

---
 srcpkgs/zprint/template | 85 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)
 create mode 100644 srcpkgs/zprint/template

diff --git a/srcpkgs/zprint/template b/srcpkgs/zprint/template
new file mode 100644
index 00000000000000..d4c2114e8eb0e4
--- /dev/null
+++ b/srcpkgs/zprint/template
@@ -0,0 +1,85 @@
+# Template file for 'zprint'
+pkgname=zprint
+version=1.2.9
+revision=1
+hostmakedepends="clojure leiningen mandrel"
+makedepends="zlib-devel"
+checkdepends="diffutils grep"
+short_desc="Pretty print Clojure source and s-expressions"
+maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
+license="MIT"
+homepage="https://github.com/kkinnear/zprint"
+changelog="https://github.com/kkinnear/zprint/raw/main/CHANGELOG.md"
+distfiles="https://github.com/kkinnear/zprint/archive/${version}.tar.gz"
+checksum=f765621426c7404b1ada632987890279c38bc8a614f9f61063d68bb06de8a30a
+nocross="mandrel"
+
+pre_build() {
+	local _ss
+	# don't exceed host machine max stack size
+	_ss="$(ulimit -s)K"
+	vsed -i -e "s/Xss500m/Xss$_ss/" project.clj
+}
+
+export JAVA_HOME=/usr/lib/jvm/mandrel21
+export GRAALVM_HOME=/usr/lib/jvm/mandrel21
+export PATH="${PATH}:${GRAALVM_HOME}/bin"
+
+do_build() {
+	local _args
+
+	lein deps
+	lein uberjar
+
+	_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"
+	_args+=" --enable-preview"
+
+	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
+
+	# see: kkinnear/zprint/zprintl.sh
+	LC_ALL=C.UTF-8 \
+		${GRAALVM_HOME}/bin/native-image \
+		--no-server \
+		-J-Xmx3G \
+		-J-Xms2G \
+		-jar target/zprint-filter-${version} \
+		$_args \
+		-H:Name="zprintl-${version}" \
+		-H:EnableURLProtocols=https,http \
+		-H:+ReportExceptionStackTraces \
+		--report-unsupported-elements-at-runtime \
+		--initialize-at-build-time \
+		--no-fallback
+}
+
+do_check() {
+	# see: kkinnear/zprint/test_zprintm
+	local _exe _jar
+	_exe=./zprintl-${version}
+	_jar=target/zprint-filter-${version}
+	$_exe <src/zprint/zprint.cljc >z.cljc
+	diff z.cljc src/zprint/zprint.cljc
+	rm -f z.cljc
+	java -jar $_jar -e 2>uj.edn
+	grep -v "\<Fn@" <uj.edn >ujx.edn
+	$_exe -e 2>gv.edn
+	grep -v "\<Fn@" <gv.edn >gvx.edn
+	diff ujx.edn gvx.edn
+	rm -f uj.edn ujx.edn gv.edn gvx.edn
+}
+
+do_install() {
+	vbin zprintl-${version} zprint
+	vlicense LICENSE
+}

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

* Re: New package: zprint-1.2.9
  2024-08-10 20:12 [PR PATCH] New package: zprint-1.2.9 atweiden
                   ` (3 preceding siblings ...)
  2024-08-23 21:04 ` atweiden
@ 2024-11-22  2:03 ` github-actions
  2024-11-26 13:39 ` atweiden
  5 siblings, 0 replies; 7+ 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/51771#issuecomment-2492720810

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] 7+ messages in thread

* Re: New package: zprint-1.2.9
  2024-08-10 20:12 [PR PATCH] New package: zprint-1.2.9 atweiden
                   ` (4 preceding siblings ...)
  2024-11-22  2:03 ` github-actions
@ 2024-11-26 13:39 ` atweiden
  5 siblings, 0 replies; 7+ 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/51771#issuecomment-2500831154

Comment:
bump

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

end of thread, other threads:[~2024-11-26 13:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-10 20:12 [PR PATCH] New package: zprint-1.2.9 atweiden
2024-08-10 20:23 ` [PR PATCH] [Updated] " atweiden
2024-08-10 20:34 ` atweiden
2024-08-23 20:57 ` atweiden
2024-08-23 21:04 ` atweiden
2024-11-22  2:03 ` github-actions
2024-11-26 13:39 ` atweiden

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).