GNU bug report logs - #74864
[PATCH] gnu: Add adl-submit.py

Previous Next

Package: guix-patches;

Reported by: Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>

Date: Sat, 14 Dec 2024 01:27:02 UTC

Severity: normal

Tags: patch

Done: Simon Tournier <zimon.toutoune <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
Subject: bug#74864: closed (Re: [bug#74864] [PATCH v3] gnu: Add adl-submit.)
Date: Tue, 17 Jun 2025 14:20:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#74864: [PATCH] gnu: Add adl-submit.py

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 74864 <at> debbugs.gnu.org.

-- 
74864: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=74864
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Simon Tournier <zimon.toutoune <at> gmail.com>
To: Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>,
 74864-done <at> debbugs.gnu.org, Sharlatan Hellseher <sharlatanus <at> gmail.com>
Cc: Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
Subject: Re: [bug#74864] [PATCH v3] gnu: Add adl-submit.
Date: Tue, 17 Jun 2025 16:19:21 +0200
Hi Oleg,

This is helpful for Guix Meetup in Paris when we announce our event. :-)

Well, for testing, I’ve sent it as PR:

    https://codeberg.org/guix/guix/pulls/636

Therefore, I’m closing this.


On Sat, 10 May 2025 at 01:46, Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org> wrote:
> * gnu/packages/calendar.scm (adl-submit): New variable.

[...]

> ---
>  gnu/packages/calendar.scm | 30 ++++++++++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
>
> diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm
> index ed7a13a2c9..84f83fe9c4 100644
> --- a/gnu/packages/calendar.scm
> +++ b/gnu/packages/calendar.scm
> @@ -12,6 +12,7 @@
>  ;;; Copyright © 2020 Peng Mei Yu <pengmeiyu <at> riseup.net>
>  ;;; Copyright © 2021 Wamm K. D. <jaft.r <at> outlook.com>
>  ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
> +;;; Copyright © 2025 Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -56,6 +57,7 @@ (define-module (gnu packages calendar)
>    #:use-module (gnu packages pkg-config)
>    #:use-module (gnu packages python)
>    #:use-module (gnu packages python-build)
> +  #:use-module (gnu packages python-web)
>    #:use-module (gnu packages python-xyz)
>    #:use-module (gnu packages qt)
>    #:use-module (gnu packages sphinx)
> @@ -65,6 +67,34 @@ (define-module (gnu packages calendar)
>    #:use-module (gnu packages xml)
>    #:use-module (srfi srfi-26))
>  
> +(define-public python-adl-submit
> +  (let ((revision "1")
> +        (commit "f38c7ad161fbe6ec72ecc725edbd624f5c627ea9"))
> +    (package
> +     (name "python-adl-submit")
> +     (version (git-version "1.0" revision commit))
> +     (source
> +      (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://framagit.org/agenda-libre/adl-submit.git")
> +             (commit commit)))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "1zi5s8xpbm253mjdlcc1j13qqz5q7s9zavk3h0m2gfgb52xy2avp"))))
> +     (build-system python-build-system)
> +     (inputs (list python python-pycurl))
> +     (home-page "https://www.agendadulibre.org")
> +     (synopsis "Submit events to the Agenda Du Libre")
> +     (description "adl-submit is a tool that can be used to submit events
> +to any instance of the Agenda Du Libre (a web calendar originally meant for
> +free software events).  Users can set fields through the command line or
> +create an XML that can be submitted with the adl-submit tool.  While the
> +Agenda Du Libre web application is available in multiple languages, most of
> +the events on https://www.agendadulibre.org are in French and the
> +adl-submit tool is only available in French.")
> +     (license license:gpl2))))
> +
>  (define-public date
>    ;; We make the same choice as the Arch package maintainer by choosing a
>    ;; recent commit to fix some bugs.
>
> base-commit: 7d29ea6c4968de56e9edcae2632aa53d5f2e5e61
> -- 
> 2.46.0

Cheers,
simon


[Message part 3 (message/rfc822, inline)]
From: Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
To: guix-patches <at> gnu.org
Cc: Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
Subject: [PATCH] gnu: Add adl-submit.py
Date: Sat, 14 Dec 2024 02:25:30 +0100
* gnu/packages/calendar.scm (adl-submit.py): New variable.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
Change-Id: Icd9438fbaf2c53635989fb8cfb443d2c3e541eff
---
 gnu/packages/calendar.scm | 44 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm
index 6717db867f..069e3c05ca 100644
--- a/gnu/packages/calendar.scm
+++ b/gnu/packages/calendar.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2020 Peng Mei Yu <pengmeiyu <at> riseup.net>
 ;;; Copyright © 2021 Wamm K. D. <jaft.r <at> outlook.com>
 ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
+;;; Copyright © 2024 Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -56,6 +57,7 @@ (define-module (gnu packages calendar)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-build)
+  #:use-module (gnu packages python-web)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages sphinx)
@@ -65,6 +67,48 @@ (define-module (gnu packages calendar)
   #:use-module (gnu packages xml)
   #:use-module (srfi srfi-26))
 
+(define-public adl-submit.py
+  (let ((revision "1")
+        (commit "e20998c17475e64676173828385f22a6d5801240"))
+    (package
+     (name "adl-submit.py")
+     (version (git-version "1.0" revision commit))
+     (source
+      (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://framagit.org/agenda-libre/agenda-libre-ruby.git")
+             (commit commit)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1jpasv7skpbi20674f23kbgw2fj78ywhnd542cwgkc65v2s6s4lh"))))
+     (build-system gnu-build-system)
+    (arguments
+     (list
+      #:tests? #f ; No tests
+      #:phases
+      #~(modify-phases %standard-phases
+          (delete 'configure)
+          (delete 'build)
+          (replace 'install
+            (lambda _
+              (install-file
+               "public/adl-submit.py" (string-append #$output "/bin"))
+              (wrap-program (string-append #$output "/bin/adl-submit.py")
+                `("GUIX_PYTHONPATH" ":"
+                  prefix (,(getenv "GUIX_PYTHONPATH")))))))))
+     (inputs (list python python-pycurl))
+     (home-page "https://www.agendadulibre.org")
+     (synopsis "Submit events to the Agenda Du Libre")
+     (description "adl-submit.py is a tool that can be used to submit events
+to any instance of the Agenda Du Libre (a web calendar originally meant for
+free software events).  Users can set fields through the command line or
+create an XML that can be submitted with the adl-submit.py tool.  While the
+Agenda Du Libre web application is available in multiple languages, most of
+the events on https://www.agendadulibre.org are in French and the
+adl-submit.py tool is only available in French.")
+     (license license:gpl2))))
+
 (define-public date
   ;; We make the same choice as the Arch package maintainer by choosing a
   ;; recent commit to fix some bugs.

base-commit: 0787a180b3ca64d3958438920ca1b58a2a27fba4
-- 
2.46.0




This bug report was last modified 30 days ago.

Previous Next


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