summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Karetnikov <nikita@karetnikov.org>2013-05-08 20:46:13 +0000
committerNikita Karetnikov <nikita@karetnikov.org>2013-05-08 22:46:21 +0000
commitdcee3fc5a911ff64728cba85e245a5f151ae19a1 (patch)
treef14183706f92e167840d5ae1172a4a6432ed4d25
parent40506d5d925479cf024adbf14e39197550b5ab56 (diff)
gnu: Add GNU Bazaar.
* gnu/packages/bazaar.scm: New file. * Makefile.am (MODULES): Add it.
-rw-r--r--Makefile.am1
-rw-r--r--gnu/packages/bazaar.scm54
2 files changed, 55 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index eddcd5ac9b7..d1f06d7a719 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -73,6 +73,7 @@ MODULES = \
73 gnu/packages/avahi.scm \ 73 gnu/packages/avahi.scm \
74 gnu/packages/base.scm \ 74 gnu/packages/base.scm \
75 gnu/packages/bash.scm \ 75 gnu/packages/bash.scm \
76 gnu/packages/bazaar.scm \
76 gnu/packages/bdb.scm \ 77 gnu/packages/bdb.scm \
77 gnu/packages/bdw-gc.scm \ 78 gnu/packages/bdw-gc.scm \
78 gnu/packages/bison.scm \ 79 gnu/packages/bison.scm \
diff --git a/gnu/packages/bazaar.scm b/gnu/packages/bazaar.scm
new file mode 100644
index 00000000000..debaef88a16
--- /dev/null
+++ b/gnu/packages/bazaar.scm
@@ -0,0 +1,54 @@
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages bazaar)
20 #:use-module ((guix licenses) #:select (gpl2+))
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system python)
24 #:use-module (guix build utils)
25 #:use-module ((gnu packages gettext)
26 #:renamer (symbol-prefix-proc 'guix:)))
27
28(define-public bazaar
29 (package
30 (name "bazaar")
31 (version "2.5.1")
32 (source
33 (origin
34 (method url-fetch)
35 (uri (string-append "https://launchpad.net/bzr/2.5/" version
36 "/+download/bzr-" version ".tar.gz"))
37 (sha256
38 (base32
39 "10krjbzia2avn09p0cdlbx2wya0r5v11w5ymvyl72af5dkx4cwwn"))))
40 (build-system python-build-system)
41 (inputs
42 ;; Note: 'tools/packaging/lp-upload-release' and 'tools/weavemerge.sh'
43 ;; require Zsh.
44 `(("gettext" ,guix:gettext)))
45 (arguments
46 `(#:tests? #f)) ; no test target
47 (home-page "https://gnu.org/software/bazaar")
48 (synopsis "Distributed and central version control system")
49 (description
50 "GNU Bazaar is a distributed version control system, which supports both
51central version control and distributed version control. Developers can
52organize their workspace in whichever way they want. It is possible to work
53from a command line or use a GUI application.")
54 (license gpl2+))) \ No newline at end of file