imon-mce: remove broken addon

All this addon did was calling ir-keytable in some half broken way
which never worked in LE 10.

Using a .config/rc_maps.cfg with "* * imon_mce.toml" has the same
effect, so this addon can simply be dropped.

Signed-off-by: Matthias Reichl <hias@horus.com>
This commit is contained in:
Matthias Reichl 2021-04-06 19:55:43 +02:00
parent 0b41ab684c
commit 02e184a939
5 changed files with 11 additions and 43 deletions

View File

@ -1,8 +0,0 @@
8.0.100
- Update for LibreELEC 8.0
7.0.101
- added proper icon and description
7.0.100
- initial LibreELEC version

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

View File

@ -1,22 +1,24 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="imon-mce"
PKG_VERSION="7.0"
PKG_REV="101"
PKG_VERSION="1.0"
PKG_REV="102"
PKG_ARCH="any"
PKG_LICENSE="OSS"
PKG_SITE="https://libreelec.tv"
PKG_LICENSE="GPL"
PKG_SITE=""
PKG_URL=""
PKG_DEPENDS_TARGET="toolchain"
PKG_SECTION="driver/remote"
PKG_SHORTDESC="iMON-MCE: a Linux driver to add support for MCE remotes to the iMON driver"
PKG_LONGDESC="Install this to add support for iMon MCE remote controls."
PKG_SHORTDESC="Add-on removed"
PKG_LONGDESC="Add-on removed"
PKG_TOOLCHAIN="manual"
PKG_ADDON_BROKEN="iMON-MCE driver was removed, use .config/rc_maps.cfg instead."
PKG_IS_ADDON="yes"
PKG_ADDON_NAME="iMON-MCE"
PKG_ADDON_TYPE="xbmc.service"
PKG_ADDON_TYPE="xbmc.broken"
addon() {
:

View File

@ -1,9 +0,0 @@
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
. /etc/profile
sleep 1 && \
ir-keytable -p rc6 -w /usr/lib/udev/rc_keymaps/imon_mce &

View File

@ -1,17 +0,0 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
# Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv)
import os
import sys
import xbmcaddon
import xbmcvfs
__scriptname__ = "IMON MCE Remote driver"
__author__ = "LibreELEC"
__url__ = "https://libreelec.tv"
__settings__ = xbmcaddon.Addon(id='driver.remote.imon-mce')
__cwd__ = __settings__.getAddonInfo('path')
__path__ = xbmcvfs.translatePath( os.path.join( __cwd__, 'bin', "imon-mce.service") )
os.system(__path__)