-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adblock-fast: bugfix: better detect ABP lists
* bugfix: better detect ABP lists * update Makefile with BUSYBOX features dependencies * update the type of dnsmasq_instance setting * add error message when file type can't be detected * add reporting when file type can't be detected * bugfix: include URL on errors related to URL processing/parsing * rename resolver function to resolver_config to better reflect its use Signed-off-by: Stan Grishin <[email protected]>
- Loading branch information
Showing
3 changed files
with
51 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk | |
|
||
PKG_NAME:=adblock-fast | ||
PKG_VERSION:=1.0.0 | ||
PKG_RELEASE:=2 | ||
PKG_RELEASE:=3 | ||
PKG_MAINTAINER:=Stan Grishin <[email protected]> | ||
PKG_LICENSE:=GPL-3.0-or-later | ||
|
||
|
@@ -18,6 +18,10 @@ define Package/adblock-fast | |
TITLE:=AdBlock Fast Service | ||
URL:=https://docs.openwrt.melmac.net/adblock-fast/ | ||
DEPENDS:=+jshn +curl | ||
DEPENDS+=+!BUSYBOX_DEFAULT_AWK:gawk | ||
DEPENDS+=+!BUSYBOX_DEFAULT_GREP:grep | ||
DEPENDS+=+!BUSYBOX_DEFAULT_SED:sed | ||
DEPENDS+=+!BUSYBOX_DEFAULT_SORT:coreutils-sort | ||
CONFLICTS:=simple-adblock | ||
PROVIDES:=simple-adblock | ||
PKGARCH:=all | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters