diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2025-02-06 18:42:36 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2025-02-06 18:45:47 +0000 |
commit | 47e960dac73ddef41556db14b76366ce1a6e0025 (patch) | |
tree | cca080073f60ecc70c3529b50f2eca4f9b56957d | |
parent | 90c45f91c14575af7226af907b1e8f14660388cf (diff) |
www/lynx-current: Better MASTER_SITES
Previously we had one unencrypted HTTP and one ftp URL. Now we have
two HTTPS URLs.
PR: 284612
Reported by: Thomas E. Dickey (creator of Lynx)
-rw-r--r-- | www/lynx-current/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/lynx-current/Makefile b/www/lynx-current/Makefile index d4ee43291c58..4dd9cc7790c4 100644 --- a/www/lynx-current/Makefile +++ b/www/lynx-current/Makefile @@ -1,8 +1,8 @@ PORTNAME= lynx PORTVERSION= 2.9.2 CATEGORIES= www -MASTER_SITES= http://invisible-mirror.net/archives/lynx/tarballs/ \ - ftp://ftp.invisible-island.net/lynx/tarballs/ +MASTER_SITES= https://invisible-mirror.net/archives/lynx/tarballs/ \ + https://invisible-island.net/archives/lynx/tarballs/ PKGNAMESUFFIX= -current DISTNAME= ${PORTNAME}${PORTVERSION:S/p/pre./:S/d/dev./} |