all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#46653] Make some changes to Profanity stuff
@ 2021-02-20  3:08 Raghav Gururajan via Guix-patches via
       [not found] ` <handler.46653.B.161379050225230.ack@debbugs.gnu.org>
  0 siblings, 1 reply; 10+ messages in thread
From: Raghav Gururajan via Guix-patches via @ 2021-02-20  3:08 UTC (permalink / raw)
  To: 46653


[-- Attachment #1.1.1: Type: text/plain, Size: 0 bytes --]



[-- Attachment #1.1.2: 0001-gnu-libmesode-Change-source-url-and-home-page-to-off.patch --]
[-- Type: text/x-patch, Size: 1517 bytes --]

From aff3b7f4d00497c13b36cc18bbaab377ba73236c Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <rg@raghavgururajan.name>
Date: Fri, 19 Feb 2021 19:37:30 -0500
Subject: [PATCH 1/4] gnu: libmesode: Change source url and home-page to
 official one.

* gnu/packages/messaging.scm (libmesode): Change source url and home-page to official one.
---
 gnu/packages/messaging.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index a60c9ec8f6..375d90ae85 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -2051,7 +2051,7 @@ is also scriptable and extensible via Guile.")
     (source (origin
               (method git-fetch)
               (uri (git-reference
-                    (url "https://github.com/boothj5/libmesode")
+                    (url "https://github.com/profanity-im/libmesode")
                     (commit version)))
               (file-name (git-file-name name version))
               (sha256
@@ -2070,7 +2070,7 @@ is also scriptable and extensible via Guile.")
     (description "Libmesode is a fork of libstrophe for use with Profanity
 XMPP Client.  In particular, libmesode provides extra TLS functionality such as
 manual SSL certificate verification.")
-    (home-page "https://github.com/boothj5/libmesode")
+    (home-page "https://github.com/profanity/libmesode")
     ;; Dual-licensed.
     (license (list license:gpl3+ license:x11))))
 
-- 
2.30.1


[-- Attachment #1.1.3: 0002-gnu-profanity-Add-missing-inputs.patch --]
[-- Type: text/x-patch, Size: 992 bytes --]

From 66846151205e6f49a1391101caa095026c4d48cf Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <rg@raghavgururajan.name>
Date: Fri, 19 Feb 2021 19:46:39 -0500
Subject: [PATCH 2/4] gnu: profanity: Add missing inputs.

* gnu/packages/messaging.scm (profanity) [inputs]: Add libgcrypt.
---
 gnu/packages/messaging.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 375d90ae85..f79fe93e7d 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -2142,10 +2142,12 @@ are both supported).")
        ("glib" ,glib)
        ("gpgme" ,gpgme)
        ("gtk+" ,gtk+-2)
+       ("libgcrypt" ,libgcrypt)
        ("libmesode" ,libmesode)
        ("libnotify" ,libnotify)
        ("libotr" ,libotr)
        ("libsignal-protocol-c" ,libsignal-protocol-c)
+       ;; ("libxss" ,libxss)
        ("ncurses" ,ncurses)
        ("openssl" ,openssl)
        ("python" ,python-wrapper)
-- 
2.30.1


[-- Attachment #1.1.4: 0003-gnu-libmesode-Disable-static-libraries.patch --]
[-- Type: text/x-patch, Size: 1083 bytes --]

From 07e88a75facc34bf691f4efede96114644c93d43 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <rg@raghavgururajan.name>
Date: Fri, 19 Feb 2021 20:24:15 -0500
Subject: [PATCH 3/4] gnu: libmesode: Disable static libraries.

* gnu/packages/messaging.scm (libmesode) [arguments]<#:tests?>: New argument.
<#:configure-flags>[--disable-static]: New flag.
---
 gnu/packages/messaging.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index f79fe93e7d..189b789811 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -2058,6 +2058,11 @@ is also scriptable and extensible via Guile.")
                (base32
                 "1bxnkhrypgv41qyy1n545kcggmlw1hvxnhwihijhhcf2pxd2s654"))))
     (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f         ; https://github.com/profanity-im/libmesode/issues/20
+       #:configure-flags
+       (list
+        "--disable-static")))
     (inputs
      `(("expat" ,expat)
        ("openssl" ,openssl)))
-- 
2.30.1


[-- Attachment #1.1.5: 0004-gnu-profanity-Disable-static-libraries.patch --]
[-- Type: text/x-patch, Size: 823 bytes --]

From 6293a8e4b2b9916b6091027caa218a84826b4bc9 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <rg@raghavgururajan.name>
Date: Fri, 19 Feb 2021 20:28:57 -0500
Subject: [PATCH 4/4] gnu: profanity: Disable static libraries.

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

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 189b789811..3806e092e5 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -2126,6 +2126,7 @@ are both supported).")
     (arguments
      `(#:configure-flags
        (list
+        "--disable-static"
         "--enable-notifications"
         "--enable-python-plugins"
         "--enable-c-plugins"
-- 
2.30.1


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

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

end of thread, other threads:[~2021-02-24  0:03 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-20  3:08 [bug#46653] Make some changes to Profanity stuff Raghav Gururajan via Guix-patches via
     [not found] ` <handler.46653.B.161379050225230.ack@debbugs.gnu.org>
2021-02-23 17:08   ` [bug#46653] Make some changes to Profanity stuff (v2) Raghav Gururajan via Guix-patches via
2021-02-23 17:28     ` Leo Prikler
2021-02-23 17:32       ` Raghav Gururajan via Guix-patches via
2021-02-23 17:39         ` Leo Prikler
2021-02-23 17:41           ` Raghav Gururajan via Guix-patches via
2021-02-23 17:48             ` [bug#46653] Make some changes to Profanity stuff (v3) Raghav Gururajan via Guix-patches via
2021-02-23 18:01               ` Leo Prikler
2021-02-23 20:01                 ` [bug#46653] Make some changes to Profanity stuff (v4) Raghav Gururajan via Guix-patches via
2021-02-24  0:02                   ` bug#46653: " Leo Prikler

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.