GNU bug report logs - #74929
[PATCH] gnu: radicale: Update to 3.3.2.

Previous Next

Package: guix-patches;

Reported by: Jonathan Brielmaier <jonathan.brielmaier <at> web.de>

Date: Tue, 17 Dec 2024 19:05:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 74929 in the body.
You can then email your comments to 74929 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#74929; Package guix-patches. (Tue, 17 Dec 2024 19:05:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Jonathan Brielmaier <jonathan.brielmaier <at> web.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 17 Dec 2024 19:05:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Jonathan Brielmaier <jonathan.brielmaier <at> web.de>
To: guix-patches <at> gnu.org
Cc: Jonathan Brielmaier <jonathan.brielmaier <at> web.de>
Subject: [PATCH] gnu: radicale: Update to 3.3.2.
Date: Tue, 17 Dec 2024 20:03:42 +0100
* gnu/packages/dav.scm (radicale): Update to 3.3.2.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Remove no longer used python-pytest-runner. Add
python-setuptools and python-wheel.
[propagated-inputs]: Remove no longer used python-dateutil. Add
python-pika.

Change-Id: I2fa789fb828cba01bb246e1f747cf170881fc3bb
---
 gnu/packages/dav.scm | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/dav.scm b/gnu/packages/dav.scm
index e4b85ae2d94..ec76181bb90 100644
--- a/gnu/packages/dav.scm
+++ b/gnu/packages/dav.scm
@@ -4,7 +4,7 @@
 ;;; Copyright © 2020 Tobias Geerinckx-Rice <me <at> tobias.gr>
 ;;; Copyright © 2020 Vinicius Monego <monego <at> posteo.net>
 ;;; Copyright © 2021 Tanguy Le Carrour <tanguy <at> bioneland.org>
-;;; Copyright © 2022 Jonathan Brielmaier <jonathan.brielmaier <at> web.de>
+;;; Copyright © 2022, 2024 Jonathan Brielmaier <jonathan.brielmaier <at> web.de>
 ;;; Copyright © 2024 Nicolas Graves <ngraves <at> ngraves.fr>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -45,7 +45,7 @@ (define-module (gnu packages dav)
 (define-public radicale
   (package
     (name "radicale")
-    (version "3.1.8")
+    (version "3.3.2")
     (source
      (origin
        (method git-fetch)
@@ -54,17 +54,20 @@ (define-public radicale
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1qy2azn02bw772yhzgqvyf1pyl0ijj9ccvl1078w9icl261yljap"))))
-    (build-system python-build-system)
+        (base32 "0walj1b7jrcc85maav04ciiipcqsl0mwbq3icksql26vr4i3y19z"))))
+    (build-system pyproject-build-system)
     (native-inputs
      (list python-pytest
            python-pytest-cov
            python-pytest-flake8
            python-pytest-isort
-           python-pytest-runner
-           python-waitress))
+           python-setuptools
+           python-waitress
+           python-wheel))
     (propagated-inputs
-     (list python-dateutil python-defusedxml python-passlib
+     (list python-defusedxml
+           python-passlib
+           python-pika
            python-vobject))
     (synopsis "Basic CalDAV and CardDAV server")
     (description "Radicale is a CalDAV and CardDAV server for UNIX-like

base-commit: 8e71580aae17f0c84896519d63246ab4bbb77fc4
--
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#74929; Package guix-patches. (Tue, 17 Dec 2024 19:16:01 GMT) Full text and rfc822 format available.

Message #8 received at 74929 <at> debbugs.gnu.org (full text, mbox):

From: Jonathan Brielmaier <jonathan.brielmaier <at> web.de>
To: 74929 <at> debbugs.gnu.org
Subject: [PATCH] gnu: radicale: Update to 3.3.2.
Date: Tue, 17 Dec 2024 20:15:22 +0100
I'm using this patch on my personal server, which runs a radicale
service. Let's see how it behaves...




Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Mon, 23 Dec 2024 18:09:02 GMT) Full text and rfc822 format available.

Notification sent to Jonathan Brielmaier <jonathan.brielmaier <at> web.de>:
bug acknowledged by developer. (Mon, 23 Dec 2024 18:09:03 GMT) Full text and rfc822 format available.

Message #13 received at 74929-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Jonathan Brielmaier <jonathan.brielmaier <at> web.de>
Cc: 74929-done <at> debbugs.gnu.org
Subject: Re: [bug#74929] [PATCH] gnu: radicale: Update to 3.3.2.
Date: Mon, 23 Dec 2024 19:08:13 +0100
Jonathan Brielmaier <jonathan.brielmaier <at> web.de> skribis:

> * gnu/packages/dav.scm (radicale): Update to 3.3.2.
> [build-system]: Switch to pyproject-build-system.
> [native-inputs]: Remove no longer used python-pytest-runner. Add
> python-setuptools and python-wheel.
> [propagated-inputs]: Remove no longer used python-dateutil. Add
> python-pika.
>
> Change-Id: I2fa789fb828cba01bb246e1f747cf170881fc3bb

Applied, thanks! :-)




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 21 Jan 2025 12:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 227 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.