package/shellinabox: bump version to 2.20

Removed patch 0002, applied upstream, which also added --disable-utmp
for musl:
05b2d3630c

Added license hashes.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018.11.x
Bernd Kuhls 2018-08-19 21:44:57 +02:00 committed by Thomas Petazzoni
parent 68ee820dde
commit 6210596b76
3 changed files with 6 additions and 31 deletions

View File

@ -1,27 +0,0 @@
From c8d9df500b1ca83ad6da9b6055549adaba6ee0d3 Mon Sep 17 00:00:00 2001
From: Olivier Singla <olivier.singla@gmail.com>
Date: Thu, 4 Aug 2016 22:05:08 +0200
Subject: [PATCH] launcher.c: include <sys/ttydefaults.h>
This include is needed to get the definition of TTYDEF_*.
Signed-off-by: Olivier Singla <olivier.singla@gmail.com>
---
shellinabox/launcher.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/shellinabox/launcher.c b/shellinabox/launcher.c
index 2bac171..c8ba6cb 100644
--- a/shellinabox/launcher.c
+++ b/shellinabox/launcher.c
@@ -66,6 +66,7 @@
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/utsname.h>
+#include <sys/ttydefaults.h>
#include <termios.h>
#include <unistd.h>
--
2.7.4

View File

@ -1,2 +1,4 @@
# Locally calculated after checking pgp signature
sha256 d25ba9f72f04471fc1a8a564c65ef466c4553280ff3eeb365ed9c897d05ed2da shellinabox-v2.19.tar.gz
# Locally calculated
sha256 27a5ec6c3439f87aee238c47cc56e7357a6249e5ca9ed0f044f0057ef389d81e shellinabox-v2.20.tar.gz
sha256 04ef60ab9b83cde6f0862ea18474454477efb34c52ebce1f8d8260a398a39362 COPYING
sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6 GPL-2

View File

@ -4,7 +4,7 @@
#
################################################################################
SHELLINABOX_VERSION = v2.19
SHELLINABOX_VERSION = v2.20
SHELLINABOX_SITE = $(call github,shellinabox,shellinabox,$(SHELLINABOX_VERSION))
SHELLINABOX_LICENSE = GPL-2.0 with OpenSSL exception
SHELLINABOX_LICENSE_FILES = COPYING GPL-2
@ -23,7 +23,7 @@ SHELLINABOX_CONF_OPTS = \
# musl's implementation of utmpx is a dummy one, and some aspects of
# it cause build failures in shellinabox
ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y)
SHELLINABOX_CONF_ENV += ac_cv_header_utmpx_h=no
SHELLINABOX_CONF_OPTS += --disable-utmp
endif
$(eval $(autotools-package))