all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 28d7de9719f36503061915a9e47bd1d73f4a10f3 3026 bytes (raw)
name: modules/past/packages/build-tools.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
 
;;; Guix Past --- Functional package management for GNU Guix.
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; This file is part of Guix Past.
;;;
;;; Guix Past is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; Guix Past is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with Guix Past.  If not, see <http://www.gnu.org/licenses/>.

(define-module (past packages build-tools)
  #:use-module (guix build-system gnu)
  #:use-module (guix gexp)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages docbook)
  #:use-module (gnu packages python)
  #:use-module (gnu packages swig)
  #:use-module (gnu packages xml))

(define-public bakefile
  (package
    (name "bakefile")
    ;; XXX: Use the "legacy" branch, which is still used and supported by
    ;; wxWidgets, *and* has a proper build system (Autotools) and no bundled
    ;; jar.
    (version "0.2.13")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/vslavik/bakefile")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32 "1mx3i4lywri9vg7p89r9768gjzqi752zjcrg9nzipgdj0r28yq8l"))
              ;; Clean up the source from random binaries.
              (snippet '(delete-file "build/mac-python2.3.tar.gz"))))
    (build-system gnu-build-system)
    (arguments
     (list
      #:configure-flags #~(list "--enable-maintainer-mode")
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'install 'install-html-doc
            (lambda _
              (let ((doc (string-append #$output "/share/doc/bakefile")))
                (mkdir-p doc)
                (copy-recursively "doc/html" doc)))))))
    ;; No Python 3 support on the horizon (see:
    ;; https://github.com/vslavik/bakefile/issues/109).
    (native-inputs
     (list autoconf
           automake
           docbook-xml-4.1.2
           docbook-xsl
           libtool
           libxml2                      ;for XML_CATALOG_FILES
           libxslt
           python-2
           swig))
    (home-page "https://bakefile.org/")
    (synopsis "Native makefiles generator")
    (description "Bakefile takes compiler-independent description of build
tasks as its input and outputs native makefile(s) such as that of GNU Make,
Visual C++ project, etc.")
    (license license:expat)))

debug log:

solving 28d7de9 ...
found 28d7de9 in https://yhetil.org/guix/20230619145024.26050-1-maxim.cournoyer@gmail.com/
found 01cd42a in https://yhetil.org/guix/20230616030326.13653-1-maxim.cournoyer@gmail.com/

applying [1/2] https://yhetil.org/guix/20230616030326.13653-1-maxim.cournoyer@gmail.com/
diff --git a/modules/past/packages/build-tools.scm b/modules/past/packages/build-tools.scm
new file mode 100644
index 0000000..01cd42a


applying [2/2] https://yhetil.org/guix/20230619145024.26050-1-maxim.cournoyer@gmail.com/
diff --git a/modules/past/packages/build-tools.scm b/modules/past/packages/build-tools.scm
index 01cd42a..28d7de9 100644

Checking patch modules/past/packages/build-tools.scm...
Applied patch modules/past/packages/build-tools.scm cleanly.
Checking patch modules/past/packages/build-tools.scm...
Applied patch modules/past/packages/build-tools.scm cleanly.

index at:
100644 28d7de9719f36503061915a9e47bd1d73f4a10f3	modules/past/packages/build-tools.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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.