gnu: emacs-sly: Update to 20200228.
[jackhill/guix/guix.git] / gnu / packages / patchutils.scm
CommitLineData
8a9d928f 1;;; GNU Guix --- Functional package management for GNU
68faa20e 2;;; Copyright © 2014, 2018 Eric Bavier <bavier@member.fsf.org>
9e286eb1 3;;; Copyright © 2015, 2018 Leo Famulari <leo@famulari.name>
8f55136a 4;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
4764c6cc 5;;; Copyright © 2019 Christopher Baines <mail@cbaines.net>
8a9d928f
EB
6;;;
7;;; This file is part of GNU Guix.
8;;;
9;;; GNU Guix is free software; you can redistribute it and/or modify it
10;;; under the terms of the GNU General Public License as published by
11;;; the Free Software Foundation; either version 3 of the License, or (at
12;;; your option) any later version.
13;;;
14;;; GNU Guix is distributed in the hope that it will be useful, but
15;;; WITHOUT ANY WARRANTY; without even the implied warranty of
16;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;;; GNU General Public License for more details.
18;;;
19;;; You should have received a copy of the GNU General Public License
20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
21
22(define-module (gnu packages patchutils)
be0be3de 23 #:use-module (guix utils)
8a9d928f
EB
24 #:use-module (guix packages)
25 #:use-module (guix licenses)
26 #:use-module (guix download)
3b6eddb2 27 #:use-module (guix git-download)
8a9d928f 28 #:use-module (guix build-system gnu)
3b6eddb2 29 #:use-module (guix build-system python)
8a9d928f
EB
30 #:use-module (gnu packages)
31 #:use-module (gnu packages ed)
32 #:use-module (gnu packages base)
33 #:use-module (gnu packages bash)
be0be3de 34 #:use-module (gnu packages check)
4764c6cc
CB
35 #:use-module (gnu packages databases)
36 #:use-module (gnu packages django)
8a9d928f
EB
37 #:use-module (gnu packages file)
38 #:use-module (gnu packages gawk)
24a80064 39 #:use-module (gnu packages gettext)
be0be3de
PN
40 #:use-module (gnu packages glib)
41 #:use-module (gnu packages gnome)
42 #:use-module (gnu packages gtk)
8a9d928f 43 #:use-module (gnu packages less)
9e286eb1
LF
44 #:use-module (gnu packages mail)
45 #:use-module (gnu packages ncurses)
285d8f0d 46 #:use-module (gnu packages perl)
3b6eddb2 47 #:use-module (gnu packages python)
44d10b1f 48 #:use-module (gnu packages python-xyz)
d7d1fc82 49 #:use-module (gnu packages version-control)
285d8f0d 50 #:use-module (gnu packages xml))
8a9d928f
EB
51
52(define-public patchutils
53 (package
54 (name "patchutils")
5f230fb2 55 (version "0.3.4")
8a9d928f
EB
56 (source
57 (origin
58 (method url-fetch)
59 (uri (string-append "http://cyberelk.net/tim/data/patchutils/stable/"
60 name "-" version ".tar.xz"))
61 (sha256
62 (base32
5f230fb2
EB
63 "0xp8mcfyi5nmb5a2zi5ibmyshxkb1zv1dgmnyn413m7ahgdx8mfg"))
64 (patches (search-patches "patchutils-test-perms.patch"))))
8a9d928f
EB
65 (build-system gnu-build-system)
66 (inputs `(("perl" ,perl)))
67 (arguments
68 '(#:parallel-tests? #f
dc1d3cde
KK
69 #:phases
70 (modify-phases %standard-phases
71 (add-before 'check 'patch-test-scripts
72 (lambda _
5f230fb2
EB
73 (substitute* (find-files "tests" "^run-test$")
74 (("/bin/echo") (which "echo")))
dc1d3cde
KK
75 #t))
76 (add-after 'install 'wrap-program
77 ;; Point installed scripts to the utilities they need.
78 (lambda* (#:key inputs outputs #:allow-other-keys)
79 (let* ((out (assoc-ref outputs "out"))
80 (diffutils (assoc-ref inputs "diffutils"))
81 (sed (assoc-ref inputs "sed"))
82 (gawk (assoc-ref inputs "gawk")))
83 (for-each
84 (lambda (prog)
85 (wrap-program (string-append out "/bin/" prog)
86 `("PATH" ":" prefix
87 ,(map (lambda (dir)
88 (string-append dir "/bin"))
89 (list diffutils sed gawk)))))
90 '("dehtmldiff" "editdiff" "espdiff")))
91 #t)))))
8a9d928f
EB
92 (home-page "http://cyberelk.net/tim/software/patchutils")
93 (synopsis "Collection of tools for manipulating patch files")
94 (description
95 "Patchutils is a collection of programs that can manipulate patch files
96in useful ways such as interpolating between two pre-patches, combining two
97incremental patches, fixing line numbers in hand-edited patches, and simply
98listing the files modified by a patch.")
99 (license gpl2+)))
100
101(define-public quilt
102 (package
103 (name "quilt")
eea75c43 104 (version "0.66")
8a9d928f
EB
105 (source
106 (origin
eea75c43
TGR
107 (method url-fetch)
108 (uri (string-append "mirror://savannah/quilt/"
109 "quilt-" version ".tar.gz"))
110 (sha256
111 (base32 "01vfvk4pqigahx82fhaaffg921ivd3k7rylz1yfvy4zbdyd32jri"))))
8a9d928f 112 (build-system gnu-build-system)
24a80064
EB
113 (native-inputs
114 `(("gettext" ,gnu-gettext)))
8a9d928f
EB
115 (inputs `(("perl" ,perl)
116 ("less" ,less)
0253ab39 117 ("file" ,file)
d7d1fc82
EB
118 ("ed" ,ed)
119 ("diffstat" ,diffstat)))
8a9d928f
EB
120 (arguments
121 '(#:parallel-tests? #f
dc1d3cde
KK
122 #:phases
123 (modify-phases %standard-phases
124 (add-before 'check 'patch-tests
125 (lambda _
126 (substitute*
127 '("test/run"
be0be3de 128 "test/edit.test")
dc1d3cde 129 (("/bin/sh") (which "sh")))
dc1d3cde
KK
130 #t))
131 (add-after 'install 'wrap-program
132 ;; quilt's configure checks for the absolute path to the utilities it
133 ;; needs, but uses only the name when invoking them, so we need to
134 ;; make sure the quilt script can find those utilities when run.
135 (lambda* (#:key inputs outputs #:allow-other-keys)
136 (let* ((out (assoc-ref outputs "out"))
137 (coreutils (assoc-ref inputs "coreutils"))
138 (diffutils (assoc-ref inputs "diffutils"))
139 (findutils (assoc-ref inputs "findutils"))
d7d1fc82 140 (diffstat (assoc-ref inputs "diffstat"))
dc1d3cde
KK
141 (less (assoc-ref inputs "less"))
142 (file (assoc-ref inputs "file"))
143 (ed (assoc-ref inputs "ed"))
144 (sed (assoc-ref inputs "sed"))
145 (bash (assoc-ref inputs "bash"))
146 (grep (assoc-ref inputs "grep")))
147 (wrap-program (string-append out "/bin/quilt")
148 `("PATH" ":" prefix
149 ,(map (lambda (dir)
150 (string-append dir "/bin"))
151 (list coreutils diffutils findutils
d7d1fc82
EB
152 less file ed sed bash grep
153 diffstat)))))
dc1d3cde 154 #t)))))
8a9d928f
EB
155 (home-page "https://savannah.nongnu.org/projects/quilt/")
156 (synopsis "Script for managing patches to software")
157 (description
158 "Quilt allows you to easily manage large numbers of patches by keeping
159track of the changes each patch makes. Patches can be applied, un-applied,
160refreshed, and more.")
161 (license gpl2)))
285d8f0d
162
163(define-public colordiff
164 (package
165 (name "colordiff")
58e3603e 166 (version "1.0.18")
285d8f0d 167 (source
8d479d27
LF
168 (origin
169 (method url-fetch)
58e3603e
TGR
170 (uri (list (string-append "https://www.colordiff.org/colordiff-"
171 version ".tar.gz")
172 (string-append "http://www.colordiff.org/archive/colordiff-"
8d479d27 173 version ".tar.gz")))
285d8f0d 174 (sha256
8d479d27 175 (base32
58e3603e 176 "1q6n60n4b9fnzccxyxv04mxjsql4ddq17vl2c74ijvjdhpcfrkr9"))))
285d8f0d
177 (build-system gnu-build-system)
178 (arguments
58e3603e 179 `(#:tests? #f ; no tests
285d8f0d
180 #:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))
181 "INSTALL_DIR=/bin" "MAN_DIR=/share/man/man1")
182 #:phases
dc1d3cde 183 (modify-phases %standard-phases
58e3603e
TGR
184 (delete 'configure) ; no configure script
185 (delete 'build)))) ; nothing to build
285d8f0d
186 (inputs
187 `(("perl" ,perl)
188 ("xmlto" ,xmlto)))
8cccd09d 189 (home-page "https://www.colordiff.org")
285d8f0d
190 (synopsis "Display diff output with colors")
191 (description
192 "Colordiff is Perl script wrapper on top of diff command which provides
193'syntax highlighting' for various patch formats.")
194 (license gpl2+)))
3b6eddb2
LC
195
196(define-public patches
5ca54f41 197 (let ((commit "ef1b8a7d954b82ed4af3a08fd63d2085d19090ef"))
3b6eddb2
LC
198 (package
199 (name "patches")
5ca54f41
LC
200 (home-page "https://github.com/stefanha/patches")
201 (version (string-append "0.0-1." (string-take commit 7)))
3b6eddb2
LC
202 (source (origin
203 (method git-fetch)
204 (uri (git-reference
5ca54f41 205 (url home-page)
3b6eddb2
LC
206 (commit commit)))
207 (sha256
208 (base32
5ca54f41
LC
209 "11rdmhv0l1s8nqb20ywmw2zqizczch2p62qf9apyx5wqgxlnjshk"))
210 (file-name (string-append name "-"version "-checkout"))))
3b6eddb2
LC
211 (build-system python-build-system)
212 (inputs `(("python-notmuch" ,python2-notmuch)))
213 (arguments
214 `(#:tests? #f ;no "test" target
5ca54f41 215 #:python ,python-2)) ;not compatible with Python 3
3b6eddb2
LC
216 (synopsis "Patch tracking tool")
217 (description
36a4366d 218 "@code{Patches} is a patch-tracking tool initially written for the QEMU
3b6eddb2
LC
219project. It provides commands that build a database of patches from a mailing
220list, and commands that can search that database. It allows users to track
221the status of a patch, apply patches, and search for patches---all that from
222the command-line or from Emacs via its Notmuch integration.")
223 (license gpl2+))))
9e286eb1
LF
224
225(define-public vbindiff
226 (package
227 (name "vbindiff")
228 (version "3.0_beta5")
229 (source (origin
230 (method url-fetch)
231 (uri (string-append "https://www.cjmweb.net/vbindiff/vbindiff-"
232 version ".tar.gz"))
233 (sha256
234 (base32
235 "1f1kj4jki08bnrwpzi663mjfkrx4wnfpzdfwd2qgijlkx5ysjkgh"))))
236 (build-system gnu-build-system)
237 (inputs
238 `(("ncurses" ,ncurses)))
239 (home-page "https://www.cjmweb.net/vbindiff/")
240 (synopsis "Console-based tool for comparing binary data")
241 (description "Visual Binary Diff (@command{vbindiff}) displays files in
242hexadecimal and ASCII (or EBCDIC). It can also display two files at once, and
243highlight the differences between them. It works well with large files (up to 4
244GiB).")
245 (license gpl2+)))
be0be3de
PN
246
247(define-public meld
248 (package
249 (name "meld")
8f55136a 250 (version "3.20.2")
be0be3de
PN
251 (source
252 (origin
253 (method url-fetch)
254 (uri (string-append "mirror://gnome/sources/meld/"
255 (version-major+minor version)
256 "/meld-" version ".tar.xz"))
257 (sha256
8f55136a 258 (base32 "0a0x156zr3w2yg0rnhwy39giy3xnfm6sqcfa4xcw4i6ahvwqa2dc"))))
be0be3de
PN
259 (build-system python-build-system)
260 (native-inputs
261 `(("intltool" ,intltool)
262 ("xmllint" ,libxml2)
263 ("glib-compile-schemas" ,glib "bin")
264 ("python-pytest" ,python-pytest)))
265 (inputs
266 `(("python-cairo" ,python-pycairo)
267 ("python-gobject" ,python-pygobject)
3a428dd6 268 ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
b901a566 269 ("gtksourceview" ,gtksourceview-3)))
be0be3de
PN
270 (propagated-inputs
271 `(("dconf" ,dconf)))
272 (arguments
3a428dd6
TGR
273 `(#:imported-modules ((guix build glib-or-gtk-build-system)
274 ,@%python-build-system-modules)
275 #:modules ((guix build python-build-system)
276 ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
277 (guix build utils))
278 #:phases
be0be3de
PN
279 (modify-phases %standard-phases
280 ;; This setup.py script does not support one of the Python build
281 ;; system's default flags, "--single-version-externally-managed".
282 (replace 'install
283 (lambda* (#:key outputs #:allow-other-keys)
284 (invoke "python" "setup.py"
285 ;; This setup.py runs gtk-update-icon-cache which we don't want.
286 "--no-update-icon-cache"
287 ;; "--no-compile-schemas"
288 "install"
289 (string-append "--prefix=" (assoc-ref outputs "out"))
290 "--root=/")))
291 ;; The tests need to be run after installation.
292 (delete 'check)
293 (add-after 'install 'check
294 (lambda* (#:key inputs outputs #:allow-other-keys)
295 ;; Tests look for installed package
296 (add-installed-pythonpath inputs outputs)
297 ;; The tests fail when HOME=/homeless-shelter.
298 (setenv "HOME" "/tmp")
299 (invoke "py.test" "-v" "-k"
300 ;; TODO: Those tests fail, why?
b901a566 301 "not test_classify_change_actions")))
3a428dd6
TGR
302 (add-after 'wrap 'glib-or-gtk-wrap
303 (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))
b901a566
LP
304 (add-after 'wrap 'wrap-typelib
305 (lambda* (#:key inputs outputs #:allow-other-keys)
306 (let ((out (assoc-ref outputs "out")))
307 (wrap-program (string-append out "/bin/meld")
308 `("GI_TYPELIB_PATH" prefix
309 ,(search-path-as-string->list (getenv "GI_TYPELIB_PATH"))))
310 #t))))))
be0be3de
PN
311 (home-page "https://meldmerge.org/")
312 (synopsis "Compare files, directories and working copies")
313 (description "Meld is a visual diff and merge tool targeted at
314developers. Meld helps you compare files, directories, and version controlled
315projects. It provides two- and three-way comparison of both files and
316directories, and has support for many popular version control systems.
317
318Meld helps you review code changes and understand patches. It might even help
319you to figure out what is going on in that merge you keep avoiding.")
320 (license gpl2)))
4764c6cc
CB
321
322(define-public patchwork
323 (package
324 (name "patchwork")
a961e7ff 325 (version "2.1.5")
4764c6cc
CB
326 (source (origin
327 (method git-fetch)
328 (uri (git-reference
329 (url "https://github.com/getpatchwork/patchwork.git")
330 (commit (string-append "v" version))))
331 (file-name (git-file-name name version))
332 (sha256
333 (base32
a961e7ff 334 "1n4hfwlgmw6mj5kp261zfx47mgb0l7g2yzl1rf0rnm8x69lr3as6"))))
4764c6cc
CB
335 (build-system python-build-system)
336 (arguments
337 `(;; TODO: Tests require a running database
338 #:tests? #f
339 #:phases
340 (modify-phases %standard-phases
341 (delete 'configure)
342 (delete 'build)
343 (add-after 'unpack 'replace-wsgi.py
344 (lambda* (#:key inputs outputs #:allow-other-keys)
345 (delete-file "patchwork/wsgi.py")
346 (call-with-output-file "patchwork/wsgi.py"
347 (lambda (port)
348 ;; Embed the PYTHONPATH containing the dependencies, as well
349 ;; as the python modules in this package in the wsgi.py file,
350 ;; as this will ensure they are available at runtime.
351 (define pythonpath
352 (string-append (getenv "PYTHONPATH")
353 ":"
354 (site-packages inputs outputs)))
355 (display
356 (string-append "
357import os, sys
358
359sys.path.extend('" pythonpath "'.split(':'))
360
361from django.core.wsgi import get_wsgi_application
362
363# By default, assume that patchwork is running as a Guix service, which
364# provides the settings as the 'guix.patchwork.settings' Python module.
365#
366# When using httpd, it's hard to set environment variables, so rely on the
367# default set here.
368os.environ['DJANGO_SETTINGS_MODULE'] = os.getenv(
369 'DJANGO_SETTINGS_MODULE',
370 'guix.patchwork.settings' # default
371)
372
373application = get_wsgi_application()\n") port)))))
374 (replace 'check
375 (lambda* (#:key tests? #:allow-other-keys)
376 (when tests?
377 (setenv "DJANGO_SETTINGS_MODULE" "patchwork.settings.dev")
378 (invoke "python" "-Wonce" "./manage.py" "test" "--noinput"))
379 #t))
380 (replace 'install
381 (lambda* (#:key inputs outputs #:allow-other-keys)
382 (let ((out (assoc-ref outputs "out"))
383 (out-site-packages (site-packages inputs outputs)))
384 (for-each (lambda (directory)
385 (copy-recursively
386 directory
387 (string-append out-site-packages directory)))
388 '(;; Contains the python code
389 "patchwork"
390 ;; Contains the templates for the generated HTML
391 "templates"))
392 (delete-file-recursively
393 (string-append out-site-packages "patchwork/tests"))
394
395 ;; Install patchwork related tools
396 (for-each (lambda (file)
397 (install-file file (string-append out "/bin")))
398 (list
399 (string-append out-site-packages
400 "patchwork/bin/pwclient")
401 (string-append out-site-packages
402 "patchwork/bin/parsemail.sh")
403 (string-append out-site-packages
404 "patchwork/bin/parsemail-batch.sh")))
405
406 ;; Delete the symlink to pwclient, and replace it with the
407 ;; actual file, as this can cause issues when serving the file
408 ;; from a webserver.
409 (let ((template-pwclient (string-append
410 out-site-packages
411 "patchwork/templates/patchwork/pwclient")))
412 (delete-file template-pwclient)
413 (copy-file (string-append out-site-packages
414 "patchwork/bin/pwclient")
415 template-pwclient))
416
417 ;; Collect the static assets, this includes JavaScript, CSS and
418 ;; fonts. This is a standard Django process when running a
419 ;; Django application for regular use, and includes assets for
420 ;; dependencies like the admin site from Django.
421 ;;
422 ;; The intent here is that you can serve files from this
423 ;; directory through a webserver, which is recommended when
424 ;; running Django applications.
425 (let ((static-root
426 (string-append out "/share/patchwork/htdocs")))
427 (mkdir-p static-root)
428 (copy-file "patchwork/settings/production.example.py"
429 "patchwork/settings/assets.py")
430 (setenv "DJANGO_SECRET_KEY" "dummyvalue")
431 (setenv "DJANGO_SETTINGS_MODULE" "patchwork.settings.assets")
432 (setenv "STATIC_ROOT" static-root)
433 (invoke "./manage.py" "collectstatic" "--no-input"))
434
435 ;; The lib directory includes example configuration files that
436 ;; may be useful when deploying patchwork.
437 (copy-recursively "lib"
438 (string-append
439 out "/share/doc/" ,name "-" ,version)))
440 #t))
441 ;; The hasher script is used from the post-receive.hook
442 (add-after 'install 'install-hasher
443 (lambda* (#:key inputs outputs #:allow-other-keys)
444 (let* ((out (assoc-ref outputs "out"))
445 (out-site-packages (site-packages inputs outputs))
446 (out-hasher.py (string-append out-site-packages
447 "/patchwork/hasher.py")))
448 (chmod out-hasher.py #o555)
449 (symlink out-hasher.py (string-append out "/bin/hasher")))
450 #t))
451 ;; Create a patchwork specific version of Django's command line admin
452 ;; utility.
453 (add-after 'install 'install-patchwork-admin
454 (lambda* (#:key inputs outputs #:allow-other-keys)
455 (let* ((out (assoc-ref outputs "out")))
456 (mkdir-p (string-append out "/bin"))
457 (call-with-output-file (string-append out "/bin/patchwork-admin")
458 (lambda (port)
459 (simple-format port "#!~A
460import os, sys
461
462if __name__ == \"__main__\":
463 from django.core.management import execute_from_command_line
464
465 execute_from_command_line(sys.argv)" (which "python"))))
466 (chmod (string-append out "/bin/patchwork-admin") #o555))
467 #t)))))
468 (inputs
469 `(("python-wrapper" ,python-wrapper)))
470 (propagated-inputs
471 `(("python-django" ,python-django)
472 ;; TODO: Make this configurable
473 ("python-psycopg2" ,python-psycopg2)
474 ("python-mysqlclient" ,python-mysqlclient)
475 ("python-django-filter" ,python-django-filter)
476 ("python-djangorestframework" ,python-djangorestframework)
477 ("python-django-debug-toolbar" ,python-django-debug-toolbar)))
478 (synopsis "Web based patch tracking system")
479 (description
480 "Patchwork is a patch tracking system. It takes in emails containing
481patches, and displays the patches along with comments and state information.
482Users can login allowing them to change the state of patches.")
483 (home-page "http://jk.ozlabs.org/projects/patchwork/")
484 (license gpl2+)))