radicale3: update to 3.7.0

Bump version and add placeholder for new [sharing]
section/capability.

Signed-off-by: Daniel F. Dickinson <dfdpublic@wildtechgarden.ca>
This commit is contained in:
Daniel F. Dickinson
2026-04-08 04:48:23 -04:00
committed by Alexandru Ardelean
parent e317276974
commit f534f48ab8
2 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=radicale3
PKG_VERSION:=3.6.1
PKG_VERSION:=3.7.0
PKG_RELEASE:=1
PKG_LICENSE:=GPL-3.0-or-later
@@ -16,7 +16,7 @@ PKG_CPE_ID:=cpe:/a:radicale:radicale
PYPI_NAME:=Radicale
PYPI_SOURCE_NAME:=radicale
PKG_HASH:=5b5529c093fc3a6e9eba6a3280d930ea6573b485a1bd8d25b7daa6ee70f5224b
PKG_HASH:=0c70356330da373adf65ef2ec2a0ea938ab18dabc6b045a1b1778cc41b7834df
PKG_MAINTAINER:=Daniel F. Dickinson <dfdpublic@wildtechgarden.ca>

View File

@@ -134,6 +134,7 @@ conf_section() {
echo "Access-Control-Allow-Origin = $cors" >> "$cfgfile"
fi
;;
# TODO: Add sharing configuration
esac
echo "" >> "$cfgfile"
@@ -142,7 +143,7 @@ conf_section() {
add_missing_sections() {
local cfgfile="$1"
for section in server encoding auth rights storage web logging headers; do
for section in server encoding auth rights storage web logging headers sharing; do
if ! grep -q "\[$section\]" "$cfgfile"; then
echo "[$section]" >> "$cfgfile"
case $section in