From 65bcae09867a735b098dd7375756a56ff54ee72f Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Thu, 13 Oct 2016 22:02:24 +0200 Subject: [PATCH] adblock: update 1.5.2 * turris omnia compatibility fix Signed-off-by: Dirk Brenken --- net/adblock/Makefile | 2 +- net/adblock/files/adblock-helper.sh | 28 ++++++++++++---------------- 2 files changed, 13 insertions(+), 17 deletions(-) diff --git a/net/adblock/Makefile b/net/adblock/Makefile index f11d6850f5..de591c49b4 100644 --- a/net/adblock/Makefile +++ b/net/adblock/Makefile @@ -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 diff --git a/net/adblock/files/adblock-helper.sh b/net/adblock/files/adblock-helper.sh index 4cce637a31..2253075e5a 100644 --- a/net/adblock/files/adblock-helper.sh +++ b/net/adblock/files/adblock-helper.sh @@ -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" -- 2.30.2