guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add autobuild.


From: Mathieu Lirzin
Subject: 01/01: gnu: Add autobuild.
Date: Sun, 04 Oct 2015 18:27:20 +0000

mthl pushed a commit to branch master
in repository guix.

commit 2b00a55064d2fbddb53209723cebc04710b33893
Author: Mathieu Lirzin <address@hidden>
Date:   Thu Oct 1 22:55:34 2015 +0200

    gnu: Add autobuild.
    
    * gnu/packages/autotools.scm (autobuild): New variable.
---
 gnu/packages/autotools.scm |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
index f2b4d95..0d9a5b5 100644
--- a/gnu/packages/autotools.scm
+++ b/gnu/packages/autotools.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2012 Nikita Karetnikov <address@hidden>
 ;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <address@hidden>
+;;; Copyright © 2015 Mathieu Lirzin <address@hidden>
 ;;; Copyright © 2014 Manolis Fragkiskos Ragkousis <address@hidden>
 ;;; Copyright © 2015 Mark H Weaver <address@hidden>
 ;;;
@@ -158,6 +159,30 @@ exec ~a --no-auto-compile \"$0\" \"address@hidden"
                 port)))
            (chmod (string-append bin "/autoconf") #o555)))))))
 
+(define-public autobuild
+  (package
+    (name "autobuild")
+    (version "5.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://savannah/autobuild/autobuild-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "0gv7g61ja9q9zg1m30k4snqwwy1kq7b4df6sb7d2qra7kbdq8af1"))))
+    (build-system gnu-build-system)
+    (inputs `(("perl" ,perl)))
+    (synopsis "Process generated build logs")
+    (description "Autobuild is a package that processes build logs generated
+when building software.  Autobuild is primarily focused on packages using
+Autoconf and Automake, but can be used with other build systems too.
+Autobuild generates an HTML summary file, containing links to each build log.
+The summary includes project name, version, build hostname, host type (cross
+compile aware), date of build, and indication of success or failure.  The
+output is indexed in many ways to simplify browsing.")
+    (home-page "http://josefsson.org/autobuild/";)
+    (license gpl3+)))
+
 (define-public automake
   (package
     (name "automake")



reply via email to

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