unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob d453dfe101c2bce938f50c95897314117f7b6d36 3712 bytes (raw)
name: gnu/packages/rabbitmq.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix 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.
;;;
;;; GNU Guix 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 GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages rabbitmq)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix utils)
  #:use-module (guix build-system gnu)
  #:use-module (guix download)
  #:use-module (guix packages)
  #:use-module (gnu packages base)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages xml)
  #:use-module (gnu packages rsync)
  #:use-module (gnu packages erlang)
  #:use-module (gnu packages elixir)
  #:use-module (gnu packages python))

(define-public rabbitmq
  (package
    (name "rabbitmq")
    (version "3.7.4")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://github.com/rabbitmq/rabbitmq-server/releases/download/v"
                    version
                    "/rabbitmq-server-" version ".tar.xz"))
              (file-name (string-append name "-" version ".tar.xz"))
              (sha256
               (base32
                "0y3c3kmj2jnfic4rzfn5x0raigkgscxv94fn3ijnnk535b209iw8"))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'patch-source
           (lambda* (#:key inputs #:allow-other-keys)
             (substitute* "deps/rabbit_common/src/vm_memory_monitor.erl"
               (("getconf") (string-append (assoc-ref inputs "glibc")
                                           "/bin/getconf")))
             #t))
         (delete 'configure)
         (delete 'check)
         (add-after 'install 'patch-scripts
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out")))
               (substitute* (string-append out "/sbin/rabbitmq-server")
                 (("uname") (which "uname"))
                 (("mkdir") (which "mkdir"))
                 (("cp ") (string-append (which "cp") " "))
                 (("\\$\\{ERL\\_DIR\\}") (string-append (dirname (which "erl"))
                                                        "/"))
                 (("dirname") (which "dirname")))
               (substitute* (string-append out "/sbin/rabbitmq-env")
                 (("dirname") (which "dirname"))
                 (("\\$\\{ERL\\_DIR\\}") (string-append (dirname (which "erl"))
                                                        "/"))
                 (("\\| tr") (string-append "| " (which "tr")))
                 (("basename") (which "basename"))
                 (("sed") (which "sed")))
               #t))))
       #:make-flags
       (list (string-append "RMQ_ERLAPP_DIR=" (assoc-ref %outputs "out")))))
    (native-inputs
     `(("erlang" ,erlang)
       ("elixir" ,elixir)
       ("python" ,python-wrapper)
       ("libxslt" ,libxslt)
       ("rsync" ,rsync)
       ("glibc",glibc)
       ("zip" ,zip)))
    (home-page "http://www.rabbitmq.com/")
    (synopsis "TODO")
    (description "TODO")
    (license "TODO")))


debug log:

solving d453dfe10 ...
found d453dfe10 in https://yhetil.org/guix-patches/20180520203958.25330-1-mail@cbaines.net/

applying [1/1] https://yhetil.org/guix-patches/20180520203958.25330-1-mail@cbaines.net/
diff --git a/gnu/packages/rabbitmq.scm b/gnu/packages/rabbitmq.scm
new file mode 100644
index 000000000..d453dfe10

Checking patch gnu/packages/rabbitmq.scm...
1:96: new blank line at EOF.
+
Applied patch gnu/packages/rabbitmq.scm cleanly.
warning: 1 line adds whitespace errors.

index at:
100644 d453dfe101c2bce938f50c95897314117f7b6d36	gnu/packages/rabbitmq.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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).