* [PR PATCH] New package: netscanner-0.5.0
@ 2024-05-13 12:53 Bnyro
2024-05-13 15:27 ` [PR PATCH] [Updated] " Bnyro
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Bnyro @ 2024-05-13 12:53 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1080 bytes --]
There is a new pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages netscanner
https://github.com/void-linux/void-packages/pull/50310
New package: netscanner-0.5.0
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### 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**
<!-- 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, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/50310.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-netscanner-50310.patch --]
[-- Type: text/x-diff, Size: 1095 bytes --]
From 19fc5782f271c9511a6e15461bda92c6bd866ac1 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Mon, 13 May 2024 14:52:23 +0200
Subject: [PATCH] New package: netscanner-0.5.0
---
srcpkgs/netscanner/template | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
create mode 100644 srcpkgs/netscanner/template
diff --git a/srcpkgs/netscanner/template b/srcpkgs/netscanner/template
new file mode 100644
index 00000000000000..d37b1ed6618c5a
--- /dev/null
+++ b/srcpkgs/netscanner/template
@@ -0,0 +1,17 @@
+# Template file for 'netscanner'
+pkgname=netscanner
+version=0.5.0
+revision=1
+build_style=cargo
+depends="iw"
+short_desc="Network scanner & diagnostic tool with modern TUI "
+maintainer="Bnyro <bnyro@tutanota.com>"
+license="MIT"
+homepage="https://github.com/Chleba/netscanner"
+distfiles="https://github.com/Chleba/netscanner/archive/refs/tags/v${version}.tar.gz"
+checksum=b554e8b64e3f297dd4a8a1fefa75ef164082f9a11f8991add6db25ebf198d27c
+
+do_build() {
+ # this line can probably be removed with the next update
+ cargo build --release --target ${RUST_TARGET}
+}
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PR PATCH] [Updated] New package: netscanner-0.5.0
2024-05-13 12:53 [PR PATCH] New package: netscanner-0.5.0 Bnyro
@ 2024-05-13 15:27 ` Bnyro
2024-05-13 16:13 ` Bnyro
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Bnyro @ 2024-05-13 15:27 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]
There is an updated pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages netscanner
https://github.com/void-linux/void-packages/pull/50310
New package: netscanner-0.5.0
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### 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**
<!-- 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, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/50310.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-netscanner-50310.patch --]
[-- Type: text/x-diff, Size: 1141 bytes --]
From 9f67c9f0470a5f376e25b2f8354f331bf4cb6367 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Mon, 13 May 2024 14:52:23 +0200
Subject: [PATCH] New package: netscanner-0.5.0
---
srcpkgs/netscanner/template | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
create mode 100644 srcpkgs/netscanner/template
diff --git a/srcpkgs/netscanner/template b/srcpkgs/netscanner/template
new file mode 100644
index 00000000000000..73aded8c953d0d
--- /dev/null
+++ b/srcpkgs/netscanner/template
@@ -0,0 +1,21 @@
+# Template file for 'netscanner'
+pkgname=netscanner
+version=0.5.0
+revision=1
+build_style=cargo
+depends="iw"
+short_desc="Network scanner & diagnostic tool with modern TUI "
+maintainer="Bnyro <bnyro@tutanota.com>"
+license="MIT"
+homepage="https://github.com/Chleba/netscanner"
+distfiles="https://github.com/Chleba/netscanner/archive/refs/tags/v${version}.tar.gz"
+checksum=b554e8b64e3f297dd4a8a1fefa75ef164082f9a11f8991add6db25ebf198d27c
+
+do_build() {
+ # this line can probably be removed with the next update
+ cargo build --release --target ${RUST_TARGET}
+}
+
+post_install() {
+ vlicense LICENSE
+}
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PR PATCH] [Updated] New package: netscanner-0.5.0
2024-05-13 12:53 [PR PATCH] New package: netscanner-0.5.0 Bnyro
2024-05-13 15:27 ` [PR PATCH] [Updated] " Bnyro
@ 2024-05-13 16:13 ` Bnyro
2024-07-23 15:11 ` Bnyro
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Bnyro @ 2024-05-13 16:13 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]
There is an updated pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages netscanner
https://github.com/void-linux/void-packages/pull/50310
New package: netscanner-0.5.0
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### 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**
<!-- 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, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/50310.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-netscanner-50310.patch --]
[-- Type: text/x-diff, Size: 1140 bytes --]
From 9af14f35e72ef0ef9042c4562b88acdb4a1a0d0f Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Mon, 13 May 2024 14:52:23 +0200
Subject: [PATCH] New package: netscanner-0.5.0
---
srcpkgs/netscanner/template | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
create mode 100644 srcpkgs/netscanner/template
diff --git a/srcpkgs/netscanner/template b/srcpkgs/netscanner/template
new file mode 100644
index 00000000000000..979a8c3c7869c3
--- /dev/null
+++ b/srcpkgs/netscanner/template
@@ -0,0 +1,21 @@
+# Template file for 'netscanner'
+pkgname=netscanner
+version=0.5.0
+revision=1
+build_style=cargo
+depends="iw"
+short_desc="Network scanner & diagnostic tool with modern TUI"
+maintainer="Bnyro <bnyro@tutanota.com>"
+license="MIT"
+homepage="https://github.com/Chleba/netscanner"
+distfiles="https://github.com/Chleba/netscanner/archive/refs/tags/v${version}.tar.gz"
+checksum=b554e8b64e3f297dd4a8a1fefa75ef164082f9a11f8991add6db25ebf198d27c
+
+do_build() {
+ # this line can probably be removed with the next update
+ cargo build --release --target ${RUST_TARGET}
+}
+
+post_install() {
+ vlicense LICENSE
+}
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PR PATCH] [Updated] New package: netscanner-0.5.0
2024-05-13 12:53 [PR PATCH] New package: netscanner-0.5.0 Bnyro
2024-05-13 15:27 ` [PR PATCH] [Updated] " Bnyro
2024-05-13 16:13 ` Bnyro
@ 2024-07-23 15:11 ` Bnyro
2024-10-22 2:00 ` New package: netscanner-0.5.2 github-actions
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Bnyro @ 2024-07-23 15:11 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]
There is an updated pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages netscanner
https://github.com/void-linux/void-packages/pull/50310
New package: netscanner-0.5.0
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### 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**
<!-- 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, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/50310.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-netscanner-50310.patch --]
[-- Type: text/x-diff, Size: 1144 bytes --]
From 8364675c40684374f19d4897a2c22e736ef3eb12 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Mon, 13 May 2024 14:52:23 +0200
Subject: [PATCH] New package: netscanner-0.5.2
---
srcpkgs/netscanner/template | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
create mode 100644 srcpkgs/netscanner/template
diff --git a/srcpkgs/netscanner/template b/srcpkgs/netscanner/template
new file mode 100644
index 00000000000000..9f4c73cd99029e
--- /dev/null
+++ b/srcpkgs/netscanner/template
@@ -0,0 +1,18 @@
+# Template file for 'netscanner'
+pkgname=netscanner
+version=0.5.2
+revision=1
+build_style=cargo
+depends="iw"
+short_desc="Network scanner & diagnostic tool with modern TUI"
+maintainer="Bnyro <bnyro@tutanota.com>"
+license="MIT"
+homepage="https://github.com/Chleba/netscanner"
+changelog="https://raw.githubusercontent.com/Chleba/netscanner/main/debian/changelog"
+distfiles="https://github.com/Chleba/netscanner/archive/refs/tags/v${version}.tar.gz"
+checksum=d1fdd21878cc929239d39506b8528e0967c6732dea8682f064f13846b2f364b4
+
+post_install() {
+ vman debian/netscanner.manpage netscanner.1
+ vlicense LICENSE
+}
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: New package: netscanner-0.5.2
2024-05-13 12:53 [PR PATCH] New package: netscanner-0.5.0 Bnyro
` (2 preceding siblings ...)
2024-07-23 15:11 ` Bnyro
@ 2024-10-22 2:00 ` github-actions
2024-10-22 8:41 ` Bnyro
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: github-actions @ 2024-10-22 2:00 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/50310#issuecomment-2428055612
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] 8+ messages in thread
* Re: New package: netscanner-0.5.2
2024-05-13 12:53 [PR PATCH] New package: netscanner-0.5.0 Bnyro
` (3 preceding siblings ...)
2024-10-22 2:00 ` New package: netscanner-0.5.2 github-actions
@ 2024-10-22 8:41 ` Bnyro
2024-11-25 15:01 ` [PR PATCH] [Updated] " Bnyro
2024-11-25 15:02 ` [PR PATCH] [Updated] New package: netscanner-0.6.0 Bnyro
6 siblings, 0 replies; 8+ messages in thread
From: Bnyro @ 2024-10-22 8:41 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 144 bytes --]
New comment by Bnyro on void-packages repository
https://github.com/void-linux/void-packages/pull/50310#issuecomment-2428642453
Comment:
bump
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PR PATCH] [Updated] New package: netscanner-0.5.2
2024-05-13 12:53 [PR PATCH] New package: netscanner-0.5.0 Bnyro
` (4 preceding siblings ...)
2024-10-22 8:41 ` Bnyro
@ 2024-11-25 15:01 ` Bnyro
2024-11-25 15:02 ` [PR PATCH] [Updated] New package: netscanner-0.6.0 Bnyro
6 siblings, 0 replies; 8+ messages in thread
From: Bnyro @ 2024-11-25 15:01 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]
There is an updated pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages netscanner
https://github.com/void-linux/void-packages/pull/50310
New package: netscanner-0.5.2
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### 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**
<!-- 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, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/50310.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-netscanner-50310.patch --]
[-- Type: text/x-diff, Size: 1144 bytes --]
From 62a46733e7ac8117e6536ff5509d9d96166b64b8 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Mon, 13 May 2024 14:52:23 +0200
Subject: [PATCH] New package: netscanner-0.5.2
---
srcpkgs/netscanner/template | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
create mode 100644 srcpkgs/netscanner/template
diff --git a/srcpkgs/netscanner/template b/srcpkgs/netscanner/template
new file mode 100644
index 00000000000000..87db8cb221b4ad
--- /dev/null
+++ b/srcpkgs/netscanner/template
@@ -0,0 +1,18 @@
+# Template file for 'netscanner'
+pkgname=netscanner
+version=0.6.0
+revision=1
+build_style=cargo
+depends="iw"
+short_desc="Network scanner & diagnostic tool with modern TUI"
+maintainer="Bnyro <bnyro@tutanota.com>"
+license="MIT"
+homepage="https://github.com/Chleba/netscanner"
+changelog="https://raw.githubusercontent.com/Chleba/netscanner/main/debian/changelog"
+distfiles="https://github.com/Chleba/netscanner/archive/refs/tags/v${version}.tar.gz"
+checksum=337d646aeedcd84c9edcb9e2d63c17601f7bd56b974675f20b90f55ce7f7a847
+
+post_install() {
+ vman debian/netscanner.manpage netscanner.1
+ vlicense LICENSE
+}
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PR PATCH] [Updated] New package: netscanner-0.6.0
2024-05-13 12:53 [PR PATCH] New package: netscanner-0.5.0 Bnyro
` (5 preceding siblings ...)
2024-11-25 15:01 ` [PR PATCH] [Updated] " Bnyro
@ 2024-11-25 15:02 ` Bnyro
6 siblings, 0 replies; 8+ messages in thread
From: Bnyro @ 2024-11-25 15:02 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]
There is an updated pull request by Bnyro against master on the void-packages repository
https://github.com/Bnyro/void-packages netscanner
https://github.com/void-linux/void-packages/pull/50310
New package: netscanner-0.6.0
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### 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**
<!-- 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, x86_64-glibc
A patch file from https://github.com/void-linux/void-packages/pull/50310.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-netscanner-50310.patch --]
[-- Type: text/x-diff, Size: 1144 bytes --]
From 6b511bf5a4f58ecbdbfb4b6b788b3a9443650076 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Mon, 13 May 2024 14:52:23 +0200
Subject: [PATCH] New package: netscanner-0.6.0
---
srcpkgs/netscanner/template | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
create mode 100644 srcpkgs/netscanner/template
diff --git a/srcpkgs/netscanner/template b/srcpkgs/netscanner/template
new file mode 100644
index 00000000000000..87db8cb221b4ad
--- /dev/null
+++ b/srcpkgs/netscanner/template
@@ -0,0 +1,18 @@
+# Template file for 'netscanner'
+pkgname=netscanner
+version=0.6.0
+revision=1
+build_style=cargo
+depends="iw"
+short_desc="Network scanner & diagnostic tool with modern TUI"
+maintainer="Bnyro <bnyro@tutanota.com>"
+license="MIT"
+homepage="https://github.com/Chleba/netscanner"
+changelog="https://raw.githubusercontent.com/Chleba/netscanner/main/debian/changelog"
+distfiles="https://github.com/Chleba/netscanner/archive/refs/tags/v${version}.tar.gz"
+checksum=337d646aeedcd84c9edcb9e2d63c17601f7bd56b974675f20b90f55ce7f7a847
+
+post_install() {
+ vman debian/netscanner.manpage netscanner.1
+ vlicense LICENSE
+}
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-11-25 15:02 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-13 12:53 [PR PATCH] New package: netscanner-0.5.0 Bnyro
2024-05-13 15:27 ` [PR PATCH] [Updated] " Bnyro
2024-05-13 16:13 ` Bnyro
2024-07-23 15:11 ` Bnyro
2024-10-22 2:00 ` New package: netscanner-0.5.2 github-actions
2024-10-22 8:41 ` Bnyro
2024-11-25 15:01 ` [PR PATCH] [Updated] " Bnyro
2024-11-25 15:02 ` [PR PATCH] [Updated] New package: netscanner-0.6.0 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).