Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: ssh-tools-1.6
@ 2021-07-31 19:46 vaporup
  2021-08-09 21:47 ` [PR REVIEW] " abenson
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: vaporup @ 2021-07-31 19:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/vaporup/void-packages master
https://github.com/void-linux/void-packages/pull/32275

New package: ssh-tools-1.6

#### General

- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?

- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 

- [x] 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



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

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

From 7b2ef65840a1c825b9eb1d267417691a574c03b7 Mon Sep 17 00:00:00 2001
From: Sven Wick <sven.wick@gmx.de>
Date: Sat, 31 Jul 2021 21:41:08 +0200
Subject: [PATCH] New package: ssh-tools-1.6

---
 srcpkgs/ssh-tools/template | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 srcpkgs/ssh-tools/template

diff --git a/srcpkgs/ssh-tools/template b/srcpkgs/ssh-tools/template
new file mode 100644
index 000000000000..9bace4815454
--- /dev/null
+++ b/srcpkgs/ssh-tools/template
@@ -0,0 +1,36 @@
+# Template file for 'ssh-tools'
+pkgname=ssh-tools
+version=1.6
+revision=1
+makedepends="help2man"
+depends="openssh colordiff"
+short_desc="Collection of various tools using ssh"
+maintainer="Sven Wick <sven.wick@gmx.de>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/vaporup/ssh-tools/"
+distfiles="https://github.com/vaporup/${pkgname}/archive/v${version}.tar.gz"
+checksum=5f6618894108a3f0b240ae908c3465430456e99fe1048cc0a589f1b8cfbbf6e4
+
+do_build() {
+
+	mkdir -p ${XBPS_BUILDDIR}/man
+
+	help2man -n "check if host is reachable using ssh_config"           -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-ping.1        ./ssh-ping
+	help2man -n "shows version of the SSH server you are connecting to" -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-version.1     ./ssh-version
+	help2man -n "diff a file over SSH"                                  -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-diff.1        ./ssh-diff
+	help2man -n "get some facts about the remote system"                -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-facts.1       ./ssh-facts
+	help2man -n "prints server host keys in several formats"            -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-hostkeys.1    ./ssh-hostkeys
+	help2man -n "shows validity and information of SSH certificates"    -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-certinfo.1    ./ssh-certinfo
+	help2man -n "prints keys in several formats"                        -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-keyinfo.1     ./ssh-keyinfo
+
+}
+
+pre_install() {
+	vmkdir usr/bin
+	vmkdir usr/share/man/man1
+}
+
+do_install() {
+	vcopy "ssh-*" usr/bin
+	vcopy "${XBPS_BUILDDIR}/man/ssh-*" usr/share/man/man1
+}

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

* Re: [PR REVIEW] New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
@ 2021-08-09 21:47 ` abenson
  2021-08-10 13:57 ` vaporup
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: abenson @ 2021-08-09 21:47 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/32275#discussion_r685543433

Comment:
hostmakedepends

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

* Re: [PR REVIEW] New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
  2021-08-09 21:47 ` [PR REVIEW] " abenson
@ 2021-08-10 13:57 ` vaporup
  2021-08-10 14:05 ` ericonr
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: vaporup @ 2021-08-10 13:57 UTC (permalink / raw)
  To: ml

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

New review comment by vaporup on void-packages repository

https://github.com/void-linux/void-packages/pull/32275#discussion_r686045333

Comment:
adding hostmakedepends or replacing makedepends with hostmakedepends? 

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

* Re: [PR REVIEW] New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
  2021-08-09 21:47 ` [PR REVIEW] " abenson
  2021-08-10 13:57 ` vaporup
@ 2021-08-10 14:05 ` ericonr
  2021-08-10 19:14 ` Chocimier
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ericonr @ 2021-08-10 14:05 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32275#discussion_r686053454

Comment:
help2man should be hostmakedepends

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

* Re: [PR REVIEW] New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
                   ` (2 preceding siblings ...)
  2021-08-10 14:05 ` ericonr
@ 2021-08-10 19:14 ` Chocimier
  2021-08-10 22:19 ` vaporup
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Chocimier @ 2021-08-10 19:14 UTC (permalink / raw)
  To: ml

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

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/32275#discussion_r686252354

Comment:
help2man is a problem for cross build, we usually omit it everywhere, as help is already there

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

* Re: [PR REVIEW] New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
                   ` (3 preceding siblings ...)
  2021-08-10 19:14 ` Chocimier
@ 2021-08-10 22:19 ` vaporup
  2021-08-11  1:40 ` ericonr
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: vaporup @ 2021-08-10 22:19 UTC (permalink / raw)
  To: ml

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

New review comment by vaporup on void-packages repository

https://github.com/void-linux/void-packages/pull/32275#discussion_r686358758

Comment:
So I can drop makedepends and the manpage build steps completely?

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

* Re: [PR REVIEW] New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
                   ` (4 preceding siblings ...)
  2021-08-10 22:19 ` vaporup
@ 2021-08-11  1:40 ` ericonr
  2021-08-13 18:40 ` [PR PATCH] [Updated] " vaporup
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ericonr @ 2021-08-11  1:40 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32275#discussion_r686430504

Comment:
Since you are calling it manually in this case, definitely.

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

* Re: [PR PATCH] [Updated] New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
                   ` (5 preceding siblings ...)
  2021-08-11  1:40 ` ericonr
@ 2021-08-13 18:40 ` vaporup
  2021-08-13 18:44 ` vaporup
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: vaporup @ 2021-08-13 18:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/vaporup/void-packages master
https://github.com/void-linux/void-packages/pull/32275

New package: ssh-tools-1.6
#### General

- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?

- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 

- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl



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

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

From 7b2ef65840a1c825b9eb1d267417691a574c03b7 Mon Sep 17 00:00:00 2001
From: Sven Wick <sven.wick@gmx.de>
Date: Sat, 31 Jul 2021 21:41:08 +0200
Subject: [PATCH] New package: ssh-tools-1.6

---
 srcpkgs/ssh-tools/template | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 srcpkgs/ssh-tools/template

diff --git a/srcpkgs/ssh-tools/template b/srcpkgs/ssh-tools/template
new file mode 100644
index 000000000000..9bace4815454
--- /dev/null
+++ b/srcpkgs/ssh-tools/template
@@ -0,0 +1,36 @@
+# Template file for 'ssh-tools'
+pkgname=ssh-tools
+version=1.6
+revision=1
+makedepends="help2man"
+depends="openssh colordiff"
+short_desc="Collection of various tools using ssh"
+maintainer="Sven Wick <sven.wick@gmx.de>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/vaporup/ssh-tools/"
+distfiles="https://github.com/vaporup/${pkgname}/archive/v${version}.tar.gz"
+checksum=5f6618894108a3f0b240ae908c3465430456e99fe1048cc0a589f1b8cfbbf6e4
+
+do_build() {
+
+	mkdir -p ${XBPS_BUILDDIR}/man
+
+	help2man -n "check if host is reachable using ssh_config"           -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-ping.1        ./ssh-ping
+	help2man -n "shows version of the SSH server you are connecting to" -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-version.1     ./ssh-version
+	help2man -n "diff a file over SSH"                                  -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-diff.1        ./ssh-diff
+	help2man -n "get some facts about the remote system"                -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-facts.1       ./ssh-facts
+	help2man -n "prints server host keys in several formats"            -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-hostkeys.1    ./ssh-hostkeys
+	help2man -n "shows validity and information of SSH certificates"    -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-certinfo.1    ./ssh-certinfo
+	help2man -n "prints keys in several formats"                        -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-keyinfo.1     ./ssh-keyinfo
+
+}
+
+pre_install() {
+	vmkdir usr/bin
+	vmkdir usr/share/man/man1
+}
+
+do_install() {
+	vcopy "ssh-*" usr/bin
+	vcopy "${XBPS_BUILDDIR}/man/ssh-*" usr/share/man/man1
+}

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

* Re: [PR PATCH] [Updated] New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
                   ` (6 preceding siblings ...)
  2021-08-13 18:40 ` [PR PATCH] [Updated] " vaporup
@ 2021-08-13 18:44 ` vaporup
  2021-08-13 18:56 ` vaporup
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: vaporup @ 2021-08-13 18:44 UTC (permalink / raw)
  To: ml

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

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

https://github.com/vaporup/void-packages master
https://github.com/void-linux/void-packages/pull/32275

New package: ssh-tools-1.6
#### General

- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?

- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 

- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl



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

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

From 7b2ef65840a1c825b9eb1d267417691a574c03b7 Mon Sep 17 00:00:00 2001
From: Sven Wick <sven.wick@gmx.de>
Date: Sat, 31 Jul 2021 21:41:08 +0200
Subject: [PATCH 1/2] New package: ssh-tools-1.6

---
 srcpkgs/ssh-tools/template | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 srcpkgs/ssh-tools/template

diff --git a/srcpkgs/ssh-tools/template b/srcpkgs/ssh-tools/template
new file mode 100644
index 000000000000..9bace4815454
--- /dev/null
+++ b/srcpkgs/ssh-tools/template
@@ -0,0 +1,36 @@
+# Template file for 'ssh-tools'
+pkgname=ssh-tools
+version=1.6
+revision=1
+makedepends="help2man"
+depends="openssh colordiff"
+short_desc="Collection of various tools using ssh"
+maintainer="Sven Wick <sven.wick@gmx.de>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/vaporup/ssh-tools/"
+distfiles="https://github.com/vaporup/${pkgname}/archive/v${version}.tar.gz"
+checksum=5f6618894108a3f0b240ae908c3465430456e99fe1048cc0a589f1b8cfbbf6e4
+
+do_build() {
+
+	mkdir -p ${XBPS_BUILDDIR}/man
+
+	help2man -n "check if host is reachable using ssh_config"           -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-ping.1        ./ssh-ping
+	help2man -n "shows version of the SSH server you are connecting to" -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-version.1     ./ssh-version
+	help2man -n "diff a file over SSH"                                  -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-diff.1        ./ssh-diff
+	help2man -n "get some facts about the remote system"                -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-facts.1       ./ssh-facts
+	help2man -n "prints server host keys in several formats"            -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-hostkeys.1    ./ssh-hostkeys
+	help2man -n "shows validity and information of SSH certificates"    -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-certinfo.1    ./ssh-certinfo
+	help2man -n "prints keys in several formats"                        -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-keyinfo.1     ./ssh-keyinfo
+
+}
+
+pre_install() {
+	vmkdir usr/bin
+	vmkdir usr/share/man/man1
+}
+
+do_install() {
+	vcopy "ssh-*" usr/bin
+	vcopy "${XBPS_BUILDDIR}/man/ssh-*" usr/share/man/man1
+}

From 3fb57aaaa2cd290a0885bb364ad6f00bda7d518c Mon Sep 17 00:00:00 2001
From: Sven Wick <sven.wick@gmx.de>
Date: Fri, 13 Aug 2021 20:42:13 +0200
Subject: [PATCH 2/2] Remove trailing slash

---
 srcpkgs/ssh-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ssh-tools/template b/srcpkgs/ssh-tools/template
index 9bace4815454..372f8fc96dc7 100644
--- a/srcpkgs/ssh-tools/template
+++ b/srcpkgs/ssh-tools/template
@@ -7,7 +7,7 @@ depends="openssh colordiff"
 short_desc="Collection of various tools using ssh"
 maintainer="Sven Wick <sven.wick@gmx.de>"
 license="GPL-3.0-or-later"
-homepage="https://github.com/vaporup/ssh-tools/"
+homepage="https://github.com/vaporup/ssh-tools"
 distfiles="https://github.com/vaporup/${pkgname}/archive/v${version}.tar.gz"
 checksum=5f6618894108a3f0b240ae908c3465430456e99fe1048cc0a589f1b8cfbbf6e4
 

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

* Re: [PR PATCH] [Updated] New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
                   ` (7 preceding siblings ...)
  2021-08-13 18:44 ` vaporup
@ 2021-08-13 18:56 ` vaporup
  2021-08-13 18:57 ` [PR REVIEW] " vaporup
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: vaporup @ 2021-08-13 18:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/vaporup/void-packages master
https://github.com/void-linux/void-packages/pull/32275

New package: ssh-tools-1.6
#### General

- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?

- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 

- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl



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

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

From 7b2ef65840a1c825b9eb1d267417691a574c03b7 Mon Sep 17 00:00:00 2001
From: Sven Wick <sven.wick@gmx.de>
Date: Sat, 31 Jul 2021 21:41:08 +0200
Subject: [PATCH 1/3] New package: ssh-tools-1.6

---
 srcpkgs/ssh-tools/template | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 srcpkgs/ssh-tools/template

diff --git a/srcpkgs/ssh-tools/template b/srcpkgs/ssh-tools/template
new file mode 100644
index 000000000000..9bace4815454
--- /dev/null
+++ b/srcpkgs/ssh-tools/template
@@ -0,0 +1,36 @@
+# Template file for 'ssh-tools'
+pkgname=ssh-tools
+version=1.6
+revision=1
+makedepends="help2man"
+depends="openssh colordiff"
+short_desc="Collection of various tools using ssh"
+maintainer="Sven Wick <sven.wick@gmx.de>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/vaporup/ssh-tools/"
+distfiles="https://github.com/vaporup/${pkgname}/archive/v${version}.tar.gz"
+checksum=5f6618894108a3f0b240ae908c3465430456e99fe1048cc0a589f1b8cfbbf6e4
+
+do_build() {
+
+	mkdir -p ${XBPS_BUILDDIR}/man
+
+	help2man -n "check if host is reachable using ssh_config"           -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-ping.1        ./ssh-ping
+	help2man -n "shows version of the SSH server you are connecting to" -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-version.1     ./ssh-version
+	help2man -n "diff a file over SSH"                                  -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-diff.1        ./ssh-diff
+	help2man -n "get some facts about the remote system"                -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-facts.1       ./ssh-facts
+	help2man -n "prints server host keys in several formats"            -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-hostkeys.1    ./ssh-hostkeys
+	help2man -n "shows validity and information of SSH certificates"    -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-certinfo.1    ./ssh-certinfo
+	help2man -n "prints keys in several formats"                        -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-keyinfo.1     ./ssh-keyinfo
+
+}
+
+pre_install() {
+	vmkdir usr/bin
+	vmkdir usr/share/man/man1
+}
+
+do_install() {
+	vcopy "ssh-*" usr/bin
+	vcopy "${XBPS_BUILDDIR}/man/ssh-*" usr/share/man/man1
+}

From 3fb57aaaa2cd290a0885bb364ad6f00bda7d518c Mon Sep 17 00:00:00 2001
From: Sven Wick <sven.wick@gmx.de>
Date: Fri, 13 Aug 2021 20:42:13 +0200
Subject: [PATCH 2/3] Remove trailing slash

---
 srcpkgs/ssh-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ssh-tools/template b/srcpkgs/ssh-tools/template
index 9bace4815454..372f8fc96dc7 100644
--- a/srcpkgs/ssh-tools/template
+++ b/srcpkgs/ssh-tools/template
@@ -7,7 +7,7 @@ depends="openssh colordiff"
 short_desc="Collection of various tools using ssh"
 maintainer="Sven Wick <sven.wick@gmx.de>"
 license="GPL-3.0-or-later"
-homepage="https://github.com/vaporup/ssh-tools/"
+homepage="https://github.com/vaporup/ssh-tools"
 distfiles="https://github.com/vaporup/${pkgname}/archive/v${version}.tar.gz"
 checksum=5f6618894108a3f0b240ae908c3465430456e99fe1048cc0a589f1b8cfbbf6e4
 

From 77b2a278c7639a93699cfafebcc5cec1b8212a27 Mon Sep 17 00:00:00 2001
From: Sven Wick <sven.wick@gmx.de>
Date: Fri, 13 Aug 2021 20:56:12 +0200
Subject: [PATCH 3/3] Remove help2man including manpage build

---
 srcpkgs/ssh-tools/template | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git a/srcpkgs/ssh-tools/template b/srcpkgs/ssh-tools/template
index 372f8fc96dc7..7ccb7847e0e6 100644
--- a/srcpkgs/ssh-tools/template
+++ b/srcpkgs/ssh-tools/template
@@ -2,7 +2,6 @@
 pkgname=ssh-tools
 version=1.6
 revision=1
-makedepends="help2man"
 depends="openssh colordiff"
 short_desc="Collection of various tools using ssh"
 maintainer="Sven Wick <sven.wick@gmx.de>"
@@ -11,26 +10,10 @@ homepage="https://github.com/vaporup/ssh-tools"
 distfiles="https://github.com/vaporup/${pkgname}/archive/v${version}.tar.gz"
 checksum=5f6618894108a3f0b240ae908c3465430456e99fe1048cc0a589f1b8cfbbf6e4
 
-do_build() {
-
-	mkdir -p ${XBPS_BUILDDIR}/man
-
-	help2man -n "check if host is reachable using ssh_config"           -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-ping.1        ./ssh-ping
-	help2man -n "shows version of the SSH server you are connecting to" -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-version.1     ./ssh-version
-	help2man -n "diff a file over SSH"                                  -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-diff.1        ./ssh-diff
-	help2man -n "get some facts about the remote system"                -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-facts.1       ./ssh-facts
-	help2man -n "prints server host keys in several formats"            -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-hostkeys.1    ./ssh-hostkeys
-	help2man -n "shows validity and information of SSH certificates"    -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-certinfo.1    ./ssh-certinfo
-	help2man -n "prints keys in several formats"                        -S SSH-TOOLS -N --version-string " " -o ${XBPS_BUILDDIR}/man/ssh-keyinfo.1     ./ssh-keyinfo
-
-}
-
 pre_install() {
 	vmkdir usr/bin
-	vmkdir usr/share/man/man1
 }
 
 do_install() {
 	vcopy "ssh-*" usr/bin
-	vcopy "${XBPS_BUILDDIR}/man/ssh-*" usr/share/man/man1
 }

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

* Re: [PR REVIEW] New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
                   ` (8 preceding siblings ...)
  2021-08-13 18:56 ` vaporup
@ 2021-08-13 18:57 ` vaporup
  2021-11-01 12:33 ` vaporup
  2021-11-01 12:33 ` [PR PATCH] [Closed]: " vaporup
  11 siblings, 0 replies; 13+ messages in thread
From: vaporup @ 2021-08-13 18:57 UTC (permalink / raw)
  To: ml

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

New review comment by vaporup on void-packages repository

https://github.com/void-linux/void-packages/pull/32275#discussion_r688720566

Comment:
done

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

* Re: New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
                   ` (9 preceding siblings ...)
  2021-08-13 18:57 ` [PR REVIEW] " vaporup
@ 2021-11-01 12:33 ` vaporup
  2021-11-01 12:33 ` [PR PATCH] [Closed]: " vaporup
  11 siblings, 0 replies; 13+ messages in thread
From: vaporup @ 2021-11-01 12:33 UTC (permalink / raw)
  To: ml

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

New comment by vaporup on void-packages repository

https://github.com/void-linux/void-packages/pull/32275#issuecomment-956195554

Comment:
New upstream release. But since this is still not merged and I have no idea why, closing it now.

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

* Re: [PR PATCH] [Closed]: New package: ssh-tools-1.6
  2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
                   ` (10 preceding siblings ...)
  2021-11-01 12:33 ` vaporup
@ 2021-11-01 12:33 ` vaporup
  11 siblings, 0 replies; 13+ messages in thread
From: vaporup @ 2021-11-01 12:33 UTC (permalink / raw)
  To: ml

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

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

New package: ssh-tools-1.6
https://github.com/void-linux/void-packages/pull/32275

Description:
#### General

- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?

- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 

- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl



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

end of thread, other threads:[~2021-11-01 12:33 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-31 19:46 [PR PATCH] New package: ssh-tools-1.6 vaporup
2021-08-09 21:47 ` [PR REVIEW] " abenson
2021-08-10 13:57 ` vaporup
2021-08-10 14:05 ` ericonr
2021-08-10 19:14 ` Chocimier
2021-08-10 22:19 ` vaporup
2021-08-11  1:40 ` ericonr
2021-08-13 18:40 ` [PR PATCH] [Updated] " vaporup
2021-08-13 18:44 ` vaporup
2021-08-13 18:56 ` vaporup
2021-08-13 18:57 ` [PR REVIEW] " vaporup
2021-11-01 12:33 ` vaporup
2021-11-01 12:33 ` [PR PATCH] [Closed]: " vaporup

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