* [PR PATCH] New package: impala-0.2.4
@ 2025-06-16 0:30 jpnt
2025-06-16 0:41 ` [PR REVIEW] " Duncaen
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: jpnt @ 2025-06-16 0:30 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 770 bytes --]
There is a new pull request by jpnt against master on the void-packages repository
https://github.com/jpnt/void-packages impala
https://github.com/void-linux/void-packages/pull/55827
New package: impala-0.2.4
#### 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-glibc)
- I built this PR locally for these architectures (all crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
A patch file from https://github.com/void-linux/void-packages/pull/55827.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-impala-55827.patch --]
[-- Type: text/x-diff, Size: 1058 bytes --]
From 0111bba231875b92d6863dc0d1bc0d29d00eb481 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Pinto?= <joaopintojpgp@gmail.com>
Date: Mon, 16 Jun 2025 01:07:19 +0100
Subject: [PATCH] New package: impala-0.2.4
---
srcpkgs/impala/template | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
create mode 100644 srcpkgs/impala/template
diff --git a/srcpkgs/impala/template b/srcpkgs/impala/template
new file mode 100644
index 00000000000000..3b9cabc6c3f01f
--- /dev/null
+++ b/srcpkgs/impala/template
@@ -0,0 +1,17 @@
+# Template file for 'impala'
+pkgname=impala
+version=0.2.4
+revision=1
+build_style=cargo
+depends="libgcc iwd"
+short_desc="TUI for managing wifi on Linux"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="GPL-3.0-only"
+homepage="https://github.com/pythops/impala"
+changelog="https://raw.githubusercontent.com/pythops/impala/main/Release.md"
+distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz"
+checksum=550ce667588659af40ff2af6bddcca74fb1a990001ccba7cf16d3739717a70fc
+
+post_install() {
+ vdoc Readme.md
+}
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PR REVIEW] New package: impala-0.2.4
2025-06-16 0:30 [PR PATCH] New package: impala-0.2.4 jpnt
@ 2025-06-16 0:41 ` Duncaen
2025-06-16 0:41 ` Duncaen
` (5 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Duncaen @ 2025-06-16 0:41 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 159 bytes --]
New review comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/55827#discussion_r2148885933
Comment:
Why libgcc?
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PR REVIEW] New package: impala-0.2.4
2025-06-16 0:30 [PR PATCH] New package: impala-0.2.4 jpnt
2025-06-16 0:41 ` [PR REVIEW] " Duncaen
@ 2025-06-16 0:41 ` Duncaen
2025-06-16 0:45 ` jpnt
` (4 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Duncaen @ 2025-06-16 0:41 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 236 bytes --]
New review comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/55827#discussion_r2148886122
Comment:
remove the $homepage variable and just put the full path there, makes it easier to copy.
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PR REVIEW] New package: impala-0.2.4
2025-06-16 0:30 [PR PATCH] New package: impala-0.2.4 jpnt
2025-06-16 0:41 ` [PR REVIEW] " Duncaen
2025-06-16 0:41 ` Duncaen
@ 2025-06-16 0:45 ` jpnt
2025-06-16 0:53 ` [PR PATCH] [Updated] " jpnt
` (3 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: jpnt @ 2025-06-16 0:45 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 649 bytes --]
New review comment by jpnt on void-packages repository
https://github.com/void-linux/void-packages/pull/55827#discussion_r2148887558
Comment:
I did the same for a similar rust package (bluetui), I assumed because the binary links to it then that means I need it. Also other distros use it. What is the correct way?
```sh
ldd $(which impala)
linux-vdso.so.1 (0x00007fd108b9c000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x00007fd108b54000)
libm.so.6 => /usr/lib/libm.so.6 (0x00007fd108a66000)
libc.so.6 => /usr/lib/libc.so.6 (0x00007fd108416000)
/lib64/ld-linux-x86-64.so.2 => /usr/lib64/ld-linux-x86-64.so.2 (0x00007fd108b9e000
```
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PR PATCH] [Updated] New package: impala-0.2.4
2025-06-16 0:30 [PR PATCH] New package: impala-0.2.4 jpnt
` (2 preceding siblings ...)
2025-06-16 0:45 ` jpnt
@ 2025-06-16 0:53 ` jpnt
2025-06-16 1:03 ` [PR REVIEW] " Duncaen
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: jpnt @ 2025-06-16 0:53 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 775 bytes --]
There is an updated pull request by jpnt against master on the void-packages repository
https://github.com/jpnt/void-packages impala
https://github.com/void-linux/void-packages/pull/55827
New package: impala-0.2.4
#### 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-glibc)
- I built this PR locally for these architectures (all crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
A patch file from https://github.com/void-linux/void-packages/pull/55827.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-impala-55827.patch --]
[-- Type: text/x-diff, Size: 1073 bytes --]
From 92b6d7caa3007425af647e31cc5c7f8ecae1a6dc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Pinto?= <joaopintojpgp@gmail.com>
Date: Mon, 16 Jun 2025 01:07:19 +0100
Subject: [PATCH] New package: impala-0.2.4
---
srcpkgs/impala/template | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
create mode 100644 srcpkgs/impala/template
diff --git a/srcpkgs/impala/template b/srcpkgs/impala/template
new file mode 100644
index 00000000000000..9d3e108c6b5592
--- /dev/null
+++ b/srcpkgs/impala/template
@@ -0,0 +1,17 @@
+# Template file for 'impala'
+pkgname=impala
+version=0.2.4
+revision=1
+build_style=cargo
+depends="iwd"
+short_desc="TUI for managing wifi on Linux"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="GPL-3.0-only"
+homepage="https://github.com/pythops/impala"
+changelog="https://raw.githubusercontent.com/pythops/impala/main/Release.md"
+distfiles="https://github.com/pythops/impala/archive/refs/tags/v${version}.tar.gz"
+checksum=550ce667588659af40ff2af6bddcca74fb1a990001ccba7cf16d3739717a70fc
+
+post_install() {
+ vdoc Readme.md
+}
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PR REVIEW] New package: impala-0.2.4
2025-06-16 0:30 [PR PATCH] New package: impala-0.2.4 jpnt
` (3 preceding siblings ...)
2025-06-16 0:53 ` [PR PATCH] [Updated] " jpnt
@ 2025-06-16 1:03 ` Duncaen
2025-06-16 1:03 ` Duncaen
2025-06-16 1:05 ` [PR PATCH] [Merged]: " Duncaen
6 siblings, 0 replies; 9+ messages in thread
From: Duncaen @ 2025-06-16 1:03 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 432 bytes --]
New review comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/55827#discussion_r2148895775
Comment:
xbps-src detects all linked libraries and generates depnedencies based on `common/shlibs` which records the minimum package version providing a specific shared library version.
https://github.com/void-linux/void-packages/actions/runs/15669332832/job/44137833547?pr=55827#step:7:434
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PR REVIEW] New package: impala-0.2.4
2025-06-16 0:30 [PR PATCH] New package: impala-0.2.4 jpnt
` (4 preceding siblings ...)
2025-06-16 1:03 ` [PR REVIEW] " Duncaen
@ 2025-06-16 1:03 ` Duncaen
2025-06-16 1:05 ` [PR PATCH] [Merged]: " Duncaen
6 siblings, 0 replies; 9+ messages in thread
From: Duncaen @ 2025-06-16 1:03 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 432 bytes --]
New review comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/55827#discussion_r2148895775
Comment:
xbps-src detects all linked libraries and generates dependencies based on `common/shlibs` which records the minimum package version providing a specific shared library version.
https://github.com/void-linux/void-packages/actions/runs/15669332832/job/44137833547?pr=55827#step:7:434
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PR PATCH] [Merged]: New package: impala-0.2.4
2025-06-16 0:30 [PR PATCH] New package: impala-0.2.4 jpnt
` (5 preceding siblings ...)
2025-06-16 1:03 ` Duncaen
@ 2025-06-16 1:05 ` Duncaen
6 siblings, 0 replies; 9+ messages in thread
From: Duncaen @ 2025-06-16 1:05 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 626 bytes --]
There's a merged pull request on the void-packages repository
New package: impala-0.2.4
https://github.com/void-linux/void-packages/pull/55827
Description:
#### 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-glibc)
- I built this PR locally for these architectures (all crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PR PATCH] New package: impala-0.2.4
@ 2025-01-24 16:31 elbachir-one
0 siblings, 0 replies; 9+ messages in thread
From: elbachir-one @ 2025-01-24 16:31 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1243 bytes --]
There is a new pull request by elbachir-one against master on the void-packages repository
https://github.com/elbachir-one/void-packages impala
https://github.com/void-linux/void-packages/pull/54094
New package: impala-0.2.4
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### Testing the changes
- I tested the changes in this PR: **briefly**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
Closes: #54092
A patch file from https://github.com/void-linux/void-packages/pull/54094.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-impala-54094.patch --]
[-- Type: text/x-diff, Size: 969 bytes --]
From 95690ad3ca401ab2d8103667ada69a4662fdc8cd Mon Sep 17 00:00:00 2001
From: elbachir-one <bachiralfa@gmail.com>
Date: Fri, 24 Jan 2025 17:28:20 +0100
Subject: [PATCH] New package: impala-0.2.4
---
srcpkgs/impala/template | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 srcpkgs/impala/template
diff --git a/srcpkgs/impala/template b/srcpkgs/impala/template
new file mode 100644
index 00000000000000..8710b7272ce5b7
--- /dev/null
+++ b/srcpkgs/impala/template
@@ -0,0 +1,13 @@
+# Template file for 'impala'
+pkgname=impala
+version=0.2.4
+revision=1
+build_style=cargo
+hostmakedepends="pkg-config"
+depends="iwd"
+short_desc="TUI for managing wifi on Linux"
+maintainer="elbachir-one <bachiralfa@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/pythops/impala"
+distfiles="https://github.com/pythops/impala/archive/refs/tags/v${version}.tar.gz"
+checksum=550ce667588659af40ff2af6bddcca74fb1a990001ccba7cf16d3739717a70fc
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-06-16 1:05 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-06-16 0:30 [PR PATCH] New package: impala-0.2.4 jpnt
2025-06-16 0:41 ` [PR REVIEW] " Duncaen
2025-06-16 0:41 ` Duncaen
2025-06-16 0:45 ` jpnt
2025-06-16 0:53 ` [PR PATCH] [Updated] " jpnt
2025-06-16 1:03 ` [PR REVIEW] " Duncaen
2025-06-16 1:03 ` Duncaen
2025-06-16 1:05 ` [PR PATCH] [Merged]: " Duncaen
-- strict thread matches above, loose matches on Subject: below --
2025-01-24 16:31 [PR PATCH] " elbachir-one
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).