View | Details | Raw Unified | Return to bug 274027
Collapse All | Expand All

(-)b/dns/void-zones-tools/Makefile (-1 / +2 lines)
Lines 1-7 Link Here
1
PORTNAME=	void-zones-tools
1
PORTNAME=	void-zones-tools
2
DISTVERSIONPREFIX=	v
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	1.0.2
3
DISTVERSION=	1.0.2
4
PORTREVISION=	7
4
PORTREVISION=	8
5
CATEGORIES=	dns
5
CATEGORIES=	dns
6
6
7
MAINTAINER=	vidar@karlsen.tech
7
MAINTAINER=	vidar@karlsen.tech
Lines 16-21 RUN_DEPENDS= ca_root_nss>0:security/ca_root_nss Link Here
16
USES=		compiler:c11
16
USES=		compiler:c11
17
USE_GITHUB=	yes
17
USE_GITHUB=	yes
18
GH_ACCOUNT=	cyclaero
18
GH_ACCOUNT=	cyclaero
19
GH_TAGNAME=	204634a
19
20
20
SUB_FILES=	pkg-message
21
SUB_FILES=	pkg-message
21
22
(-)b/dns/void-zones-tools/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1503447553
1
TIMESTAMP = 1695409762
2
SHA256 (cyclaero-void-zones-tools-v1.0.2_GH0.tar.gz) = 5d276049372825c359fd281e1eee94a7771c2649f03e23796a55d7c959043510
2
SHA256 (cyclaero-void-zones-tools-v1.0.2-204634a_GH0.tar.gz) = 70aa40b5f15a5d7e8ffea69e775f0f975cb58ed4768324834ebb68a8e6f92b86
3
SIZE (cyclaero-void-zones-tools-v1.0.2_GH0.tar.gz) = 16201
3
SIZE (cyclaero-void-zones-tools-v1.0.2-204634a_GH0.tar.gz) = 16857
(-)b/dns/void-zones-tools/files/patch-Makefile (-15 / +9 lines)
Lines 1-19 Link Here
1
--- Makefile.orig	2018-08-26 02:54:47 UTC
1
--- Makefile.orig	2023-08-28 22:28:23 UTC
2
+++ Makefile
2
+++ Makefile
3
@@ -25,15 +25,7 @@
3
@@ -26,9 +26,7 @@
4
 
4
 CC ?= clang
5
 CC     ?= clang
5
 DV != $(CC) -dumpversion
6
 
6
 
7
-.if $(MACHINE) == "i386" || $(MACHINE) == "amd64" || $(MACHINE) == "x86_64"
7
-.if $(MACHINE) == "i386" || $(MACHINE) == "amd64" || $(MACHINE) == "x86_64"
8
-CFLAGS = $(CDEFS) -march=native -mssse3 -ffast-math
8
-CFLAGS = $(CDEFS) -march=native -mssse3
9
-.elif $(MACHINE) == "arm"
9
-.elif $(MACHINE) == "arm"
10
-CFLAGS = $(CDEFS) -fsigned-char
10
+.if $(MACHINE) == "arm"
11
-.else
11
 CFLAGS = $(CDEFS) -fsigned-char
12
-CFLAGS = $(CDEFS)
12
 .else
13
-.endif
13
 CFLAGS = $(CDEFS)
14
-
15
-CFLAGS += -std=c11 -g0 -Ofast -fstrict-aliasing -Wno-parentheses
16
+CFLAGS += -std=c11 -fstrict-aliasing -Wno-parentheses
17
 PREFIX ?= /usr/local
18
 
19
 HEADERS = binutils.h store.h
(-)a/dns/void-zones-tools/files/patch-void-zones-update.sh (-55 lines)
Removed Link Here
1
--- void-zones-update.sh.orig	2017-08-22 12:36:14 UTC
2
+++ void-zones-update.sh
3
@@ -47,6 +47,8 @@ fi
4
 ZONES_DIR="/usr/local/etc/void-zones"
5
 if [ ! -d "$ZONES_DIR" ]; then
6
    mkdir -p "$ZONES_DIR"
7
+fi
8
+if [ ! -f "$ZONES_DIR/my_void_hosts.txt" ]; then
9
    echo "# white list"          > "$ZONES_DIR/my_void_hosts.txt"
10
    echo "1.1.1.1 my.white.dom" >> "$ZONES_DIR/my_void_hosts.txt"
11
    echo ""                     >> "$ZONES_DIR/my_void_hosts.txt"
12
@@ -63,9 +65,8 @@ $FETCH -o "$ZONES_DIR/mdl_void_hosts.txt
13
 $FETCH -o "$ZONES_DIR/away_void_hosts.txt"     "https://adaway.org/hosts.txt"
14
 $FETCH -o "$ZONES_DIR/jdom_void_list.txt"      "http://mirror1.malwaredomains.com/files/justdomains"
15
 $FETCH -o "$ZONES_DIR/ucky_void_host.txt"     "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/UncheckyAds/hosts"
16
-$FETCH -o "$ZONES_DIR/w10telm_void_hosts.txt" "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/win10/spy.txt"
17
-$FETCH -o "$ZONES_DIR/w81telm_void_hosts.txt" "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/win81/spy.txt"
18
-$FETCH -o "$ZONES_DIR/w7telm_void_hosts.txt"  "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/win7/spy.txt"
19
+$FETCH -o "$ZONES_DIR/wintelm_void_hosts.txt" "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt"
20
+
21
 
22
 if [ ! -f "$ZONES_DIR/pgl_void_hosts.txt" ] ; then
23
    echo "# No hosts from pgl." > "$ZONES_DIR/pgl_void_hosts.txt"
24
@@ -95,17 +96,10 @@ if [ ! -f "$ZONES_DIR/ucky_void_host.txt
25
    echo "# No hosts from FadeMind/unchecky." > "$ZONES_DIR/ucky_void_host.txt"
26
 fi
27
 
28
-if [ ! -f "$ZONES_DIR/w10telm_void_hosts.txt" ] ; then
29
-   echo "# No hosts from WindowsSpyBlocker/win10/spy." > "$ZONES_DIR/w10telm_void_hosts.txt"
30
-fi
31
-
32
-if [ ! -f "$ZONES_DIR/w81telm_void_hosts.txt" ] ; then
33
-   echo "# No hosts from WindowsSpyBlocker/win81/spy." > "$ZONES_DIR/w81telm_void_hosts.txt"
34
+if [ ! -f "$ZONES_DIR/wintelm_void_hosts.txt" ] ; then
35
+   echo "# No hosts from WindowsSpyBlocker/hosts/spy." > "$ZONES_DIR/wintelm_void_hosts.txt"
36
 fi
37
 
38
-if [ ! -f "$ZONES_DIR/w7telm_void_hosts.txt" ] ; then
39
-   echo "# No hosts from WindowsSpyBlocker/win7/spy." > "$ZONES_DIR/w7telm_void_hosts.txt"
40
-fi
41
 
42
 /usr/local/bin/hosts2zones /tmp/local-void.zones \
43
                            "$ZONES_DIR/my_void_hosts.txt" \
44
@@ -116,9 +110,7 @@ fi
45
                            "$ZONES_DIR/away_void_hosts.txt" \
46
                            "$ZONES_DIR/jdom_void_list.txt" \
47
                            "$ZONES_DIR/ucky_void_host.txt" \
48
-                           "$ZONES_DIR/w10telm_void_hosts.txt" \
49
-                           "$ZONES_DIR/w81telm_void_hosts.txt" \
50
-                           "$ZONES_DIR/w7telm_void_hosts.txt" \
51
+                           "$ZONES_DIR/wintelm_void_hosts.txt" \
52
                            "$ZONES_DIR/x_void_list.txt" \
53
                            "$ZONES_DIR/y_void_list.txt" \
54
                            "$ZONES_DIR/z_void_list.txt" \
55
- 

Return to bug 274027