pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
dpbox: update to 6.1.4, no patches required
Module Name: pkgsrc-wip
Committed By: Chris Maness <christopher.maness%gmail.com@localhost>
Pushed By: kq6up
Date: Sun Jul 26 15:47:21 2026 -0700
Changeset: 53366a070555b9d6430a69c8761b3cb2a1237e01
Modified Files:
dpbox/distinfo
Removed Files:
dpbox/patches/patch-bl
Log Message:
dpbox: update to 6.1.4, no patches required
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=53366a070555b9d6430a69c8761b3cb2a1237e01
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
dpbox/distinfo | 1 +
dpbox/patches/patch-bl | 30 ------------------------------
2 files changed, 1 insertion(+), 30 deletions(-)
diffs:
diff --git a/dpbox/distinfo b/dpbox/distinfo
index 7d6bcaaa62..f15871cf1f 100644
--- a/dpbox/distinfo
+++ b/dpbox/distinfo
@@ -4,3 +4,4 @@ BLAKE2s (dpbox/dpbox-6.1.3.tar.gz) = 01d35f67c8407e2d821c943dcd68ca558672baeedee
SHA512 (dpbox/dpbox-6.1.3.tar.gz) = 3f49d8c824d28be64d4bf851a57f3f46b22ff486c1a13edeab2e22b86cbb23619b8bbbbcc0af80644ecb93abdfa7888bd8b78ea86690a4bc08dddef89ac7cf13
Size (dpbox/dpbox-6.1.3.tar.gz) = 954172 bytes
SHA1 (patch-bl) = 7952964f1894be68e13a2dc7cdfcfaad78d9c4eb
+SHA1 (patch-by) = 7bbf1056d0e75fcec155df238a13e81d16c59d54
diff --git a/dpbox/patches/patch-bl b/dpbox/patches/patch-bl
deleted file mode 100644
index b7489c0af8..0000000000
--- a/dpbox/patches/patch-bl
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD$
-
-Demote GCC 14 hard errors back to warnings for this K&R-era codebase.
-
-There is no active upstream maintainer and no upstream bug tracker.
-The original source is available via pkgsrc ham/dpbox.
-
-GCC 14 promotes implicit-int, implicit-function-declaration, and
-int-conversion from warnings to hard errors by default. dpbox predates
-ANSI C prototypes in many places (old-style K&R function definitions
-with untyped parameters, calls to library functions without prototypes,
-and char*/unsigned char* mismatches), which stops the build cold on
-modern toolchains. Add -Wno-error= for those three categories to both
-CFLAGS and CRAWLERCFLAGS so the package builds while the source is
-gradually modernized upstream. The warnings remain visible; only their
-error status is suppressed.
-
---- Makefile.netbsd.orig 2026-07-08 00:22:54.058653992 +0000
-+++ Makefile.netbsd 2026-07-08 00:22:54.073512826 +0000
-@@ -35,8 +35,8 @@
- DEFS = $(SYSTEM) $(NOSHELL)
- CC = gcc
- CPP = $(CC) -E
--CFLAGS = -Wall -O2 -funsigned-char -fomit-frame-pointer -fno-strength-reduce
--CRAWLERCFLAGS = -Wall -O3 -funsigned-char -fomit-frame-pointer -fno-strength-reduce
-+CFLAGS = -Wall -O2 -funsigned-char -fomit-frame-pointer -fno-strength-reduce -Wno-error=implicit-int -Wno-error=implicit-function-declaration -Wno-error=int-conversion
-+CRAWLERCFLAGS = -Wall -O3 -funsigned-char -fomit-frame-pointer -fno-strength-reduce -Wno-error=implicit-int -Wno-error=implicit-function-declaration -Wno-error=int-conversion
- LD = $(CC)
- LDFLAGS = -s
- LIBS = -lm
Home |
Main Index |
Thread Index |
Old Index