Github messages for voidlinux
 help / color / mirror / Atom feed
From: ufud-org <ufud-org@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: zssh
Date: Fri, 03 Mar 2023 18:07:53 +0100	[thread overview]
Message-ID: <20230303170753.GNAuYYe2tEGUZwP6f3Zhfkg79bpQnfxy__mQqBt58GI@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-42568@inbox.vuxu.org>

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

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

https://github.com/ufud-org/void-packages add-zssh
https://github.com/void-linux/void-packages/pull/42568

New package: zssh
#### 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)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl (cross-build)
  - armv6l (cross-build)
  - armv6l-musl (cross-build)
  - armv7l (cross-build)
  - armv7l-musl (cross-build)
  - aarch64 (cross-build)
  - aarch64-musl (cross-build)


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

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

From 517769a8013bcd5825379cffbfcd75e4aa699101 Mon Sep 17 00:00:00 2001
From: Niels Haedecke <webmaster@ufud.org>
Date: Fri, 3 Mar 2023 17:39:19 +0100
Subject: [PATCH 1/4] added zssh

---
 srcpkgs/zssh/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/zssh/template

diff --git a/srcpkgs/zssh/template b/srcpkgs/zssh/template
new file mode 100644
index 000000000000..84890facf75b
--- /dev/null
+++ b/srcpkgs/zssh/template
@@ -0,0 +1,23 @@
+# Template file for 'zssh'
+pkgname=zssh
+version=1.5c
+revision=1
+build_style=gnu-configure
+makedepends="readline-devel"
+depends="openssh inetutils-telnet lrzsz"
+short_desc="Zmodem aware telnet and ssh cli client"
+maintainer="Niels Haedecke <webmaster@ufud.org>"
+license="GPL-2.0-only"
+homepage="https://zssh.sourceforge.net/"
+distfiles="http://prdownloads.sf.net/zssh/zssh-${version}.tgz"
+checksum="a2e840f82590690d27ea1ea1141af509ee34681fede897e58ae8d354701ce71b"
+
+pre_build() {
+	rm -f ${XBPS_WRAPPERDIR}/strip
+}
+
+do_install() {
+	vmkdir usr/bin
+	vcopy zssh usr/bin/zssh
+	vcopy ztelnet usr/bin/ztelnet
+}

From afaae8c3b876728d805ad415055dbea99dd341ed Mon Sep 17 00:00:00 2001
From: Niels Haedecke <webmaster@ufud.org>
Date: Fri, 3 Mar 2023 17:57:40 +0100
Subject: [PATCH 2/4] fixed copy command and added missing vman command

---
 srcpkgs/zssh/template | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/zssh/template b/srcpkgs/zssh/template
index 84890facf75b..e260eb216efb 100644
--- a/srcpkgs/zssh/template
+++ b/srcpkgs/zssh/template
@@ -18,6 +18,8 @@ pre_build() {
 
 do_install() {
 	vmkdir usr/bin
-	vcopy zssh usr/bin/zssh
-	vcopy ztelnet usr/bin/ztelnet
+	vbin zssh
+	vbin ztelnet
+	vman zssh.1
+	vman ztelnet.1
 }

From 2980edf11e7059a4d5576074b5086aaf94cfaf89 Mon Sep 17 00:00:00 2001
From: Niels Haedecke <webmaster@ufud.org>
Date: Fri, 3 Mar 2023 18:03:29 +0100
Subject: [PATCH 3/4] removed pre_build()

---
 srcpkgs/zssh/template | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/srcpkgs/zssh/template b/srcpkgs/zssh/template
index e260eb216efb..14baf24a4c64 100644
--- a/srcpkgs/zssh/template
+++ b/srcpkgs/zssh/template
@@ -12,10 +12,6 @@ homepage="https://zssh.sourceforge.net/"
 distfiles="http://prdownloads.sf.net/zssh/zssh-${version}.tgz"
 checksum="a2e840f82590690d27ea1ea1141af509ee34681fede897e58ae8d354701ce71b"
 
-pre_build() {
-	rm -f ${XBPS_WRAPPERDIR}/strip
-}
-
 do_install() {
 	vmkdir usr/bin
 	vbin zssh

From 6c8023833abac41248eab704b2175950bbd9158a Mon Sep 17 00:00:00 2001
From: Niels Haedecke <webmaster@ufud.org>
Date: Fri, 3 Mar 2023 18:07:45 +0100
Subject: [PATCH 4/4] removed vmkdir

---
 srcpkgs/zssh/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/zssh/template b/srcpkgs/zssh/template
index 14baf24a4c64..cd3120e2f716 100644
--- a/srcpkgs/zssh/template
+++ b/srcpkgs/zssh/template
@@ -13,7 +13,6 @@ distfiles="http://prdownloads.sf.net/zssh/zssh-${version}.tgz"
 checksum="a2e840f82590690d27ea1ea1141af509ee34681fede897e58ae8d354701ce71b"
 
 do_install() {
-	vmkdir usr/bin
 	vbin zssh
 	vbin ztelnet
 	vman zssh.1

  parent reply	other threads:[~2023-03-03 17:07 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-03 16:41 [PR PATCH] added zssh ufud-org
2023-03-03 16:45 ` New package: zssh ufud-org
2023-03-03 16:46 ` [PR REVIEW] " classabbyamp
2023-03-03 16:46 ` classabbyamp
2023-03-03 16:53 ` ufud-org
2023-03-03 16:53 ` ufud-org
2023-03-03 16:55 ` classabbyamp
2023-03-03 16:55 ` ufud-org
2023-03-03 16:55 ` classabbyamp
2023-03-03 16:57 ` [PR PATCH] [Updated] " ufud-org
2023-03-03 17:03 ` [PR REVIEW] " ufud-org
2023-03-03 17:03 ` [PR PATCH] [Updated] " ufud-org
2023-03-03 17:07 ` ufud-org [this message]
2023-03-03 17:18 ` paper42
2023-03-03 17:20 ` ufud-org
2023-03-03 17:21 ` ufud-org
2023-03-03 17:24 ` ufud-org
2023-03-03 17:25 ` paper42
2023-03-03 17:31 ` ufud-org
2023-03-03 17:38 ` [PR REVIEW] " classabbyamp
2023-03-03 17:40 ` [PR PATCH] [Updated] " ufud-org
2023-03-03 17:41 ` [PR REVIEW] " ufud-org
2023-03-03 17:44 ` paper42
2023-03-03 17:45 ` paper42
2023-03-03 18:49 ` [PR PATCH] [Updated] " ufud-org
2023-03-03 18:50 ` [PR REVIEW] " ufud-org
2023-03-03 19:23 ` [PR PATCH] [Updated] " ufud-org
2023-03-03 19:28 ` [PR REVIEW] " ufud-org
2023-06-02  2:04 ` github-actions
2023-06-17  1:56 ` [PR PATCH] [Closed]: " github-actions
  -- strict thread matches above, loose matches on Subject: below --
2023-03-03 10:05 [PR PATCH] Add zssh ufud-org
2023-03-03 16:06 ` [PR PATCH] [Updated] New package: zssh ufud-org
2023-03-03 16:17 ` ufud-org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230303170753.GNAuYYe2tEGUZwP6f3Zhfkg79bpQnfxy__mQqBt58GI@z \
    --to=ufud-org@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).