[arch-commits] Commit in tmate/repos/community-x86_64 (3 files)

Christian Hesse eworm at archlinux.org
Thu Aug 1 09:02:54 UTC 2019


    Date: Thursday, August 1, 2019 @ 09:02:53
  Author: eworm
Revision: 496344

archrelease: copy trunk to community-x86_64

Added:
  tmate/repos/community-x86_64/PKGBUILD
    (from rev 496343, tmate/trunk/PKGBUILD)
Deleted:
  tmate/repos/community-x86_64/0001-libssh.patch
  tmate/repos/community-x86_64/PKGBUILD

-------------------+
 0001-libssh.patch |  103 ----------------------------------------------------
 PKGBUILD          |   70 +++++++++++++++--------------------
 2 files changed, 31 insertions(+), 142 deletions(-)

Deleted: 0001-libssh.patch
===================================================================
--- 0001-libssh.patch	2019-08-01 09:02:52 UTC (rev 496343)
+++ 0001-libssh.patch	2019-08-01 09:02:53 UTC (rev 496344)
@@ -1,103 +0,0 @@
-From 299c7c670c3d56ad6eaf73618dcf0c3c5d6fa2ec Mon Sep 17 00:00:00 2001
-From: Christian Hesse <mail at eworm.de>
-Date: Tue, 30 Jul 2019 08:15:59 +0200
-Subject: [PATCH 1/3] add new channel after authentication
-
-With libssh commit 8a885f0b ("channels: Add check if we are authenticated
-before we create a channel") connection fails if channel is added before
-successful authentication. So add the channel after authentication.
-
-Fixes #154
----
- tmate-ssh-client.c | 12 ++++++------
- 1 file changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/tmate-ssh-client.c b/tmate-ssh-client.c
-index 96da14c8..2a9afee0 100644
---- a/tmate-ssh-client.c
-+++ b/tmate-ssh-client.c
-@@ -241,12 +241,6 @@ static void on_ssh_client_event(struct tmate_ssh_client *client)
- 
- 		ssh_set_callbacks(session, &client->ssh_callbacks);
- 
--		client->channel = channel = ssh_channel_new(session);
--		if (!channel) {
--			tmate_fatal("cannot initialize");
--			return;
--		}
--
- 		ssh_set_blocking(session, 0);
- 		ssh_options_set(session, SSH_OPTIONS_HOST, client->server_ip);
- 		ssh_options_set(session, SSH_OPTIONS_LOG_VERBOSITY, &verbosity);
-@@ -370,6 +364,12 @@ static void on_ssh_client_event(struct tmate_ssh_client *client)
- 		case SSH_AUTH_SUCCESS:
- 			tmate_debug("Auth successful");
- 			client->state = SSH_OPEN_CHANNEL;
-+
-+			client->channel = channel = ssh_channel_new(session);
-+			if (!channel) {
-+				tmate_fatal("cannot initialize");
-+				return;
-+			}
- 			/* fall through */
- 		}
- 
-From e25ab3cc8bb4d42b137625b376d677707bc4fbe2 Mon Sep 17 00:00:00 2001
-From: Andreas Schneider <asn at cryptomilk.org>
-Date: Tue, 30 Jul 2019 14:48:37 +0200
-Subject: [PATCH 2/3] ssh-client: Add missing ecdsa keytypes of libssh 0.9
----
- tmate-ssh-client.c | 7 ++++++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/tmate-ssh-client.c b/tmate-ssh-client.c
-index 2a9afee0..943ebf49 100644
---- a/tmate-ssh-client.c
-+++ b/tmate-ssh-client.c
-@@ -218,7 +218,7 @@ static void on_ssh_client_event(struct tmate_ssh_client *client)
- {
- 	char *identity;
- 	ssh_key pubkey;
--	int key_type;
-+	enum ssh_keytypes_e key_type;
- 	unsigned char *hash;
- 	ssize_t hash_len;
- 	char *hash_str;
-@@ -304,6 +304,11 @@ static void on_ssh_client_event(struct tmate_ssh_client *client)
- 						"tmate-server-rsa-fingerprint");
- 			break;
- 		case SSH_KEYTYPE_ECDSA:
-+#if LIBSSH_VERSION_INT >= SSH_VERSION_INT(0, 9, 0)
-+		case SSH_KEYTYPE_ECDSA_P256:
-+		case SSH_KEYTYPE_ECDSA_P384:
-+		case SSH_KEYTYPE_ECDSA_P521:
-+#endif
- 			server_hash_str = options_get_string(global_options,
- 						"tmate-server-ecdsa-fingerprint");
- 			break;
-From 4e7caeb536629fc4ddc4d413ca867f754b1257c3 Mon Sep 17 00:00:00 2001
-From: Andreas Schneider <asn at cryptomilk.org>
-Date: Tue, 30 Jul 2019 15:37:35 +0200
-Subject: [PATCH 3/3] ssh-client: Use ssh_get_server_publickey() if possible
----
- tmate-ssh-client.c | 5 +++++
- 1 file changed, 5 insertions(+)
-
-diff --git a/tmate-ssh-client.c b/tmate-ssh-client.c
-index 943ebf49..c5fb4243 100644
---- a/tmate-ssh-client.c
-+++ b/tmate-ssh-client.c
-@@ -282,8 +282,13 @@ static void on_ssh_client_event(struct tmate_ssh_client *client)
- 		}
- 
- 	case SSH_AUTH_SERVER:
-+#if LIBSSH_VERSION_INT >= SSH_VERSION_INT(0, 9, 0)
-+		if (ssh_get_server_publickey(session, &pubkey) < 0)
-+			tmate_fatal("ssh_get_server_publickey");
-+#else
- 		if (ssh_get_publickey(session, &pubkey) < 0)
- 			tmate_fatal("ssh_get_publickey");
-+#endif
- 
- 		if (ssh_get_publickey_hash(pubkey, SSH_PUBLICKEY_HASH_SHA256,
- 					   &hash, &hash_len) < 0) {

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-08-01 09:02:52 UTC (rev 496343)
+++ PKGBUILD	2019-08-01 09:02:53 UTC (rev 496344)
@@ -1,39 +0,0 @@
-# Maintainer: Christian Hesse <mail at eworm.de>
-# Contributor: "Amhairghin" Oscar Garcia Amor
-# Contributors: bhushan, huma, adlaiff6, Invie, solarce
-
-pkgname=tmate
-pkgver=2.2.1
-pkgrel=4
-pkgdesc='Instant terminal sharing'
-arch=('x86_64')
-url='http://tmate.io/'
-license=('BSD')
-depends=('libevent' 'libssh' 'libutempter' 'msgpack-c')
-makedepends=('cmake' 'ruby')
-source=("https://github.com/tmate-io/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz"
-        '0001-libssh.patch')
-sha256sums=('d9c2ac59f42e65aac5f500f0548ea8056fd79c9c5285e5af324d833e2a84c305'
-            'f8399462312eec47b4dca34d14fc2550173556438d81fbb936896d5114008a06')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  patch -Np1 < ../0001-libssh.patch
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  install -D -m0644 COPYING ${pkgdir}/usr/share/licenses/tmate/COPYING
-}

Copied: tmate/repos/community-x86_64/PKGBUILD (from rev 496343, tmate/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-08-01 09:02:53 UTC (rev 496344)
@@ -0,0 +1,31 @@
+# Maintainer: Christian Hesse <mail at eworm.de>
+# Contributor: "Amhairghin" Oscar Garcia Amor
+# Contributors: bhushan, huma, adlaiff6, Invie, solarce
+
+pkgname=tmate
+pkgver=2.3.0
+pkgrel=1
+pkgdesc='Instant terminal sharing'
+arch=('x86_64')
+url='http://tmate.io/'
+license=('BSD')
+depends=('libevent' 'libssh' 'libutempter' 'msgpack-c')
+makedepends=('cmake' 'ruby')
+source=("https://github.com/tmate-io/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('f837514edbc19180d06b27713628466e68aba91654d748d6e65bfad308f5b00a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -D -m0644 COPYING ${pkgdir}/usr/share/licenses/tmate/COPYING
+}



More information about the arch-commits mailing list