diff options
author | Kusoneko <kusoneko@kusoneko.moe> | 2024-03-20 22:34:02 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2024-03-21 21:23:29 -0400 |
commit | 30e471ef67898fff3d8b93168b27b9b760b2e897 (patch) | |
tree | 802c7e8cafbc747497fd3c19906c6b6856986e9c /OpenBSD/net/litterbox | |
parent | OpenBSD: Add net/bubger (diff) | |
download | ports-master.tar.gz ports-master.zip |
As of OpenBSD 7.4, ports give errors when using the following paradigm: ``` DISTFILES = file.ext:0 file2.ext:1 MASTER_SITES0 = https://asite.com/path/to/file.ext MASTER_SITES1 = https://anothersite.com/path/to/file2.ext ``` Instead, ports now use the following: ``` DISTFILES = file.ext DISTFILES.substring = file2.ext SITES = https://asite.com/path/to/file.ext SITES.substring = https://anothersite.com/path/to/file2.ext ``` This changes all the OpenBSD ports to the new paradigm, allowing them to compile on OpenBSD 7.4+. Note: some OpenBSD ports are not currently up to date with upstream: - cgit-pink uses git 2.36.1 when the latest git release is 2.44.0 as of now - litterbox is at version 1.8 instead of 1.9 - pounce* are at version 3.0 instead of 3.1 - offers catsit instead of kitd Signed-off-by: Kusoneko <kusoneko@kusoneko.moe>
Diffstat (limited to 'OpenBSD/net/litterbox')
-rw-r--r-- | OpenBSD/net/litterbox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenBSD/net/litterbox/Makefile b/OpenBSD/net/litterbox/Makefile index d82b5fd..6a9f64a 100644 --- a/OpenBSD/net/litterbox/Makefile +++ b/OpenBSD/net/litterbox/Makefile @@ -12,7 +12,7 @@ PERMIT_PACKAGE = Yes WANTLIB = c sqlite3 tls LIB_DEPENDS = databases/sqlite3 -MASTER_SITES = https://git.causal.agency/litterbox/snapshot/ +SITES = https://git.causal.agency/litterbox/snapshot/ # C11 COMPILER = base-clang ports-gcc |