From a36c818ae4ec160b59d3e8cf22f35df1535e0b0a Mon Sep 17 00:00:00 2001 From: Ian Leonard Date: Fri, 5 Oct 2018 20:15:10 +0000 Subject: [PATCH] tools/mkpkg_lockdev: drop; lockdev is no more Signed-off-by: Ian Leonard --- tools/mkpkg/mkpkg_lockdev | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100755 tools/mkpkg/mkpkg_lockdev diff --git a/tools/mkpkg/mkpkg_lockdev b/tools/mkpkg/mkpkg_lockdev deleted file mode 100755 index 0123a01b25f..00000000000 --- a/tools/mkpkg/mkpkg_lockdev +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# SPDX-License-Identifier: GPL-2.0-or-later -# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv) -# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv) - -echo "getting sources..." - if [ ! -d lockdev.git ]; then - git clone git://anonscm.debian.org/lockdev/lockdev.git -b master lockdev.git - fi - - cd lockdev.git - git pull - GIT_REV=`git log -n1 --format=%H` - cd .. - -echo "copying sources..." - rm -rf lockdev-$GIT_REV - cp -R lockdev.git lockdev-$GIT_REV - -echo "creating VERSION and other needed files" - ( - cd lockdev-$GIT_REV - LC_ALL=C ./scripts/git-version > VERSION - touch ChangeLog - ) - -echo "cleaning sources..." - rm -rf lockdev-$GIT_REV/.git - - -echo "packing sources..." - tar cvJf lockdev-$GIT_REV.tar.xz lockdev-$GIT_REV - -echo "remove temporary sourcedir..." -