guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: bitlbee: Update to 3.4.


From: Mark H. Weaver
Subject: 01/01: gnu: bitlbee: Update to 3.4.
Date: Wed, 20 May 2015 20:07:17 +0000

mhw pushed a commit to branch master
in repository guix.

commit 3a6fb858ad95dd422b2519d5862d5db61deeb2a5
Author: Mark H Weaver <address@hidden>
Date:   Wed May 20 14:55:26 2015 -0400

    gnu: bitlbee: Update to 3.4.
    
    * gnu/packages/patches/bitlbee-configure-doc-fix.patch: New file.
    * gnu-system.am (dist_patch_DATA): Add it.
    * gnu/packages/messaging.scm (bitlbee): Update to 3.4.  Add patch.
      [inputs]: Remove 'zlib'.
---
 gnu-system.am                                      |    1 +
 gnu/packages/messaging.scm                         |    6 +++---
 .../patches/bitlbee-configure-doc-fix.patch        |   15 +++++++++++++++
 3 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/gnu-system.am b/gnu-system.am
index 5ba48d1..a26686b 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -387,6 +387,7 @@ dist_patch_DATA =                                           
\
   gnu/packages/patches/bigloo-gc-shebangs.patch                        \
   gnu/packages/patches/binutils-ld-new-dtags.patch             \
   gnu/packages/patches/binutils-loongson-workaround.patch      \
+  gnu/packages/patches/bitlbee-configure-doc-fix.patch         \
   gnu/packages/patches/calibre-drop-unrar.patch                        \
   gnu/packages/patches/calibre-no-updates-dialog.patch         \
   gnu/packages/patches/cdparanoia-fpic.patch                   \
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index fd857b1..99c5bdb 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -86,20 +86,20 @@ providing:
 (define-public bitlbee
   (package
     (name "bitlbee")
-    (version "3.2.2")
+    (version "3.4")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://get.bitlbee.org/src/bitlbee-";
                                   version ".tar.gz"))
               (sha256
-               (base32 
"13jmcxxgli82wb2n4hs091159xk8rgh7nb02f478lgpjh6996f5s"))))
+               (base32 "0plx4dryf8i6hz7vghg84z5f6w6rkw1l8ckl4c4wh5zxpd3ddfnf"))
+              (patches (list (search-patch 
"bitlbee-configure-doc-fix.patch")))))
     (build-system gnu-build-system)
     (native-inputs `(("pkg-config" ,pkg-config)
                      ("check" ,check)))
     (inputs `(("glib" ,glib)
               ("libotr" ,libotr)
               ("gnutls" ,gnutls)
-              ("zlib" ,zlib)  ; Needed to satisfy "pkg-config --exists gnutls"
               ("python" ,python-2)
               ("perl" ,perl)))
     (arguments
diff --git a/gnu/packages/patches/bitlbee-configure-doc-fix.patch 
b/gnu/packages/patches/bitlbee-configure-doc-fix.patch
new file mode 100644
index 0000000..ade0b7f
--- /dev/null
+++ b/gnu/packages/patches/bitlbee-configure-doc-fix.patch
@@ -0,0 +1,15 @@
+Fix the check for the prebuilt helpfile when xsltproc is not available.
+
+--- bitlbee-3.4/configure.orig 2015-03-25 18:09:10.000000000 -0400
++++ bitlbee-3.4/configure      2015-05-20 14:51:33.627975970 -0400
+@@ -650,8 +650,8 @@
+ 
+ if [ "$doc" = "1" ]; then
+       if [ ! -e doc/user-guide/help.txt ] && \
+-           ! type xmlto > /dev/null 2> /dev/null || \
+-           ! type xsltproc > /dev/null 2> /dev/null
++           (! type xmlto > /dev/null 2> /dev/null || \
++            ! type xsltproc > /dev/null 2> /dev/null)
+       then
+               echo
+               echo 'WARNING: Building from an unreleased source tree without 
prebuilt helpfile.'



reply via email to

[Prev in Thread] Current Thread [Next in Thread]