unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#37923] [PATCH 0/2] gnu: profanity: Add configure flags and inputs for better defaults.
@ 2019-10-25 15:17 Tanguy Le Carrour
  2019-10-25 15:20 ` [bug#37923] [PATCH 1/2] " Tanguy Le Carrour
                   ` (3 more replies)
  0 siblings, 4 replies; 15+ messages in thread
From: Tanguy Le Carrour @ 2019-10-25 15:17 UTC (permalink / raw)
  To: 37923

This makes OMEMO and desktop notifications available.
As Jack mentioned [1], the home page was redirected. I've updated it.

[1]: https://lists.gnu.org/archive/html/guix-devel/2019-10/msg00610.html

-- 
Tanguy

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH 1/2] gnu: profanity: Add configure flags and inputs for better defaults.
  2019-10-25 15:17 [bug#37923] [PATCH 0/2] gnu: profanity: Add configure flags and inputs for better defaults Tanguy Le Carrour
@ 2019-10-25 15:20 ` Tanguy Le Carrour
  2019-10-25 15:20   ` [bug#37923] [PATCH 2/2] gnu: profanity: Update home-page URL Tanguy Le Carrour
  2019-10-25 17:25   ` [bug#37923] [PATCH 1/2] gnu: profanity: Add configure flags and inputs for better defaults Mathieu Othacehe
  2019-10-26 16:16 ` [bug#37923] [PATCH v2 1/4] " tanguy
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 15+ messages in thread
From: Tanguy Le Carrour @ 2019-10-25 15:20 UTC (permalink / raw)
  To: 37923; +Cc: Tanguy Le Carrour

* gnu/packages/messaging.scm (profanity)[arguments]<#configure-flags>:
Add --enable-omemo, --enable-notifications and --enable-icon.
[native-inputs]: Add libnotify and libsignal-protocol-c.
---
 gnu/packages/messaging.scm | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index f890ad8dd5..ca01a4492e 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1627,6 +1627,11 @@ are both supported).")
                (base32
                 "0nxh81j8ky0fzv47pip1jb7rs5rrin3jx0f3h632bvpjiya45r1z"))))
     (build-system gnu-build-system)
+    (arguments
+     `(#:configure-flags
+       (list "--enable-omemo"
+             "--enable-icon"
+             "--enable-notifications")))
     (inputs
      `(("curl" ,curl)
        ("expat" ,expat)
@@ -1642,7 +1647,9 @@ are both supported).")
        ("autoconf-archive" ,autoconf-archive)
        ("automake" ,automake)
        ("cmocka" ,cmocka)
+       ("libnotify" ,libnotify)
        ("libtool" ,libtool)
+       ("libsignal-protocol-c" ,libsignal-protocol-c)
        ("pkg-config" ,pkg-config)))
     (synopsis "Console-based XMPP client")
     (description "Profanity is a console based XMPP client written in C
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH 2/2] gnu: profanity: Update home-page URL.
  2019-10-25 15:20 ` [bug#37923] [PATCH 1/2] " Tanguy Le Carrour
@ 2019-10-25 15:20   ` Tanguy Le Carrour
  2019-10-25 17:25   ` [bug#37923] [PATCH 1/2] gnu: profanity: Add configure flags and inputs for better defaults Mathieu Othacehe
  1 sibling, 0 replies; 15+ messages in thread
From: Tanguy Le Carrour @ 2019-10-25 15:20 UTC (permalink / raw)
  To: 37923; +Cc: Tanguy Le Carrour

* gnu/packages/messaging.scm (profanity)[home-page]: Update URL.
---
 gnu/packages/messaging.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index ca01a4492e..afbb97487a 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1654,7 +1654,7 @@ are both supported).")
     (synopsis "Console-based XMPP client")
     (description "Profanity is a console based XMPP client written in C
 using ncurses and libmesode, inspired by Irssi.")
-    (home-page "http://www.profanity.im")
+    (home-page "https://profanity-im.github.io")
     (license license:gpl3+)))
 
 (define-public libircclient
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH 1/2] gnu: profanity: Add configure flags and inputs for better defaults.
  2019-10-25 15:20 ` [bug#37923] [PATCH 1/2] " Tanguy Le Carrour
  2019-10-25 15:20   ` [bug#37923] [PATCH 2/2] gnu: profanity: Update home-page URL Tanguy Le Carrour
@ 2019-10-25 17:25   ` Mathieu Othacehe
  2019-10-26 16:12     ` Tanguy Le Carrour
  1 sibling, 1 reply; 15+ messages in thread
From: Mathieu Othacehe @ 2019-10-25 17:25 UTC (permalink / raw)
  To: 37923; +Cc: tanguy


Hey Tanguy,

Much better with git send-email ;) A few remarks below:

> +     `(#:configure-flags
         ^
It can be ' because there are no unquoting in the following list.

> +             "--enable-icon"
                              ^
I think it is --enable-icons but that triggers missing inputs. You can
have a look to nix recipe if needed.

Thanks,

Mathieu

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH 1/2] gnu: profanity: Add configure flags and inputs for better defaults.
  2019-10-25 17:25   ` [bug#37923] [PATCH 1/2] gnu: profanity: Add configure flags and inputs for better defaults Mathieu Othacehe
@ 2019-10-26 16:12     ` Tanguy Le Carrour
  0 siblings, 0 replies; 15+ messages in thread
From: Tanguy Le Carrour @ 2019-10-26 16:12 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 37923

Hi Mathieu,


Le 10/25, Mathieu Othacehe a écrit :
> Much better with git send-email ;) A few remarks below:
> 
> > +     `(#:configure-flags
>          ^
> It can be ' because there are no unquoting in the following list.

Done!


> > +             "--enable-icon"
>                               ^
> I think it is --enable-icons but that triggers missing inputs. You can
> have a look to nix recipe if needed.

Outch! Sorry for that! Actually when I added it I thought "if I don't
spell it properly, configure will fail, won't it?"… obviously I was
wrong! ^_^'


v2 is following.

I also added "--enable-c-plugins" and "--enable-otr" with the comment
from Nix expression ("Enable feature flags, so that build fail if libs
are missing") in the commit message. And I added "--enable-pgp" in
a separate commit… but I guess you'll squash everything together, right?

I tried to add "--enable-python-plugins" and "python" as a native input,
but it did not work! So, for now, I left it out.

Thanks again for reviewing!

-- 
Tanguy

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH v2 1/4] gnu: profanity: Add configure flags and inputs for better defaults.
  2019-10-25 15:17 [bug#37923] [PATCH 0/2] gnu: profanity: Add configure flags and inputs for better defaults Tanguy Le Carrour
  2019-10-25 15:20 ` [bug#37923] [PATCH 1/2] " Tanguy Le Carrour
@ 2019-10-26 16:16 ` tanguy
  2019-10-26 16:16   ` [bug#37923] [PATCH v2 2/4] gnu: profanity: Update home-page URL tanguy
                     ` (2 more replies)
  2019-10-26 21:09 ` [bug#37923] [PATCH 0/4] gnu: profanity: Add configure flags and inputs " Tanguy Le Carrour
  2019-10-26 21:11 ` [bug#37923] [PATCH v3 1/4] " tanguy
  3 siblings, 3 replies; 15+ messages in thread
From: tanguy @ 2019-10-26 16:16 UTC (permalink / raw)
  To: 37923; +Cc: tanguy

From: Tanguy Le Carrour <tanguy@bioneland.org>

* gnu/packages/messaging.scm (profanity)[arguments]<#configure-flags>:
Add --enable-omemo, --enable-notifications and --enable-icon.
[native-inputs]: Add libnotify and libsignal-protocol-c.
---
 gnu/packages/messaging.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index f890ad8dd5..b56a3e92cb 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1627,6 +1627,11 @@ are both supported).")
                (base32
                 "0nxh81j8ky0fzv47pip1jb7rs5rrin3jx0f3h632bvpjiya45r1z"))))
     (build-system gnu-build-system)
+    (arguments
+     '(#:configure-flags
+       (list "--enable-omemo"
+             "--enable-icons"
+             "--enable-notifications")))
     (inputs
      `(("curl" ,curl)
        ("expat" ,expat)
@@ -1642,7 +1647,10 @@ are both supported).")
        ("autoconf-archive" ,autoconf-archive)
        ("automake" ,automake)
        ("cmocka" ,cmocka)
+       ("gtk+" ,gtk+-2)
+       ("libnotify" ,libnotify)
        ("libtool" ,libtool)
+       ("libsignal-protocol-c" ,libsignal-protocol-c)
        ("pkg-config" ,pkg-config)))
     (synopsis "Console-based XMPP client")
     (description "Profanity is a console based XMPP client written in C
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH v2 2/4] gnu: profanity: Update home-page URL.
  2019-10-26 16:16 ` [bug#37923] [PATCH v2 1/4] " tanguy
@ 2019-10-26 16:16   ` tanguy
  2019-10-26 16:16   ` [bug#37923] [PATCH v2 3/4] gnu: profanity: Add configure flags, so that build fail if libs are missing tanguy
  2019-10-26 16:16   ` [bug#37923] [PATCH v2 4/4] gnu: profanity: Add configure flags for better defaults tanguy
  2 siblings, 0 replies; 15+ messages in thread
From: tanguy @ 2019-10-26 16:16 UTC (permalink / raw)
  To: 37923; +Cc: tanguy

From: Tanguy Le Carrour <tanguy@bioneland.org>

* gnu/packages/messaging.scm (profanity)[home-page]: Update URL.
---
 gnu/packages/messaging.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index b56a3e92cb..63b14287ce 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1655,7 +1655,7 @@ are both supported).")
     (synopsis "Console-based XMPP client")
     (description "Profanity is a console based XMPP client written in C
 using ncurses and libmesode, inspired by Irssi.")
-    (home-page "http://www.profanity.im")
+    (home-page "https://profanity-im.github.io")
     (license license:gpl3+)))
 
 (define-public libircclient
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH v2 3/4] gnu: profanity: Add configure flags, so that build fail if libs are missing.
  2019-10-26 16:16 ` [bug#37923] [PATCH v2 1/4] " tanguy
  2019-10-26 16:16   ` [bug#37923] [PATCH v2 2/4] gnu: profanity: Update home-page URL tanguy
@ 2019-10-26 16:16   ` tanguy
  2019-10-26 16:16   ` [bug#37923] [PATCH v2 4/4] gnu: profanity: Add configure flags for better defaults tanguy
  2 siblings, 0 replies; 15+ messages in thread
From: tanguy @ 2019-10-26 16:16 UTC (permalink / raw)
  To: 37923; +Cc: tlecarrour@easter-eggs.com, tanguy

From: "tlecarrour@easter-eggs.com" <tlecarrour@easter-eggs.com>

* gnu/packages/messaging.scm (profanity)[arguments]<#configure-flags>:
Add --enable-c-plugins and --enable-otr.
---
 gnu/packages/messaging.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 63b14287ce..626aec4908 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1629,7 +1629,9 @@ are both supported).")
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags
-       (list "--enable-omemo"
+       (list "--enable-c-plugins"
+             "--enable-otr"
+             "--enable-omemo"
              "--enable-icons"
              "--enable-notifications")))
     (inputs
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH v2 4/4] gnu: profanity: Add configure flags for better defaults.
  2019-10-26 16:16 ` [bug#37923] [PATCH v2 1/4] " tanguy
  2019-10-26 16:16   ` [bug#37923] [PATCH v2 2/4] gnu: profanity: Update home-page URL tanguy
  2019-10-26 16:16   ` [bug#37923] [PATCH v2 3/4] gnu: profanity: Add configure flags, so that build fail if libs are missing tanguy
@ 2019-10-26 16:16   ` tanguy
  2 siblings, 0 replies; 15+ messages in thread
From: tanguy @ 2019-10-26 16:16 UTC (permalink / raw)
  To: 37923; +Cc: tlecarrour@easter-eggs.com, tanguy

From: "tlecarrour@easter-eggs.com" <tlecarrour@easter-eggs.com>

* gnu/packages/messaging.scm (profanity)[arguments]<#configure-flags>:
Add --enable-pgp.
---
 gnu/packages/messaging.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 626aec4908..a6e9dcbbb3 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1632,6 +1632,7 @@ are both supported).")
        (list "--enable-c-plugins"
              "--enable-otr"
              "--enable-omemo"
+             "--enable-pgp"
              "--enable-icons"
              "--enable-notifications")))
     (inputs
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH 0/4] gnu: profanity: Add configure flags and inputs for better defaults.
  2019-10-25 15:17 [bug#37923] [PATCH 0/2] gnu: profanity: Add configure flags and inputs for better defaults Tanguy Le Carrour
  2019-10-25 15:20 ` [bug#37923] [PATCH 1/2] " Tanguy Le Carrour
  2019-10-26 16:16 ` [bug#37923] [PATCH v2 1/4] " tanguy
@ 2019-10-26 21:09 ` Tanguy Le Carrour
  2019-10-26 21:11 ` [bug#37923] [PATCH v3 1/4] " tanguy
  3 siblings, 0 replies; 15+ messages in thread
From: Tanguy Le Carrour @ 2019-10-26 21:09 UTC (permalink / raw)
  To: 37923

Wrong author in 2 of the commits! Sorry, sending v3!

-- 
Tanguy

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH v3 1/4] gnu: profanity: Add configure flags and inputs for better defaults.
  2019-10-25 15:17 [bug#37923] [PATCH 0/2] gnu: profanity: Add configure flags and inputs for better defaults Tanguy Le Carrour
                   ` (2 preceding siblings ...)
  2019-10-26 21:09 ` [bug#37923] [PATCH 0/4] gnu: profanity: Add configure flags and inputs " Tanguy Le Carrour
@ 2019-10-26 21:11 ` tanguy
  2019-10-26 21:11   ` [bug#37923] [PATCH v3 2/4] gnu: profanity: Update home-page URL tanguy
                     ` (3 more replies)
  3 siblings, 4 replies; 15+ messages in thread
From: tanguy @ 2019-10-26 21:11 UTC (permalink / raw)
  To: 37923; +Cc: tanguy

From: Tanguy Le Carrour <tanguy@bioneland.org>

* gnu/packages/messaging.scm (profanity)[arguments]<#configure-flags>:
Add --enable-omemo, --enable-notifications and --enable-icon.
[native-inputs]: Add libnotify and libsignal-protocol-c.
---
 gnu/packages/messaging.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index f890ad8dd5..b56a3e92cb 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1627,6 +1627,11 @@ are both supported).")
                (base32
                 "0nxh81j8ky0fzv47pip1jb7rs5rrin3jx0f3h632bvpjiya45r1z"))))
     (build-system gnu-build-system)
+    (arguments
+     '(#:configure-flags
+       (list "--enable-omemo"
+             "--enable-icons"
+             "--enable-notifications")))
     (inputs
      `(("curl" ,curl)
        ("expat" ,expat)
@@ -1642,7 +1647,10 @@ are both supported).")
        ("autoconf-archive" ,autoconf-archive)
        ("automake" ,automake)
        ("cmocka" ,cmocka)
+       ("gtk+" ,gtk+-2)
+       ("libnotify" ,libnotify)
        ("libtool" ,libtool)
+       ("libsignal-protocol-c" ,libsignal-protocol-c)
        ("pkg-config" ,pkg-config)))
     (synopsis "Console-based XMPP client")
     (description "Profanity is a console based XMPP client written in C
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH v3 2/4] gnu: profanity: Update home-page URL.
  2019-10-26 21:11 ` [bug#37923] [PATCH v3 1/4] " tanguy
@ 2019-10-26 21:11   ` tanguy
  2019-10-26 21:11   ` [bug#37923] [PATCH v3 3/4] gnu: profanity: Add configure flags, so that build fail if libs are missing tanguy
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 15+ messages in thread
From: tanguy @ 2019-10-26 21:11 UTC (permalink / raw)
  To: 37923; +Cc: tanguy

From: Tanguy Le Carrour <tanguy@bioneland.org>

* gnu/packages/messaging.scm (profanity)[home-page]: Update URL.
---
 gnu/packages/messaging.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index b56a3e92cb..63b14287ce 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1655,7 +1655,7 @@ are both supported).")
     (synopsis "Console-based XMPP client")
     (description "Profanity is a console based XMPP client written in C
 using ncurses and libmesode, inspired by Irssi.")
-    (home-page "http://www.profanity.im")
+    (home-page "https://profanity-im.github.io")
     (license license:gpl3+)))
 
 (define-public libircclient
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH v3 3/4] gnu: profanity: Add configure flags, so that build fail if libs are missing.
  2019-10-26 21:11 ` [bug#37923] [PATCH v3 1/4] " tanguy
  2019-10-26 21:11   ` [bug#37923] [PATCH v3 2/4] gnu: profanity: Update home-page URL tanguy
@ 2019-10-26 21:11   ` tanguy
  2019-10-26 21:11   ` [bug#37923] [PATCH v3 4/4] gnu: profanity: Add configure flags for better defaults tanguy
  2019-10-28 10:31   ` [bug#37923] [PATCH v3 1/4] gnu: profanity: Add configure flags and inputs " Mathieu Othacehe
  3 siblings, 0 replies; 15+ messages in thread
From: tanguy @ 2019-10-26 21:11 UTC (permalink / raw)
  To: 37923; +Cc: tanguy

From: Tanguy Le Carrour <tanguy@bioneland.org>

* gnu/packages/messaging.scm (profanity)[arguments]<#configure-flags>:
Add --enable-c-plugins and --enable-otr.
---
 gnu/packages/messaging.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 63b14287ce..626aec4908 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1629,7 +1629,9 @@ are both supported).")
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags
-       (list "--enable-omemo"
+       (list "--enable-c-plugins"
+             "--enable-otr"
+             "--enable-omemo"
              "--enable-icons"
              "--enable-notifications")))
     (inputs
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH v3 4/4] gnu: profanity: Add configure flags for better defaults.
  2019-10-26 21:11 ` [bug#37923] [PATCH v3 1/4] " tanguy
  2019-10-26 21:11   ` [bug#37923] [PATCH v3 2/4] gnu: profanity: Update home-page URL tanguy
  2019-10-26 21:11   ` [bug#37923] [PATCH v3 3/4] gnu: profanity: Add configure flags, so that build fail if libs are missing tanguy
@ 2019-10-26 21:11   ` tanguy
  2019-10-28 10:31   ` [bug#37923] [PATCH v3 1/4] gnu: profanity: Add configure flags and inputs " Mathieu Othacehe
  3 siblings, 0 replies; 15+ messages in thread
From: tanguy @ 2019-10-26 21:11 UTC (permalink / raw)
  To: 37923; +Cc: tanguy

From: Tanguy Le Carrour <tanguy@bioneland.org>

* gnu/packages/messaging.scm (profanity)[arguments]<#configure-flags>:
Add --enable-pgp.
---
 gnu/packages/messaging.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 626aec4908..a6e9dcbbb3 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1632,6 +1632,7 @@ are both supported).")
        (list "--enable-c-plugins"
              "--enable-otr"
              "--enable-omemo"
+             "--enable-pgp"
              "--enable-icons"
              "--enable-notifications")))
     (inputs
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#37923] [PATCH v3 1/4] gnu: profanity: Add configure flags and inputs for better defaults.
  2019-10-26 21:11 ` [bug#37923] [PATCH v3 1/4] " tanguy
                     ` (2 preceding siblings ...)
  2019-10-26 21:11   ` [bug#37923] [PATCH v3 4/4] gnu: profanity: Add configure flags for better defaults tanguy
@ 2019-10-28 10:31   ` Mathieu Othacehe
  3 siblings, 0 replies; 15+ messages in thread
From: Mathieu Othacehe @ 2019-10-28 10:31 UTC (permalink / raw)
  To: 37923; +Cc: tanguy, 37923-done


Hello Tanguy,

Pushed with minor changes in commit log and title.

Thanks,

Mathieu

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2019-10-28 10:32 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-25 15:17 [bug#37923] [PATCH 0/2] gnu: profanity: Add configure flags and inputs for better defaults Tanguy Le Carrour
2019-10-25 15:20 ` [bug#37923] [PATCH 1/2] " Tanguy Le Carrour
2019-10-25 15:20   ` [bug#37923] [PATCH 2/2] gnu: profanity: Update home-page URL Tanguy Le Carrour
2019-10-25 17:25   ` [bug#37923] [PATCH 1/2] gnu: profanity: Add configure flags and inputs for better defaults Mathieu Othacehe
2019-10-26 16:12     ` Tanguy Le Carrour
2019-10-26 16:16 ` [bug#37923] [PATCH v2 1/4] " tanguy
2019-10-26 16:16   ` [bug#37923] [PATCH v2 2/4] gnu: profanity: Update home-page URL tanguy
2019-10-26 16:16   ` [bug#37923] [PATCH v2 3/4] gnu: profanity: Add configure flags, so that build fail if libs are missing tanguy
2019-10-26 16:16   ` [bug#37923] [PATCH v2 4/4] gnu: profanity: Add configure flags for better defaults tanguy
2019-10-26 21:09 ` [bug#37923] [PATCH 0/4] gnu: profanity: Add configure flags and inputs " Tanguy Le Carrour
2019-10-26 21:11 ` [bug#37923] [PATCH v3 1/4] " tanguy
2019-10-26 21:11   ` [bug#37923] [PATCH v3 2/4] gnu: profanity: Update home-page URL tanguy
2019-10-26 21:11   ` [bug#37923] [PATCH v3 3/4] gnu: profanity: Add configure flags, so that build fail if libs are missing tanguy
2019-10-26 21:11   ` [bug#37923] [PATCH v3 4/4] gnu: profanity: Add configure flags for better defaults tanguy
2019-10-28 10:31   ` [bug#37923] [PATCH v3 1/4] gnu: profanity: Add configure flags and inputs " Mathieu Othacehe

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).