Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] ssh-audit: update to 2.3.1
@ 2020-10-29  9:49 PaperMountainStudio
  2020-10-29  9:57 ` [PR PATCH] [Updated] " PaperMountainStudio
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: PaperMountainStudio @ 2020-10-29  9:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/PaperMountainStudio/void-packages 0001-ssh-audit-update-to-2.3.1.patch
https://github.com/void-linux/void-packages/pull/25963

ssh-audit: update to 2.3.1


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-0001-ssh-audit-update-to-2.3.1.patch-25963.patch --]
[-- Type: text/x-diff, Size: 1238 bytes --]

From e092651b9bf8a9ecff9c3754d9c088466493e65e Mon Sep 17 00:00:00 2001
From: Paper <paper@tilde.institute>
Date: Thu, 29 Oct 2020 10:49:06 +0100
Subject: [PATCH] ssh-audit: update to 2.3.1

---
 srcpkgs/ssh-audit/template | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/ssh-audit/template b/srcpkgs/ssh-audit/template
index aab2e5e46e7..019e718eb13 100644
--- a/srcpkgs/ssh-audit/template
+++ b/srcpkgs/ssh-audit/template
@@ -1,16 +1,22 @@
 # Template file for 'ssh-audit'
 pkgname=ssh-audit
-version=2.3.0
-revision=2
-depends="python3"
+version=2.3.1
+revision=1
+build_style="python3-module"
+hostmakedepends="python3-setuptools"
+checkdepends="python3-pytest"
 short_desc="SSH server & client auditing"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
 license="MIT"
 homepage="https://github.com/jtesta/ssh-audit"
 distfiles="https://github.com/jtesta/ssh-audit/archive/v${version}.tar.gz"
-checksum=776547591e7b69a2a8dcd1eaaac5d38321f2cb4a5de5f8e5a3e135b33236e812
+checksum=3d81c2620f53e7e0fe359e94524f28b58d53aa4e77292e2c9c555e174993d314
 python_version=3
 
+do_check() {
+	PYTHONPATH=build/lib python3 -m pytest
+}
+
 do_install() {
 	vbin ssh-audit.py ssh-audit
 	vlicense LICENSE

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

* Re: [PR PATCH] [Updated] ssh-audit: update to 2.3.1
  2020-10-29  9:49 [PR PATCH] ssh-audit: update to 2.3.1 PaperMountainStudio
@ 2020-10-29  9:57 ` PaperMountainStudio
  2020-10-29 10:00 ` PaperMountainStudio
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: PaperMountainStudio @ 2020-10-29  9:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/PaperMountainStudio/void-packages 0001-ssh-audit-update-to-2.3.1.patch
https://github.com/void-linux/void-packages/pull/25963

ssh-audit: update to 2.3.1


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-0001-ssh-audit-update-to-2.3.1.patch-25963.patch --]
[-- Type: text/x-diff, Size: 1335 bytes --]

From 85242f1ab2d9556d9ca62708aac9b6fca4ff2ee5 Mon Sep 17 00:00:00 2001
From: Paper <paper@tilde.institute>
Date: Thu, 29 Oct 2020 10:49:06 +0100
Subject: [PATCH] ssh-audit: update to 2.3.1

---
 srcpkgs/ssh-audit/template | 20 +++++++++++++-------
 1 file changed, 13 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/ssh-audit/template b/srcpkgs/ssh-audit/template
index aab2e5e46e7..95378d474a0 100644
--- a/srcpkgs/ssh-audit/template
+++ b/srcpkgs/ssh-audit/template
@@ -1,18 +1,24 @@
 # Template file for 'ssh-audit'
 pkgname=ssh-audit
-version=2.3.0
-revision=2
-depends="python3"
+version=2.3.1
+revision=1
+build_style="python3-module"
+hostmakedepends="python3-setuptools"
+checkdepends="python3-pytest"
 short_desc="SSH server & client auditing"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
 license="MIT"
 homepage="https://github.com/jtesta/ssh-audit"
 distfiles="https://github.com/jtesta/ssh-audit/archive/v${version}.tar.gz"
-checksum=776547591e7b69a2a8dcd1eaaac5d38321f2cb4a5de5f8e5a3e135b33236e812
+checksum=3d81c2620f53e7e0fe359e94524f28b58d53aa4e77292e2c9c555e174993d314
 python_version=3
 
-do_install() {
-	vbin ssh-audit.py ssh-audit
+do_check() {
+	PYTHONPATH=build/lib python3 -m pytest
+}
+
+post_install() {
+	#vbin ssh-audit.py ssh-audit
 	vlicense LICENSE
-	vman ssh-audit.1
+	#vman ssh-audit.1
 }

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

* Re: [PR PATCH] [Updated] ssh-audit: update to 2.3.1
  2020-10-29  9:49 [PR PATCH] ssh-audit: update to 2.3.1 PaperMountainStudio
  2020-10-29  9:57 ` [PR PATCH] [Updated] " PaperMountainStudio
@ 2020-10-29 10:00 ` PaperMountainStudio
  2020-10-29 14:19 ` [PR REVIEW] " abenson
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: PaperMountainStudio @ 2020-10-29 10:00 UTC (permalink / raw)
  To: ml

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

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

https://github.com/PaperMountainStudio/void-packages 0001-ssh-audit-update-to-2.3.1.patch
https://github.com/void-linux/void-packages/pull/25963

ssh-audit: update to 2.3.1


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-0001-ssh-audit-update-to-2.3.1.patch-25963.patch --]
[-- Type: text/x-diff, Size: 1281 bytes --]

From 9dae689e0867fd5288e98e44430bbff00fd04b26 Mon Sep 17 00:00:00 2001
From: Paper <paper@tilde.institute>
Date: Thu, 29 Oct 2020 10:49:06 +0100
Subject: [PATCH] ssh-audit: update to 2.3.1

---
 srcpkgs/ssh-audit/template | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/ssh-audit/template b/srcpkgs/ssh-audit/template
index aab2e5e46e7..08305553515 100644
--- a/srcpkgs/ssh-audit/template
+++ b/srcpkgs/ssh-audit/template
@@ -1,18 +1,23 @@
 # Template file for 'ssh-audit'
 pkgname=ssh-audit
-version=2.3.0
-revision=2
-depends="python3"
+version=2.3.1
+revision=1
+build_style="python3-module"
+hostmakedepends="python3-setuptools"
+checkdepends="python3-pytest"
 short_desc="SSH server & client auditing"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
 license="MIT"
 homepage="https://github.com/jtesta/ssh-audit"
 distfiles="https://github.com/jtesta/ssh-audit/archive/v${version}.tar.gz"
-checksum=776547591e7b69a2a8dcd1eaaac5d38321f2cb4a5de5f8e5a3e135b33236e812
+checksum=3d81c2620f53e7e0fe359e94524f28b58d53aa4e77292e2c9c555e174993d314
 python_version=3
 
-do_install() {
-	vbin ssh-audit.py ssh-audit
+do_check() {
+	PYTHONPATH=build/lib python3 -m pytest
+}
+
+post_install() {
 	vlicense LICENSE
 	vman ssh-audit.1
 }

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

* Re: [PR REVIEW] ssh-audit: update to 2.3.1
  2020-10-29  9:49 [PR PATCH] ssh-audit: update to 2.3.1 PaperMountainStudio
  2020-10-29  9:57 ` [PR PATCH] [Updated] " PaperMountainStudio
  2020-10-29 10:00 ` PaperMountainStudio
@ 2020-10-29 14:19 ` abenson
  2020-10-29 14:33 ` [PR PATCH] [Updated] " PaperMountainStudio
  2020-10-29 14:46 ` [PR PATCH] [Closed]: " abenson
  4 siblings, 0 replies; 6+ messages in thread
From: abenson @ 2020-10-29 14:19 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/25963#discussion_r514294999

Comment:
Stiill need python3 in depends, that's not added by python3-module

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

* Re: [PR PATCH] [Updated] ssh-audit: update to 2.3.1
  2020-10-29  9:49 [PR PATCH] ssh-audit: update to 2.3.1 PaperMountainStudio
                   ` (2 preceding siblings ...)
  2020-10-29 14:19 ` [PR REVIEW] " abenson
@ 2020-10-29 14:33 ` PaperMountainStudio
  2020-10-29 14:46 ` [PR PATCH] [Closed]: " abenson
  4 siblings, 0 replies; 6+ messages in thread
From: PaperMountainStudio @ 2020-10-29 14:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/PaperMountainStudio/void-packages 0001-ssh-audit-update-to-2.3.1.patch
https://github.com/void-linux/void-packages/pull/25963

ssh-audit: update to 2.3.1


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-0001-ssh-audit-update-to-2.3.1.patch-25963.patch --]
[-- Type: text/x-diff, Size: 1280 bytes --]

From 4894be0df30125fc2a19af6117b9a740c40792d1 Mon Sep 17 00:00:00 2001
From: Paper <paper@tilde.institute>
Date: Thu, 29 Oct 2020 10:49:06 +0100
Subject: [PATCH] ssh-audit: update to 2.3.1

---
 srcpkgs/ssh-audit/template | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/ssh-audit/template b/srcpkgs/ssh-audit/template
index aab2e5e46e7..bfb8ec4466b 100644
--- a/srcpkgs/ssh-audit/template
+++ b/srcpkgs/ssh-audit/template
@@ -1,18 +1,24 @@
 # Template file for 'ssh-audit'
 pkgname=ssh-audit
-version=2.3.0
-revision=2
+version=2.3.1
+revision=1
+build_style="python3-module"
+hostmakedepends="python3-setuptools"
 depends="python3"
+checkdepends="python3-pytest"
 short_desc="SSH server & client auditing"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
 license="MIT"
 homepage="https://github.com/jtesta/ssh-audit"
 distfiles="https://github.com/jtesta/ssh-audit/archive/v${version}.tar.gz"
-checksum=776547591e7b69a2a8dcd1eaaac5d38321f2cb4a5de5f8e5a3e135b33236e812
+checksum=3d81c2620f53e7e0fe359e94524f28b58d53aa4e77292e2c9c555e174993d314
 python_version=3
 
-do_install() {
-	vbin ssh-audit.py ssh-audit
+do_check() {
+	PYTHONPATH=build/lib python3 -m pytest
+}
+
+post_install() {
 	vlicense LICENSE
 	vman ssh-audit.1
 }

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

* Re: [PR PATCH] [Closed]: ssh-audit: update to 2.3.1
  2020-10-29  9:49 [PR PATCH] ssh-audit: update to 2.3.1 PaperMountainStudio
                   ` (3 preceding siblings ...)
  2020-10-29 14:33 ` [PR PATCH] [Updated] " PaperMountainStudio
@ 2020-10-29 14:46 ` abenson
  4 siblings, 0 replies; 6+ messages in thread
From: abenson @ 2020-10-29 14:46 UTC (permalink / raw)
  To: ml

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

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

ssh-audit: update to 2.3.1
https://github.com/void-linux/void-packages/pull/25963

Description:


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

end of thread, other threads:[~2020-10-29 14:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-29  9:49 [PR PATCH] ssh-audit: update to 2.3.1 PaperMountainStudio
2020-10-29  9:57 ` [PR PATCH] [Updated] " PaperMountainStudio
2020-10-29 10:00 ` PaperMountainStudio
2020-10-29 14:19 ` [PR REVIEW] " abenson
2020-10-29 14:33 ` [PR PATCH] [Updated] " PaperMountainStudio
2020-10-29 14:46 ` [PR PATCH] [Closed]: " abenson

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