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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
| | ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
;;;
;;; 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 debbugs)
#:use-module (gnu packages)
#:use-module (gnu packages links)
#:use-module (gnu packages perl)
#:use-module (gnu packages mail)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix utils)
#:use-module (guix build-system gnu))
(define-public debbugs
(package
(name "debbugs")
(version "2.4.1.1")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://debian/pool/main/d/debbugs/"
name "_" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1j6zg7g2d97ihc8ydb9pl56xyh2x202vk7l3cld01xaa5ssxlxgs"))))
(build-system gnu-build-system)
(inputs
`(("perl" ,perl)
("links" ,links)))
(arguments
`(#:tests? #f ; No checks
#:phases
(modify-phases %standard-phases
(replace 'configure ; No configure
(lambda _
(substitute* "Makefile"
(("/usr") ""))
(setenv "DESTDIR" (assoc-ref %outputs "out"))))
(add-before 'build 'create-missing-dir
(lambda _
(mkdir-p (string-append (assoc-ref %outputs "out")
"/share/doc/debbugs"))))
(add-before 'build 'fix-it-all
(lambda _
(substitute* (list "cgi/pkgreport.cgi" "cgi/bugreport.cgi" "cgi/common.pl"
"scripts/processall.in" "scripts/rebuild.in"
"scripts/service.in" "scripts/db2html.in" "scripts/config.in"
"scripts/html-control.in" "scripts/summary.in"
"scripts/process.in" "scripts/expire.in"
"scripts/receive.in" "scripts/mailsummary.in"
"html/Reporting.html.in" "debbugs-service")
(("/usr")
(assoc-ref %outputs "out")))
(substitute* "debian/debbugsconfig"
(("/etc")
(string-append (assoc-ref %outputs "out") "/etc"))
(("/usr/share/debbugs/examples/")
(string-append (assoc-ref %outputs "out")
"/share/debbugs/examples/"))
(("/usr/bin/links")
(string-append (assoc-ref %build-inputs "links")
"/bin/links")))
(substitute* "scripts/config.in"
(("/etc")
(string-append (assoc-ref %outputs "out") "/etc"))
(("/var")
(string-append (assoc-ref %outputs "out") "/var"))
(("/debian")
(string-append (assoc-ref %outputs "out") "/debian")))))
(add-after 'install 'wrap-programs
(lambda* (#:key outputs #:allow-other-keys)
;; Make sure all executables in "bin" find the Perl modules
;; provided by this package at runtime.
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin/"))
(path (getenv "PERL5LIB")))
(for-each (lambda (file)
(wrap-program file
`("PERL5LIB" ":" prefix (,path))))
(find-files bin "\\.*$"))
#t))))))
(home-page "http://www.debian.org/Bugs/")
(synopsis "Bug tracking system based on the active Debian BTS")
(description
"Debbugs is a bug tracking system which files details of bugs reported
by users and developers. Each bug is given a number, and is kept on file
until it is marked as having been dealt with. The system is mainly
controlled by e-mail, but the bug reports can be viewed using the WWW.")
(license license:gpl2)))
|