community/oscam: update snapshot to 1.20_svn20161207

This commit is contained in:
Carlo Landmeter 2016-12-07 16:17:54 +01:00
parent 9829023c43
commit e2b5cc73c8
2 changed files with 8 additions and 35 deletions

View File

@ -2,8 +2,8 @@
# Maintainer: Carlo Landmeter <clandmeter@gmail.com>
pkgname=oscam
verbase=1.20
pkgver=1.20_svn20160307
pkgrel=3
pkgver=1.20_svn20161207
pkgrel=0
pkgdesc="An Open Source Conditional Access Module software"
url="http://www.streamboard.tv/oscam/"
arch="all"
@ -21,21 +21,10 @@ source="http://dev.alpinelinux.org/archive/$pkgname/$pkgname-$pkgver.tar.gz
$pkgname.initd
$pkgname.confd
$pkgname.conf
libressl.patch
"
builddir="$srcdir"/oscam-$pkgver
prepare() {
local i
cd "$builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$builddir"
make allyesconfig
@ -94,18 +83,15 @@ dbg() {
"$subpkgdir"/usr/bin || return 1
}
md5sums="53eb0c3f7cac9dfcb4bdc1807bb32261 oscam-1.20_svn20160307.tar.gz
md5sums="49cd8de1dabaefed0f22c8edd0846d4d oscam-1.20_svn20161207.tar.gz
03a0fd1355fe4e7b0943c2e64354d833 oscam.initd
3108b2f38140b5791d15cf49dae4ad35 oscam.confd
90939047384482ba8d4428b127b53785 oscam.conf
353501796902147579f28f07c9c104b7 libressl.patch"
sha256sums="5de9323774eb345c06bb15b97bb4275c9eb180d690048ab62ca4cc7d9eed0999 oscam-1.20_svn20160307.tar.gz
90939047384482ba8d4428b127b53785 oscam.conf"
sha256sums="2d2a3c789083418a35b00341c91f65485a0068b4976d3e97429330ed0883abfb oscam-1.20_svn20161207.tar.gz
1a9c0cca5eb600513aa1ae0b101bb9c7be80d0dfce611c4dbceff986fb4dafa8 oscam.initd
dd66db5c280ea6c695b55aafb972c3713e297c7ff47deff9f15f40e9c080f3fd oscam.confd
7a2e4cb5da504027b858086966eee57fcc1cc14115a7978997857e631e459b6e oscam.conf
dca7895f8fc4e248a58d738f4a2adb0356a87e2550ff4883f23c9db33775166b libressl.patch"
sha512sums="f368a3af658d4ea926fd9ec626797e6701a86894006eac3b858c65f2be9ce7f6bdc55a72b331ca7a362b85327c24fa9b0703580084bf24fd41bccfeeb70c4f21 oscam-1.20_svn20160307.tar.gz
7a2e4cb5da504027b858086966eee57fcc1cc14115a7978997857e631e459b6e oscam.conf"
sha512sums="24d5b5cf687445ca4f21ffa1af290cec4cfd8d72658f3274ced3e98b25475d571493c39bd16b9d4e159c90615473da2846027d87c137aae9c4777c1c95c2415f oscam-1.20_svn20161207.tar.gz
869d51a2e8472011ecc5b9776e5cb6dbbc87a648bb025f5c0d7c26147e4c1eb91c7d4a4f780237c9996e218bda0025107a921f14a55cf014a1f39d97e4422c4b oscam.initd
73998e9b9212c4868284aa4ed7d3a53fb61c087658f6dd8615de331fe12e1a9a1ea8941ebcc880804579d161d7954ead098315130cd07fc0fb2b368475f74e96 oscam.confd
0f3c4b9940bd27169dfe934599525558bc712d43f07959f19dce6ccfbf0e4d35d345272500fba2bff30e4ecf23f11f72b75321f8a45df908373620349d7f8808 oscam.conf
edadb2ae2eb163ee269a24a6a0e160f6348ab22ca0fd6f92ca07bb1b9a10130bfae09135b6b3fa2511353639e65b6bfc77a7ef92a8e60cf09b40b2ef3affdbe0 libressl.patch"
0f3c4b9940bd27169dfe934599525558bc712d43f07959f19dce6ccfbf0e4d35d345272500fba2bff30e4ecf23f11f72b75321f8a45df908373620349d7f8808 oscam.conf"

View File

@ -1,13 +0,0 @@
diff --git a/module-webif-lib.c b/module-webif-lib.c
index bda2286..3e5dbf9 100644
--- a/module-webif-lib.c
+++ b/module-webif-lib.c
@@ -866,7 +866,7 @@ SSL_CTX *SSL_Webif_Init(void)
if(cfg.http_force_sslv3)
{
- ctx = SSL_CTX_new(SSLv3_server_method());
+ ctx = SSL_CTX_new(TLS_server_method());
#ifdef SSL_CTX_clear_options
SSL_CTX_clear_options(ctx, SSL_OP_ALL); //we CLEAR all bug workarounds! This is for security reason
#else