* [PR PATCH] typstyle: update to 0.12.8.
@ 2024-12-07 10:22 Bnyro
2024-12-29 11:32 ` [PR PATCH] [Updated] " Bnyro
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Bnyro @ 2024-12-07 10:22 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 471 bytes --]
There is a new pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages typstyle
https://github.com/void-linux/void-packages/pull/53391
typstyle: update to 0.12.8.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/53391.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-typstyle-53391.patch --]
[-- Type: text/x-diff, Size: 1170 bytes --]
From 0b157fa25a9df6a0098a669079dca8d7bfeef2a0 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Sat, 7 Dec 2024 11:22:04 +0100
Subject: [PATCH] typstyle: update to 0.12.8.
---
srcpkgs/typstyle/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/typstyle/template b/srcpkgs/typstyle/template
index d5619c657e1277..693efb667e56b3 100644
--- a/srcpkgs/typstyle/template
+++ b/srcpkgs/typstyle/template
@@ -1,6 +1,6 @@
# Template file for 'typstyle'
pkgname=typstyle
-version=0.12.3
+version=0.12.8
revision=1
build_style=cargo
configure_args="--no-default-features --features=cli"
@@ -11,7 +11,7 @@ license="Apache-2.0"
homepage="https://github.com/Enter-tainer/typstyle/"
changelog="https://raw.githubusercontent.com/Enter-tainer/typstyle/master/CHANGELOG.md"
distfiles="https://github.com/Enter-tainer/typstyle/archive/refs/tags/v${version}.tar.gz"
-checksum=cbe6ea2c110849c0bdb7b8f22683b964c3a1ecb11b912a0b7e2a9d1468726b24
+checksum=a0ec405addfd4b0837838a963d3e57c1063c34a3cf12bfe71aa2e1394190e663
if [ "$XBPS_TARGET_MACHINE" == "i686" ]; then
make_check=no # reflexo crate for tests not running on i686
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PR PATCH] [Updated] typstyle: update to 0.12.8.
2024-12-07 10:22 [PR PATCH] typstyle: update to 0.12.8 Bnyro
@ 2024-12-29 11:32 ` Bnyro
2025-01-04 10:23 ` [PR PATCH] [Updated] typstyle: update to 0.12.14, install completions Bnyro
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Bnyro @ 2024-12-29 11:32 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 476 bytes --]
There is an updated pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages typstyle
https://github.com/void-linux/void-packages/pull/53391
typstyle: update to 0.12.8.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/53391.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-typstyle-53391.patch --]
[-- Type: text/x-diff, Size: 1681 bytes --]
From 0d1755dbe98f99fdc4e1bfebfce9f46829c0e2e9 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Sun, 29 Dec 2024 12:31:19 +0100
Subject: [PATCH] typstyle: update to 0.12.14, install completions.
---
srcpkgs/typstyle/template | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/srcpkgs/typstyle/template b/srcpkgs/typstyle/template
index d5619c657e1277..9f0c477f95a374 100644
--- a/srcpkgs/typstyle/template
+++ b/srcpkgs/typstyle/template
@@ -1,9 +1,11 @@
# Template file for 'typstyle'
pkgname=typstyle
-version=0.12.3
+version=0.12.14
revision=1
build_style=cargo
-configure_args="--no-default-features --features=cli"
+build_helper=qemu
+configure_args="--no-default-features --features=completion"
+make_install_args="--path crates/typstyle"
checkdepends="git"
short_desc="Beautiful and reliable typst code formatter"
maintainer="Bnyro <bnyro@tutanota.com>"
@@ -11,8 +13,16 @@ license="Apache-2.0"
homepage="https://github.com/Enter-tainer/typstyle/"
changelog="https://raw.githubusercontent.com/Enter-tainer/typstyle/master/CHANGELOG.md"
distfiles="https://github.com/Enter-tainer/typstyle/archive/refs/tags/v${version}.tar.gz"
-checksum=cbe6ea2c110849c0bdb7b8f22683b964c3a1ecb11b912a0b7e2a9d1468726b24
+checksum=053ae2b6349fe244f44dc816f7d91036c152eeb14bfc2c6bfeeca33cc5ac0c34
if [ "$XBPS_TARGET_MACHINE" == "i686" ]; then
make_check=no # reflexo crate for tests not running on i686
fi
+
+post_install() {
+ local typstyle="${DESTDIR}/usr/bin/typstyle"
+ for shell in bash zsh fish; do
+ vtargetrun ${typstyle} completions ${shell} > completion.${shell}
+ vcompletion completion.${shell} ${shell}
+ done
+}
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PR PATCH] [Updated] typstyle: update to 0.12.14, install completions.
2024-12-07 10:22 [PR PATCH] typstyle: update to 0.12.8 Bnyro
2024-12-29 11:32 ` [PR PATCH] [Updated] " Bnyro
@ 2025-01-04 10:23 ` Bnyro
2025-01-04 10:23 ` Bnyro
2025-02-24 16:48 ` Bnyro
3 siblings, 0 replies; 5+ messages in thread
From: Bnyro @ 2025-01-04 10:23 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 498 bytes --]
There is an updated pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages typstyle
https://github.com/void-linux/void-packages/pull/53391
typstyle: update to 0.12.14, install completions.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/53391.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-typstyle-53391.patch --]
[-- Type: text/x-diff, Size: 1741 bytes --]
From 35b38caf5d931d8b9219812d8a610d02cd46c7f8 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Sun, 29 Dec 2024 12:31:19 +0100
Subject: [PATCH] typstyle: update to 0.12.14, install completions.
---
srcpkgs/typstyle/template | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/srcpkgs/typstyle/template b/srcpkgs/typstyle/template
index d5619c657e1277..4d7d31479dcbc3 100644
--- a/srcpkgs/typstyle/template
+++ b/srcpkgs/typstyle/template
@@ -1,9 +1,12 @@
# Template file for 'typstyle'
pkgname=typstyle
-version=0.12.3
+version=0.12.14
revision=1
build_style=cargo
-configure_args="--no-default-features --features=cli"
+build_helper=qemu
+configure_args="--no-default-features --features=completion"
+make_install_args="--path crates/typstyle"
+make_check_args="-- --skip all_0_check" # broken upstream
checkdepends="git"
short_desc="Beautiful and reliable typst code formatter"
maintainer="Bnyro <bnyro@tutanota.com>"
@@ -11,8 +14,16 @@ license="Apache-2.0"
homepage="https://github.com/Enter-tainer/typstyle/"
changelog="https://raw.githubusercontent.com/Enter-tainer/typstyle/master/CHANGELOG.md"
distfiles="https://github.com/Enter-tainer/typstyle/archive/refs/tags/v${version}.tar.gz"
-checksum=cbe6ea2c110849c0bdb7b8f22683b964c3a1ecb11b912a0b7e2a9d1468726b24
+checksum=053ae2b6349fe244f44dc816f7d91036c152eeb14bfc2c6bfeeca33cc5ac0c34
if [ "$XBPS_TARGET_MACHINE" == "i686" ]; then
make_check=no # reflexo crate for tests not running on i686
fi
+
+post_install() {
+ local typstyle="${DESTDIR}/usr/bin/typstyle"
+ for shell in bash zsh fish; do
+ vtargetrun ${typstyle} completions ${shell} > completion.${shell}
+ vcompletion completion.${shell} ${shell}
+ done
+}
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PR PATCH] [Updated] typstyle: update to 0.12.14, install completions.
2024-12-07 10:22 [PR PATCH] typstyle: update to 0.12.8 Bnyro
2024-12-29 11:32 ` [PR PATCH] [Updated] " Bnyro
2025-01-04 10:23 ` [PR PATCH] [Updated] typstyle: update to 0.12.14, install completions Bnyro
@ 2025-01-04 10:23 ` Bnyro
2025-02-24 16:48 ` Bnyro
3 siblings, 0 replies; 5+ messages in thread
From: Bnyro @ 2025-01-04 10:23 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 498 bytes --]
There is an updated pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages typstyle
https://github.com/void-linux/void-packages/pull/53391
typstyle: update to 0.12.14, install completions.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/53391.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-typstyle-53391.patch --]
[-- Type: text/x-diff, Size: 1741 bytes --]
From ef2a313c0f5f505abf35490db7fb18713b44f74c Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Sun, 29 Dec 2024 12:31:19 +0100
Subject: [PATCH] typstyle: update to 0.12.14, install completions.
---
srcpkgs/typstyle/template | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/srcpkgs/typstyle/template b/srcpkgs/typstyle/template
index d5619c657e1277..4d7d31479dcbc3 100644
--- a/srcpkgs/typstyle/template
+++ b/srcpkgs/typstyle/template
@@ -1,9 +1,12 @@
# Template file for 'typstyle'
pkgname=typstyle
-version=0.12.3
+version=0.12.14
revision=1
build_style=cargo
-configure_args="--no-default-features --features=cli"
+build_helper=qemu
+configure_args="--no-default-features --features=completion"
+make_install_args="--path crates/typstyle"
+make_check_args="-- --skip all_0_check" # broken upstream
checkdepends="git"
short_desc="Beautiful and reliable typst code formatter"
maintainer="Bnyro <bnyro@tutanota.com>"
@@ -11,8 +14,16 @@ license="Apache-2.0"
homepage="https://github.com/Enter-tainer/typstyle/"
changelog="https://raw.githubusercontent.com/Enter-tainer/typstyle/master/CHANGELOG.md"
distfiles="https://github.com/Enter-tainer/typstyle/archive/refs/tags/v${version}.tar.gz"
-checksum=cbe6ea2c110849c0bdb7b8f22683b964c3a1ecb11b912a0b7e2a9d1468726b24
+checksum=053ae2b6349fe244f44dc816f7d91036c152eeb14bfc2c6bfeeca33cc5ac0c34
if [ "$XBPS_TARGET_MACHINE" == "i686" ]; then
make_check=no # reflexo crate for tests not running on i686
fi
+
+post_install() {
+ local typstyle="${DESTDIR}/usr/bin/typstyle"
+ for shell in bash zsh fish; do
+ vtargetrun ${typstyle} completions ${shell} > completion.${shell}
+ vcompletion completion.${shell} ${shell}
+ done
+}
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PR PATCH] [Updated] typstyle: update to 0.12.14, install completions.
2024-12-07 10:22 [PR PATCH] typstyle: update to 0.12.8 Bnyro
` (2 preceding siblings ...)
2025-01-04 10:23 ` Bnyro
@ 2025-02-24 16:48 ` Bnyro
3 siblings, 0 replies; 5+ messages in thread
From: Bnyro @ 2025-02-24 16:48 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 498 bytes --]
There is an updated pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages typstyle
https://github.com/void-linux/void-packages/pull/53391
typstyle: update to 0.12.14, install completions.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/53391.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-typstyle-53391.patch --]
[-- Type: text/x-diff, Size: 1741 bytes --]
From 0eb2c369293fda0f89adcc3787ac69dc745eb215 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Sun, 29 Dec 2024 12:31:19 +0100
Subject: [PATCH] typstyle: update to 0.13.0, install completions.
---
srcpkgs/typstyle/template | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/srcpkgs/typstyle/template b/srcpkgs/typstyle/template
index d5619c657e1277..1101dec0b42a2c 100644
--- a/srcpkgs/typstyle/template
+++ b/srcpkgs/typstyle/template
@@ -1,9 +1,12 @@
# Template file for 'typstyle'
pkgname=typstyle
-version=0.12.3
+version=0.13.0
revision=1
build_style=cargo
-configure_args="--no-default-features --features=cli"
+build_helper=qemu
+configure_args="--no-default-features --features=completion"
+make_install_args="--path crates/typstyle"
+make_check_args="-- --skip all_0_check" # broken upstream
checkdepends="git"
short_desc="Beautiful and reliable typst code formatter"
maintainer="Bnyro <bnyro@tutanota.com>"
@@ -11,8 +14,16 @@ license="Apache-2.0"
homepage="https://github.com/Enter-tainer/typstyle/"
changelog="https://raw.githubusercontent.com/Enter-tainer/typstyle/master/CHANGELOG.md"
distfiles="https://github.com/Enter-tainer/typstyle/archive/refs/tags/v${version}.tar.gz"
-checksum=cbe6ea2c110849c0bdb7b8f22683b964c3a1ecb11b912a0b7e2a9d1468726b24
+checksum=2a57d02df94d50e7b0e721ab0d3e6139a1ee892b51a5afb6e1ea8c62f637151f
if [ "$XBPS_TARGET_MACHINE" == "i686" ]; then
make_check=no # reflexo crate for tests not running on i686
fi
+
+post_install() {
+ local typstyle="${DESTDIR}/usr/bin/typstyle"
+ for shell in bash zsh fish; do
+ vtargetrun "${typstyle}" completions ${shell} > completion.${shell}
+ vcompletion completion.${shell} ${shell}
+ done
+}
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-02-24 16:48 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-12-07 10:22 [PR PATCH] typstyle: update to 0.12.8 Bnyro
2024-12-29 11:32 ` [PR PATCH] [Updated] " Bnyro
2025-01-04 10:23 ` [PR PATCH] [Updated] typstyle: update to 0.12.14, install completions Bnyro
2025-01-04 10:23 ` Bnyro
2025-02-24 16:48 ` Bnyro
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).