adblock: update 1.5.2

* turris omnia compatibility fix

Signed-off-by: Dirk Brenken <dev@brenken.org>
(cherry picked from commit 65bcae0986)
This commit is contained in:
Dirk Brenken 2016-10-25 12:43:35 +03:00 committed by Hannu Nyman
parent d346839750
commit ba76867c70
2 changed files with 13 additions and 17 deletions

View file

@ -7,7 +7,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=adblock
PKG_VERSION:=1.5.1
PKG_VERSION:=1.5.2
PKG_RELEASE:=1
PKG_LICENSE:=GPL-3.0+
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>

View file

@ -6,7 +6,7 @@
#
LC_ALL=C
PATH="/usr/sbin:/usr/bin:/sbin:/bin"
adb_scriptver="1.5.1"
adb_scriptver="1.5.2"
adb_mincfgver="2.5"
adb_hotplugif=""
adb_lanif="lan"
@ -53,15 +53,6 @@ f_envload()
f_exit
fi
# check opkg availability
#
if [ -f "/var/lock/opkg.lock" ]
then
rc=-10
f_log "adblock installation finished successfully, 'opkg' currently locked by package installer"
f_exit
fi
# uci function to parse global section by callback
#
config_cb()
@ -138,16 +129,21 @@ f_envcheck()
f_exit
fi
# get list with all installed packages
# check opkg availability
#
pkg_list="$(opkg list-installed)"
if [ -z "${pkg_list}" ]
adb_pkglist="$(opkg list-installed)"
if [ $(($?)) -eq 255 ]
then
rc=-10
f_log "adblock installation finished successfully, 'opkg' currently locked by package installer"
f_exit
elif [ -z "${adb_pkglist}" ]
then
rc=-1
f_log "empty 'opkg' package list, please check your installation"
f_exit
fi
adb_sysver="$(printf "${pkg_list}" | grep "^base-files -")"
adb_sysver="$(printf "${adb_pkglist}" | grep "^base-files -")"
adb_sysver="${adb_sysver##*-}"
# get lan ip addresses
@ -435,7 +431,7 @@ f_envcheck()
# remove temporary package list
#
unset pkg_list
unset adb_pkglist
}
# f_depend: check package dependencies
@ -447,7 +443,7 @@ f_depend()
local check_only="${2}"
package_ok="true"
check="$(printf "${pkg_list}" | grep "^${package}")"
check="$(printf "${adb_pkglist}" | grep "^${package}")"
if [ "${check_only}" = "true" ] && [ -z "${check}" ]
then
package_ok="false"