Skip to content

Commit

Permalink
adblock: update 4.2.3-3
Browse files Browse the repository at this point in the history
Summary of three PRs regarding new adblock sources with minor changes/additions:

- add new source reg_lithuania, PR provided by @Myginas
- add new source certpl, PR provided by @jkostorz
- add new source oisd_nsfw_small, PR provided by @Turjoy9

Signed-off-by: Dirk Brenken <[email protected]>
  • Loading branch information
dibdot committed Jan 17, 2025
1 parent 64f1a28 commit cd89956
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/adblock/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#
# Copyright (c) 2015-2024 Dirk Brenken ([email protected])
# Copyright (c) 2015-2025 Dirk Brenken ([email protected])
# This is free software, licensed under the GNU General Public License v3.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=adblock
PKG_VERSION:=4.2.3
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_LICENSE:=GPL-3.0-or-later
PKG_MAINTAINER:=Dirk Brenken <[email protected]>

Expand Down
3 changes: 3 additions & 0 deletions net/adblock/files/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ A lot of people already use adblocker plugins within their desktop browsers, but
| antipopads | | L | compilation | [Link](https://github.com/AdroitAdorKhan/antipopads-re) |
| anudeep | | M | compilation | [Link](https://github.com/anudeepND/blacklist) |
| bitcoin | | S | mining | [Link](https://github.com/hoshsadiq/adblock-nocoin-list) |
| certpl | | L | phishing | [Link](https://cert.pl/en/warning-list/) |
| cpbl | | XL | compilation | [Link](https://github.com/bongochong/CombinedPrivacyBlockLists) |
| disconnect | | S | general | [Link](https://disconnect.me) |
| doh_blocklist | | S | doh_server | [Link](https://github.com/dibdot/DoH-IP-blocklists) |
Expand All @@ -33,6 +34,7 @@ A lot of people already use adblocker plugins within their desktop browsers, but
| notracking | | XL | tracking | [Link](https://github.com/notracking/hosts-blocklists) |
| oisd_big | | XXL | general | [Link](https://oisd.nl) |
| oisd_nsfw | | XXL | porn | [Link](https://oisd.nl) |
| oisd_nsfw_small | | M | porn | [Link](https://oisd.nl) |
| oisd_small | | L | general | [Link](https://oisd.nl) |
| openphish | | S | phishing | [Link](https://openphish.com) |
| phishing_army | | S | phishing | [Link](https://phishing.army) |
Expand All @@ -46,6 +48,7 @@ A lot of people already use adblocker plugins within their desktop browsers, but
| reg_it | | S | reg_italy | [Link](https://easylist.to) |
| reg_jp | | S | reg_japan | [Link](https://github.com/k2jp/abp-japanese-filters) |
| reg_kr | | S | reg_korea | [Link](https://github.com/List-KR/List-KR) |
| reg_nl | | S | reg_lithuania | [Link](https://easylist.to) |
| reg_nl | | S | reg_netherlands | [Link](https://easylist.to) |
| reg_pl | | M | reg_poland | [Link](https://kadantiscam.netlify.com) |
| reg_ro | | S | reg_romania | [Link](https://easylist.to) |
Expand Down
21 changes: 21 additions & 0 deletions net/adblock/files/adblock.sources
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@
"focus": "mining",
"descurl": "https://github.com/hoshsadiq/adblock-nocoin-list"
},
"certpl": {
"url": "https://hole.cert.pl/domains/v2/domains.txt",
"rule": "/^([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+([[:space:]]|$)/{print tolower($1)}",
"size": "L",
"focus": "phishing",
"descurl": "https://cert.pl"
},
"cpbl": {
"url": "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/cpbl-ctld.txt",
"rule": "/^([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+([[:space:]]|$)/{print tolower($1)}",
Expand Down Expand Up @@ -160,6 +167,13 @@
"focus": "porn",
"descurl": "https://oisd.nl"
},
"oisd_nsfw_small": {
"url": "https://nsfw-small.oisd.nl/domainswild2",
"rule": "/^([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+([[:space:]]|$)/{print tolower($1)}",
"size": "M",
"focus": "porn",
"descurl": "https://oisd.nl"
},
"oisd_small": {
"url": "https://small.oisd.nl/domainswild2",
"rule": "/^([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+([[:space:]]|$)/{print tolower($1)}",
Expand Down Expand Up @@ -251,6 +265,13 @@
"focus": "reg_korea",
"descurl": "https://github.com/List-KR/List-KR"
},
"reg_lt": {
"url": "https://easylist-downloads.adblockplus.org/easylistlithuania.txt",
"rule": "BEGIN{FS=\"[|^]\"}/^\\|\\|([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+\\^(\\$third-party)?$/{print tolower($3)}",
"size": "S",
"focus": "reg_lithuania",
"descurl": "https://easylist.to"
},
"reg_nl": {
"url": "https://easylist-downloads.adblockplus.org/easylistdutch.txt",
"rule": "BEGIN{FS=\"[|^]\"}/^\\|\\|([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+\\^(\\$third-party)?$/{print tolower($3)}",
Expand Down

0 comments on commit cd89956

Please sign in to comment.