[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/17: gnu: pidgin: Make some cosmetic changes.
From: |
guix-commits |
Subject: |
01/17: gnu: pidgin: Make some cosmetic changes. |
Date: |
Sun, 3 Jan 2021 11:30:45 -0500 (EST) |
dannym pushed a commit to branch master
in repository guix.
commit 60e1fa208a0a91d7de9e786412d97638268b348c
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Wed Dec 30 14:59:50 2020 -0500
gnu: pidgin: Make some cosmetic changes.
* gnu/packages/messaging.scm (pidgin): Make some cosmetic changes.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/messaging.scm | 57 +++++++++++++++++++++++++---------------------
1 file changed, 31 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 946be3b..2e3deee 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -719,14 +719,17 @@ authentication.")
(source
(origin
(method url-fetch)
- (uri (string-append "mirror://sourceforge/pidgin/Pidgin/"
- version "/pidgin-" version ".tar.bz2"))
+ (uri
+ (string-append "mirror://sourceforge/pidgin/Pidgin/"
+ version "/pidgin-" version ".tar.bz2"))
(sha256
(base32 "13vdqj70315p9rzgnbxjp9c51mdzf1l4jg1kvnylc4bidw61air7"))
- (patches (search-patches "pidgin-add-search-path.patch"
- ;; Remove the snippet and bootstrapping
- ;; native-inputs together with this patch.
- "pidgin-libnm.patch"))
+ (patches
+ (search-patches
+ "pidgin-add-search-path.patch"
+ ;; Remove the snippet and bootstrapping
+ ;; native-inputs together with this patch.
+ "pidgin-libnm.patch"))
(modules '((guix build utils)))
(snippet
'(begin
@@ -741,7 +744,6 @@ authentication.")
("gconf" ,gconf)
("python" ,python-2)
("doxygen" ,doxygen)
-
;; For bootstrapping after applying pidgin-libnm.patch.
("autoconf" ,autoconf)
("automake" ,automake)
@@ -774,30 +776,33 @@ authentication.")
("startup-notification" ,startup-notification)))
(arguments
`(#:configure-flags
- (list "--disable-gtkspell"
- "--disable-tcl"
- "--disable-meanwhile"
- "--disable-vv" ; XXX remove when we have farstream and gstreamer
- "--disable-gstreamer" ; XXX patches needed to support
gstreamer-1.0
- "--enable-cyrus-sasl"
- (string-append "--with-ncurses-headers="
- (assoc-ref %build-inputs "ncurses")
- "/include"))))
+ (list
+ "--disable-gtkspell"
+ "--disable-tcl"
+ "--disable-meanwhile"
+ "--disable-vv" ; XXX remove when we have farstream and gstreamer
+ "--disable-gstreamer" ; XXX patches needed to support gstreamer-1.0
+ "--enable-cyrus-sasl"
+ (string-append "--with-ncurses-headers="
+ (assoc-ref %build-inputs "ncurses")
+ "/include"))))
(native-search-paths
- (list (search-path-specification
- (variable "PURPLE_PLUGIN_PATH")
- (files (list (string-append "lib/purple-"
- (version-major version))
- "lib/pidgin")))))
+ (list
+ (search-path-specification
+ (variable "PURPLE_PLUGIN_PATH")
+ (files
+ (list
+ (string-append "lib/purple-"
+ (version-major version))
+ "lib/pidgin")))))
(home-page "https://www.pidgin.im/";)
(synopsis "Graphical multi-protocol instant messaging client")
- (description
- "Pidgin is a modular instant messaging client that supports many popular
-chat protocols.")
+ (description "Pidgin is a modular instant messaging client that supports
+many popular chat protocols.")
(license
(list
- license:gpl2+ ; Most of the code
- license:lgpl2.1 ; GG protocol plugin (libpurple/protocols/gg/lib)
+ license:gpl2+ ; Most of the code
+ license:lgpl2.1 ; GG protocol plugin (libpurple/protocols/gg/lib)
license:lgpl2.0+ ; OSCAR protocol plugin (libpurple/protocols/oscar)
;; The following licenses cover the zephyr protocol plugin:
(license:non-copyleft
- branch master updated (9d34b04 -> f2f7395), guix-commits, 2021/01/03
- 01/17: gnu: pidgin: Make some cosmetic changes.,
guix-commits <=
- 06/17: gnu: pidgin: Enable CAP., guix-commits, 2021/01/03
- 02/17: gnu: pidgin: Re-arrange inputs in alphabetical order., guix-commits, 2021/01/03
- 04/17: gnu: pidgin: Enable support for mono., guix-commits, 2021/01/03
- 05/17: gnu: pidgin: Enable meanwhile., guix-commits, 2021/01/03
- 09/17: gnu: pidgin: Enable support for Tk., guix-commits, 2021/01/03
- 03/17: gnu: pidgin: Add missing inputs., guix-commits, 2021/01/03
- 07/17: gnu: pidgin: Enable SILC protocol support., guix-commits, 2021/01/03
- 08/17: gnu: pidgin: Enable support for Tcl., guix-commits, 2021/01/03
- 10/17: gnu: pidgin: Upgrade to 2.14.1., guix-commits, 2021/01/03
- 14/17: gnu: libotr: Update license., guix-commits, 2021/01/03