Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] trippy: update to 0.12.2.
@ 2025-01-04 18:53 icp1994
  2025-01-04 19:33 ` tranzystorekk
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: icp1994 @ 2025-01-04 18:53 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages trippy
https://github.com/void-linux/void-packages/pull/53842

trippy: update to 0.12.2.
#### 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**

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

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

From 4f2874bacf1ef0bad3c3c8ca20d72d2b3d862d93 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Fri, 3 Jan 2025 23:15:12 +0530
Subject: [PATCH] trippy: update to 0.12.2.

---
 srcpkgs/trippy/template | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/trippy/template b/srcpkgs/trippy/template
index 1c7d55b3ba5f29..984eaa9014c1e9 100644
--- a/srcpkgs/trippy/template
+++ b/srcpkgs/trippy/template
@@ -1,13 +1,25 @@
 # Template file for 'trippy'
 pkgname=trippy
-version=0.12.1
+version=0.12.2
 revision=1
 build_style=cargo
-make_install_args="--path=crates/trippy"
+build_helper="qemu"
 short_desc="Tool to assist with analysis of networking issues"
 maintainer="icp <pangolin@vivaldi.net>"
 license="Apache-2.0"
 homepage="https://trippy.rs/"
 changelog="https://raw.githubusercontent.com/fujiapple852/trippy/refs/heads/master/RELEASES.md"
 distfiles="https://github.com/fujiapple852/trippy/archive/refs/tags/${version}.tar.gz"
-checksum=ae868123cba03977786f0dd74297f2e15e021d753684bd6e47554003f03a3d5b
+checksum=6f23549e5f398113ecd0d2f15c829f5ab84fcdf99dde9942c61746e72f990085
+
+do_install() {
+	vbin target/${RUST_TARGET}/release/trip
+
+	vtargetrun ${DESTDIR}/usr/bin/trip --generate-man > trip.1
+	vman trip.1
+
+	for shell in bash fish zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/trip --generate ${shell} > trippy.${shell}
+		vcompletion trippy.${shell} ${shell} trip
+	done
+}

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

* Re: trippy: update to 0.12.2.
  2025-01-04 18:53 [PR PATCH] trippy: update to 0.12.2 icp1994
@ 2025-01-04 19:33 ` tranzystorekk
  2025-01-05  9:30 ` [PR PATCH] [Updated] " icp1994
  2025-01-05 10:26 ` [PR PATCH] [Merged]: " tranzystorekk
  2 siblings, 0 replies; 4+ messages in thread
From: tranzystorekk @ 2025-01-04 19:33 UTC (permalink / raw)
  To: ml

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

New comment by tranzystorekk on void-packages repository

https://github.com/void-linux/void-packages/pull/53842#issuecomment-2571391615

Comment:
`build_wrksrc=crates/trippy` simplifies this template a little bit

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

* Re: [PR PATCH] [Updated] trippy: update to 0.12.2.
  2025-01-04 18:53 [PR PATCH] trippy: update to 0.12.2 icp1994
  2025-01-04 19:33 ` tranzystorekk
@ 2025-01-05  9:30 ` icp1994
  2025-01-05 10:26 ` [PR PATCH] [Merged]: " tranzystorekk
  2 siblings, 0 replies; 4+ messages in thread
From: icp1994 @ 2025-01-05  9:30 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages trippy
https://github.com/void-linux/void-packages/pull/53842

trippy: update to 0.12.2.
#### 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**

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

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

From db6a956f92afee5adcbe27e3c4be431e20dd30cc Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Fri, 3 Jan 2025 23:15:12 +0530
Subject: [PATCH] trippy: update to 0.12.2.

generate/install manpage and completions
---
 srcpkgs/trippy/template | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/trippy/template b/srcpkgs/trippy/template
index 1c7d55b3ba5f29..8930f65630cf40 100644
--- a/srcpkgs/trippy/template
+++ b/srcpkgs/trippy/template
@@ -1,13 +1,24 @@
 # Template file for 'trippy'
 pkgname=trippy
-version=0.12.1
+version=0.12.2
 revision=1
+build_wrksrc="crates/trippy"
 build_style=cargo
-make_install_args="--path=crates/trippy"
+build_helper="qemu"
 short_desc="Tool to assist with analysis of networking issues"
 maintainer="icp <pangolin@vivaldi.net>"
 license="Apache-2.0"
 homepage="https://trippy.rs/"
 changelog="https://raw.githubusercontent.com/fujiapple852/trippy/refs/heads/master/RELEASES.md"
 distfiles="https://github.com/fujiapple852/trippy/archive/refs/tags/${version}.tar.gz"
-checksum=ae868123cba03977786f0dd74297f2e15e021d753684bd6e47554003f03a3d5b
+checksum=6f23549e5f398113ecd0d2f15c829f5ab84fcdf99dde9942c61746e72f990085
+
+post_install() {
+	vtargetrun ${DESTDIR}/usr/bin/trip --generate-man > trip.1
+	vman trip.1
+
+	for shell in bash fish zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/trip --generate ${shell} > trip.${shell}
+		vcompletion trip.${shell} ${shell} trip
+	done
+}

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

* Re: [PR PATCH] [Merged]: trippy: update to 0.12.2.
  2025-01-04 18:53 [PR PATCH] trippy: update to 0.12.2 icp1994
  2025-01-04 19:33 ` tranzystorekk
  2025-01-05  9:30 ` [PR PATCH] [Updated] " icp1994
@ 2025-01-05 10:26 ` tranzystorekk
  2 siblings, 0 replies; 4+ messages in thread
From: tranzystorekk @ 2025-01-05 10:26 UTC (permalink / raw)
  To: ml

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

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

trippy: update to 0.12.2.
https://github.com/void-linux/void-packages/pull/53842

Description:
#### 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**

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

end of thread, other threads:[~2025-01-05 10:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-04 18:53 [PR PATCH] trippy: update to 0.12.2 icp1994
2025-01-04 19:33 ` tranzystorekk
2025-01-05  9:30 ` [PR PATCH] [Updated] " icp1994
2025-01-05 10:26 ` [PR PATCH] [Merged]: " tranzystorekk

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