Browse Source

Merge pull request #3341 from dibdot/adblock

adblock: update 1.5.2
lilik-openwrt-22.03
Hannu Nyman 8 years ago
committed by GitHub
parent
commit
3c698f2285
2 changed files with 13 additions and 17 deletions
  1. +1
    -1
      net/adblock/Makefile
  2. +12
    -16
      net/adblock/files/adblock-helper.sh

+ 1
- 1
net/adblock/Makefile 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>


+ 12
- 16
net/adblock/files/adblock-helper.sh 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"


Loading…
Cancel
Save