mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
55 lines
2.6 KiB
Diff
55 lines
2.6 KiB
Diff
Old tarball is no longer available and thus causes build failure.
|
|
|
|
See https://github.com/tvheadend/tvheadend/pull/1422
|
|
|
|
From d853f14b8df4374a6e22dd28e15353b41c299497 Mon Sep 17 00:00:00 2001
|
|
From: Josef Schlehofer <pepe.schlehofer@gmail.com>
|
|
Date: Mon, 18 Oct 2021 22:54:02 +0200
|
|
Subject: [PATCH] Upgrade to libhdhomerun_20180817
|
|
|
|
The previous tarball is not available and because of that, the
|
|
compilation of tvheadend does not proceed.
|
|
|
|
Log while building for OpenWrt:
|
|
DOWNLOAD misc/staticlib/unknown/powerpc/hdhomerun-8081b801eb8e8403e7ba2d1b7c2015777051d47a.tgz / kZ54ee7ZUvsSYmb9VGSpnmoVzcAUhpBXLq8k
|
|
Traceback (most recent call last):
|
|
File "/builder/shared-workdir/build/sdk/build_dir/target-powerpc_8540_musl/tvheadend-4.2.8/support/pcloud.py", line 13, in <module>
|
|
import requests
|
|
ModuleNotFoundError: No module named 'requests'
|
|
FAILED TO DOWNLOAD (BUT THIS IS NOT A FATAL ERROR! DO NOT REPORT THAT!)
|
|
make[5]: Leaving directory '/builder/shared-workdir/build/sdk/build_dir/target-powerpc_8540_musl/tvheadend-4.2.8'
|
|
make -f Makefile.hdhomerun build
|
|
make[5]: Entering directory '/builder/shared-workdir/build/sdk/build_dir/target-powerpc_8540_musl/tvheadend-4.2.8'
|
|
WGET http://download.silicondust.com/hdhomerun/libhdhomerun_20171221.tgz
|
|
http://download.silicondust.com/hdhomerun/libhdhomerun_20171221.tgz:
|
|
2021-10-18 19:12:59 ERROR 404: Not Found.
|
|
make[5]: *** [Makefile.hdhomerun:79: /builder/shared-workdir/build/sdk/build_dir/target-powerpc_8540_musl/tvheadend-4.2.8/build.linux/hdhomerun/libhdhomerun_20171221/.tvh_download] Error 8
|
|
|
|
The latest version of libhdhomerun can not be used somehow as the compilation fails.
|
|
|
|
Let's update it to the next version since 2017 in the stable version to
|
|
ensure that it does not break anything. Also switch to https to download
|
|
tarball.
|
|
---
|
|
Makefile.hdhomerun | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/Makefile.hdhomerun b/Makefile.hdhomerun
|
|
index dcce37d1bb..e8fa736ca3 100644
|
|
--- a/Makefile.hdhomerun
|
|
+++ b/Makefile.hdhomerun
|
|
@@ -32,10 +32,10 @@ endif
|
|
# Upstream Packages
|
|
# ###########################################################################
|
|
|
|
-LIBHDHR = libhdhomerun_20150826
|
|
+LIBHDHR = libhdhomerun_20180817
|
|
LIBHDHR_TB = $(LIBHDHR).tgz
|
|
-LIBHDHR_URL = http://download.silicondust.com/hdhomerun/$(LIBHDHR_TB)
|
|
-LIBHDHR_SHA1 = 24ce6003b1e815ec4c642d180b621c1d524ca1cf
|
|
+LIBHDHR_URL = https://download.silicondust.com/hdhomerun/$(LIBHDHR_TB)
|
|
+LIBHDHR_SHA1 = 052868bde3a5713c55b4d060b77e0bc3a0d891d6
|
|
|
|
# ###########################################################################
|
|
# Library Config
|