couchdb: update to 3.5.2

This commit is contained in:
Mohamed Akram
2026-05-23 13:20:19 +04:00
parent 932a52b37e
commit 758397320b
3 changed files with 39 additions and 5 deletions
+8 -5
View File
@@ -4,8 +4,8 @@ PortSystem 1.0
PortGroup active_variants 1.1
name couchdb
version 3.5.1
revision 1
version 3.5.2
revision 0
categories databases
license Apache-2
@@ -26,9 +26,9 @@ master_sites apache
master_sites.mirror_subdir ${name}/source/${version}/
distname apache-${name}-${version}
checksums rmd160 a48f35f0b5933d8e22bf5c2986a007760d3f0ec5 \
sha256 c22cf31d6d91a3f5aa04f0cad493babdc723213494cb5e6170a507d359c50136 \
size 25006439
checksums rmd160 535ea12b3cfbb41bc11d9e4a12bed329d7e80979 \
sha256 e561102aaadfdda1e499e6e9e12d2473433291b608bcd390bcbcf590bbb6cf68 \
size 24922969
depends_build port:erlang
@@ -37,6 +37,9 @@ depends_lib path:lib/pkgconfig/icu-uc.pc:icu \
path:lib/libssl.dylib:openssl \
port:zlib
patchfiles patch-rebar-config.diff \
patch-ibrowse-rebar-config.diff
# erlang is not universal
universal_variant no
@@ -0,0 +1,9 @@
--- src/ibrowse/rebar.config.orig 2026-05-01 07:00:06
+++ src/ibrowse/rebar.config 2026-05-23 13:19:17
@@ -1,6 +1,5 @@
{erl_opts, [
debug_info,
- warnings_as_errors,
warn_unused_vars,
nowarn_shadow_vars,
warn_unused_import
@@ -0,0 +1,22 @@
From 577232ea355f40489d81c327a27f30a52c959bff Mon Sep 17 00:00:00 2001
From: Ronny Berndt <ronny@apache.org>
Date: Thu, 21 May 2026 19:55:05 +0200
Subject: [PATCH] dev: Allow OTP 29 compiler (#6009)
---
rebar.config.script | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rebar.config.script b/rebar.config.script
index 3ebe61db4c..92c8e47c6a 100644
--- rebar.config.script
+++ rebar.config.script
@@ -194,7 +194,7 @@ end.
AddConfig = [
{cover_enabled, true},
{cover_print_enabled, true},
- {require_otp_vsn, "26|27|28"},
+ {require_otp_vsn, "26|27|28|29"},
{deps_dir, "src"},
{deps, lists:map(MakeDep, DepDescs ++ OptionalDeps)},
{sub_dirs, SubDirs},