From: Jaroslav Kysela Date: Wed, 27 Jan 2016 14:52:14 +0000 (+0100) Subject: getmuxlist: use own dtv-scan-tables repository (quick fixes, merges) X-Git-Tag: v4.2.1~1106 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90f66ef27a78dd70f739cdf63f075d21c5d557c9;p=thirdparty%2Ftvheadend.git getmuxlist: use own dtv-scan-tables repository (quick fixes, merges) --- diff --git a/Makefile b/Makefile index 039a130c7..17f48230f 100644 --- a/Makefile +++ b/Makefile @@ -705,7 +705,7 @@ ${BUILDDIR}/hdhomerun/libhdhomerun/libhdhomerun.a: Makefile.hdhomerun # linuxdvb git tree $(ROOTDIR)/data/dvb-scan/.stamp: - @echo "Receiving data/dvb-scan/dvb-t from http://linuxtv.org/git/dtv-scan-tables.git" + @echo "Receiving data/dvb-scan/dvb-t from https://github.com/tvheadend/dtv-scan-tables.git#tvheadend" @rm -rf $(ROOTDIR)/data/dvb-scan/* @$(ROOTDIR)/support/getmuxlist $(ROOTDIR)/data/dvb-scan @touch $@ diff --git a/support/getmuxlist b/support/getmuxlist index e8ed054c6..5fe4c72a7 100755 --- a/support/getmuxlist +++ b/support/getmuxlist @@ -17,8 +17,9 @@ if [ -d "${DIR}/.git" ]; then cd "${LAST}" || exit 1 # Fetch elif [ ! -d "${DIR}" ]; then - URL=http://linuxtv.org/git/dtv-scan-tables.git - git clone $URL "${DIR}" > /dev/null 2>&1 || exit 1 + URL=https://github.com/tvheadend/dtv-scan-tables.git + BRANCH=tvheadend + git clone -b $BRANCH $URL "${DIR}" > /dev/null 2>&1 || exit 1 fi # Note: will not update existing set (if not .git)