2013-05-08 22:46:13 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
2013-06-15 03:33:42 +02:00
|
|
|
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
2013-07-01 00:18:36 +02:00
|
|
|
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
2013-09-01 21:56:57 +02:00
|
|
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
2013-05-08 22:46:13 +02:00
|
|
|
;;;
|
|
|
|
;;; 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/>.
|
|
|
|
|
2013-05-11 22:49:39 +02:00
|
|
|
(define-module (gnu packages version-control)
|
2013-09-01 21:56:57 +02:00
|
|
|
#:use-module ((guix licenses) #:select (asl2.0 gpl1+ gpl2 gpl2+ gpl3+))
|
2013-05-08 22:46:13 +02:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2013-05-11 22:49:39 +02:00
|
|
|
#:use-module (guix build-system gnu)
|
2013-05-08 22:46:13 +02:00
|
|
|
#:use-module (guix build-system python)
|
|
|
|
#:use-module (guix build utils)
|
gnu: gettext: Rename binding to 'gnu-gettext'.
* gnu/packages/gettext.scm (gettext): Rename to...
(gnu-gettext): ... this. This is used to work around the circular
dependency introduced in commit c42a4b7, which users with a #:renamer
cannot cope with.
* gnu/packages/acl.scm, gnu/packages/attr.scm, gnu/packages/cdrom.scm,
gnu/packages/fdisk.scm, gnu/packages/gkrellm.scm, gnu/packages/glib.scm,
gnu/packages/gnunet.scm, gnu/packages/grub.scm, gnu/packages/linux.scm,
gnu/packages/maths.scm, gnu/packages/nano.scm, gnu/packages/parted.scm,
gnu/packages/system.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/w3m.scm, gnu/packages/wget.scm:
Adjust accordingly.
2013-11-20 22:12:49 +01:00
|
|
|
#:use-module (gnu packages gettext)
|
2013-08-05 14:59:46 +02:00
|
|
|
#:use-module (gnu packages apr)
|
2013-09-01 21:56:57 +02:00
|
|
|
#:use-module (gnu packages curl)
|
2013-11-19 23:22:03 +01:00
|
|
|
#:use-module (gnu packages ed)
|
2013-05-20 18:29:43 +02:00
|
|
|
#:use-module (gnu packages nano)
|
2013-09-01 21:56:57 +02:00
|
|
|
#:use-module (gnu packages openssl)
|
2013-06-15 03:33:42 +02:00
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
#:use-module (gnu packages python)
|
|
|
|
#:use-module (gnu packages sqlite)
|
2013-07-01 00:18:36 +02:00
|
|
|
#:use-module (gnu packages system)
|
2013-09-01 21:56:57 +02:00
|
|
|
#:use-module (gnu packages xml)
|
2013-07-01 00:18:36 +02:00
|
|
|
#:use-module (gnu packages emacs)
|
2013-09-29 16:57:50 +02:00
|
|
|
#:use-module (gnu packages compression)
|
2013-09-29 21:55:41 +02:00
|
|
|
#:use-module (gnu packages swig)
|
|
|
|
#:use-module (gnu packages tcl))
|
2013-05-08 22:46:13 +02:00
|
|
|
|
|
|
|
(define-public bazaar
|
|
|
|
(package
|
|
|
|
(name "bazaar")
|
|
|
|
(version "2.5.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://launchpad.net/bzr/2.5/" version
|
|
|
|
"/+download/bzr-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"10krjbzia2avn09p0cdlbx2wya0r5v11w5ymvyl72af5dkx4cwwn"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(inputs
|
|
|
|
;; Note: 'tools/packaging/lp-upload-release' and 'tools/weavemerge.sh'
|
|
|
|
;; require Zsh.
|
gnu: gettext: Rename binding to 'gnu-gettext'.
* gnu/packages/gettext.scm (gettext): Rename to...
(gnu-gettext): ... this. This is used to work around the circular
dependency introduced in commit c42a4b7, which users with a #:renamer
cannot cope with.
* gnu/packages/acl.scm, gnu/packages/attr.scm, gnu/packages/cdrom.scm,
gnu/packages/fdisk.scm, gnu/packages/gkrellm.scm, gnu/packages/glib.scm,
gnu/packages/gnunet.scm, gnu/packages/grub.scm, gnu/packages/linux.scm,
gnu/packages/maths.scm, gnu/packages/nano.scm, gnu/packages/parted.scm,
gnu/packages/system.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/w3m.scm, gnu/packages/wget.scm:
Adjust accordingly.
2013-11-20 22:12:49 +01:00
|
|
|
`(("gettext" ,gnu-gettext)))
|
2013-05-08 22:46:13 +02:00
|
|
|
(arguments
|
2013-09-04 18:35:49 +02:00
|
|
|
`(#:tests? #f ; no test target
|
|
|
|
#:python ,python-2)) ; Python 3 apparently not yet supported, see
|
|
|
|
; https://answers.launchpad.net/bzr/+question/229048
|
2013-05-08 22:46:13 +02:00
|
|
|
(home-page "https://gnu.org/software/bazaar")
|
2013-12-01 22:33:23 +01:00
|
|
|
(synopsis "Version control system supporting both distributed and centralized workflows")
|
2013-05-08 22:46:13 +02:00
|
|
|
(description
|
2013-12-01 22:33:23 +01:00
|
|
|
"GNU Bazaar is a version control system that allows you to record
|
|
|
|
changes to project files over time. It supports both a distributed workflow
|
|
|
|
as well as the classic centralized workflow.")
|
2013-05-11 15:58:20 +02:00
|
|
|
(license gpl2+)))
|
2013-05-11 22:49:39 +02:00
|
|
|
|
2013-09-01 21:56:57 +02:00
|
|
|
(define-public git
|
|
|
|
(package
|
|
|
|
(name "git")
|
|
|
|
(version "1.8.4")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://git-core.googlecode.com/files/git-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"156bwqqgaw65rsvbb4wih5jfg94bxyf6p16mdwf0ky3f4ln55s2i"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("curl" ,curl)
|
|
|
|
("expat" ,expat)
|
gnu: gettext: Rename binding to 'gnu-gettext'.
* gnu/packages/gettext.scm (gettext): Rename to...
(gnu-gettext): ... this. This is used to work around the circular
dependency introduced in commit c42a4b7, which users with a #:renamer
cannot cope with.
* gnu/packages/acl.scm, gnu/packages/attr.scm, gnu/packages/cdrom.scm,
gnu/packages/fdisk.scm, gnu/packages/gkrellm.scm, gnu/packages/glib.scm,
gnu/packages/gnunet.scm, gnu/packages/grub.scm, gnu/packages/linux.scm,
gnu/packages/maths.scm, gnu/packages/nano.scm, gnu/packages/parted.scm,
gnu/packages/system.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/w3m.scm, gnu/packages/wget.scm:
Adjust accordingly.
2013-11-20 22:12:49 +01:00
|
|
|
("gettext" ,gnu-gettext)
|
2013-09-01 21:56:57 +02:00
|
|
|
("openssl" ,openssl)
|
|
|
|
("perl" ,perl)
|
2013-09-05 18:13:23 +02:00
|
|
|
("python" ,python-2) ; CAVEAT: incompatible with python-3 according to INSTALL
|
2013-09-29 17:30:04 +02:00
|
|
|
("zlib" ,zlib)
|
|
|
|
|
|
|
|
;; For 'git-svn'.
|
2013-09-29 21:55:41 +02:00
|
|
|
("subversion" ,subversion)
|
|
|
|
|
|
|
|
;; For 'git gui', 'gitk', and 'git citool'.
|
|
|
|
("tcl" ,tcl)
|
|
|
|
("tk" ,tk)))
|
|
|
|
(outputs '("out" ; the core
|
|
|
|
"svn" ; git-svn
|
|
|
|
"gui")) ; gitk, git gui
|
2013-09-01 21:56:57 +02:00
|
|
|
(arguments
|
|
|
|
`(#:make-flags `("V=1") ; more verbose compilation
|
|
|
|
#:test-target "test"
|
|
|
|
#:tests? #f ; FIXME: Many tests are failing
|
2013-09-29 21:55:41 +02:00
|
|
|
|
|
|
|
;; The explicit --with-tcltk forces the build system to hardcode the
|
|
|
|
;; absolute file name to 'wish'.
|
|
|
|
#:configure-flags (list (string-append "--with-tcltk="
|
|
|
|
(assoc-ref %build-inputs "tk")
|
|
|
|
"/bin/wish8.6")) ; XXX
|
|
|
|
|
2013-09-01 21:56:57 +02:00
|
|
|
#:phases
|
|
|
|
(alist-replace
|
|
|
|
'configure
|
|
|
|
(lambda* (#:key #:allow-other-keys #:rest args)
|
|
|
|
(let ((configure (assoc-ref %standard-phases 'configure)))
|
|
|
|
(and (apply configure args)
|
|
|
|
(substitute* "Makefile"
|
|
|
|
(("/bin/sh") (which "sh"))
|
|
|
|
(("/usr/bin/perl") (which "perl"))
|
|
|
|
(("/usr/bin/python") (which "python"))))))
|
2013-09-29 17:30:04 +02:00
|
|
|
(alist-cons-after
|
|
|
|
'install 'split
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
2013-09-29 21:55:41 +02:00
|
|
|
;; Split the binaries to the various outputs.
|
2013-09-29 17:30:04 +02:00
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(svn (assoc-ref outputs "svn"))
|
2013-09-29 21:55:41 +02:00
|
|
|
(gui (assoc-ref outputs "gui"))
|
|
|
|
(gitk (string-append out "/bin/gitk"))
|
|
|
|
(gitk* (string-append gui "/bin/gitk"))
|
|
|
|
(git-gui (string-append out "/libexec/git-core/git-gui"))
|
|
|
|
(git-gui* (string-append gui "/libexec/git-core/git-gui"))
|
|
|
|
(git-cit (string-append out "/libexec/git-core/git-citool"))
|
|
|
|
(git-cit* (string-append gui "/libexec/git-core/git-citool"))
|
2013-09-29 17:30:04 +02:00
|
|
|
(git-svn (string-append out "/libexec/git-core/git-svn"))
|
|
|
|
(git-svn* (string-append svn "/libexec/git-core/git-svn")))
|
2013-09-29 21:55:41 +02:00
|
|
|
(mkdir-p (string-append gui "/bin"))
|
|
|
|
(mkdir-p (string-append gui "/libexec/git-core"))
|
2013-09-29 17:30:04 +02:00
|
|
|
(mkdir-p (string-append svn "/libexec/git-core"))
|
2013-09-29 21:55:41 +02:00
|
|
|
|
|
|
|
(for-each (lambda (old new)
|
|
|
|
(copy-file old new)
|
|
|
|
(delete-file old)
|
|
|
|
(chmod new #o555))
|
|
|
|
(list gitk git-gui git-cit git-svn)
|
|
|
|
(list gitk* git-gui* git-cit* git-svn*))
|
2013-09-29 17:30:04 +02:00
|
|
|
|
|
|
|
;; Tell 'git-svn' where Subversion is.
|
|
|
|
(wrap-program git-svn*
|
|
|
|
`("PATH" ":" prefix
|
|
|
|
(,(string-append (assoc-ref inputs "subversion")
|
2013-09-29 21:18:53 +02:00
|
|
|
"/bin")))
|
2013-09-29 17:30:04 +02:00
|
|
|
`("PERL5LIB" ":" prefix
|
|
|
|
(,(string-append (assoc-ref inputs "subversion")
|
|
|
|
"/lib/perl5/site_perl")))
|
|
|
|
|
|
|
|
;; XXX: The .so for SVN/Core.pm lacks a RUNPATH, so
|
|
|
|
;; help it find 'libsvn_client-1.so'.
|
|
|
|
`("LD_LIBRARY_PATH" ":" prefix
|
|
|
|
(,(string-append (assoc-ref inputs "subversion")
|
2013-09-29 21:18:53 +02:00
|
|
|
"/lib"))))
|
|
|
|
|
|
|
|
;; Tell 'git' to look for core programs in the user's profile.
|
|
|
|
;; This allows user to install other outputs of this package and
|
|
|
|
;; have them transparently taken into account. There's a
|
|
|
|
;; 'GIT_EXEC_PATH' environment variable, but it's supposed to
|
|
|
|
;; specify a single directory, not a search path.
|
|
|
|
(wrap-program (string-append out "/bin/git")
|
|
|
|
`("PATH" ":" prefix
|
|
|
|
("$HOME/.guix-profile/libexec/git-core")))))
|
2013-09-29 17:30:04 +02:00
|
|
|
%standard-phases))))
|
2013-09-01 21:56:57 +02:00
|
|
|
(synopsis "Distributed version control system")
|
|
|
|
(description
|
|
|
|
"Git is a free distributed version control system designed to handle
|
|
|
|
everything from small to very large projects with speed and efficiency.")
|
|
|
|
(license gpl2)
|
|
|
|
(home-page "http://git-scm.com/")))
|
|
|
|
|
2013-10-11 22:16:50 +02:00
|
|
|
(define-public mercurial
|
|
|
|
(package
|
|
|
|
(name "mercurial")
|
|
|
|
(version "2.7.1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://mercurial.selenic.com/release/mercurial-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"121m8f7vmipmdg00cnzdz2rjkgydh28mwfirqkrbs5fv089vywl4"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(;; Restrict to Python 2, as Python 3 would require
|
|
|
|
;; the argument --c2to3.
|
|
|
|
#:python ,python-2
|
|
|
|
;; FIXME: Disabled tests because they require the nose unit
|
|
|
|
;; testing framework: https://nose.readthedocs.org/en/latest/ .
|
|
|
|
#:tests? #f))
|
|
|
|
(home-page "http://mercurial.selenic.com")
|
|
|
|
(synopsis "Decentralized version control system")
|
|
|
|
(description
|
|
|
|
"Mercurial is a free, distributed source control management tool.
|
|
|
|
It efficiently handles projects of any size
|
|
|
|
and offers an easy and intuitive interface.")
|
|
|
|
(license gpl2+)))
|
|
|
|
|
2013-06-15 03:33:42 +02:00
|
|
|
(define-public subversion
|
|
|
|
(package
|
|
|
|
(name "subversion")
|
|
|
|
(version "1.7.8")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2013-07-16 23:12:38 +02:00
|
|
|
(uri (string-append "http://archive.apache.org/dist/subversion/subversion-"
|
2013-06-15 03:33:42 +02:00
|
|
|
version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"11inl9n1riahfnbk1fax0dysm2swakzhzhpmm2zvga6fikcx90zw"))))
|
|
|
|
(build-system gnu-build-system)
|
2013-09-29 16:57:50 +02:00
|
|
|
(arguments
|
|
|
|
'(#:phases (alist-cons-after
|
|
|
|
'install 'instal-perl-bindings
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; Follow the instructions from
|
|
|
|
;; 'subversion/bindings/swig/INSTALL'.
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(and (zero? (system* "make" "swig-pl-lib"))
|
|
|
|
;; FIXME: Test failures.
|
|
|
|
;; (zero? (system* "make" "check-swig-pl"))
|
|
|
|
(zero? (system* "make" "install-swig-pl-lib"))
|
|
|
|
|
|
|
|
;; Set the right installation prefix.
|
|
|
|
(with-directory-excursion
|
|
|
|
"subversion/bindings/swig/perl/native"
|
|
|
|
(and (zero?
|
|
|
|
(system* "perl" "Makefile.PL"
|
|
|
|
(string-append "PREFIX=" out)))
|
|
|
|
(zero?
|
|
|
|
(system* "make" "install")))))))
|
|
|
|
%standard-phases)))
|
|
|
|
(native-inputs
|
|
|
|
;; For the Perl bindings.
|
|
|
|
`(("swig" ,swig)))
|
2013-06-15 03:33:42 +02:00
|
|
|
(inputs
|
2013-08-05 14:59:46 +02:00
|
|
|
`(("apr" ,apr)
|
|
|
|
("apr-util" ,apr-util)
|
2013-06-15 03:33:42 +02:00
|
|
|
("perl" ,perl)
|
2013-09-04 19:17:19 +02:00
|
|
|
("python" ,python-2) ; incompatible with Python 3 (print syntax)
|
2013-06-15 03:33:42 +02:00
|
|
|
("sqlite" ,sqlite)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(home-page "http://subversion.apache.org/")
|
|
|
|
(synopsis "Subversion, a revision control system")
|
|
|
|
(description
|
2013-10-14 09:48:52 +02:00
|
|
|
"Subversion exists to be universally recognized and adopted as a
|
|
|
|
centralized version control system characterized by its
|
2013-06-15 03:33:42 +02:00
|
|
|
reliability as a safe haven for valuable data; the simplicity of its model and
|
|
|
|
usage; and its ability to support the needs of a wide variety of users and
|
|
|
|
projects, from individuals to large-scale enterprise operations.")
|
|
|
|
(license asl2.0)))
|
|
|
|
|
2013-05-11 22:49:39 +02:00
|
|
|
(define-public rcs
|
|
|
|
(package
|
|
|
|
(name "rcs")
|
2013-12-08 23:04:42 +01:00
|
|
|
(version "5.9.2")
|
2013-05-11 22:49:39 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/rcs/rcs-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-12-08 23:04:42 +01:00
|
|
|
"0wdmmplga9k05d9k7wjqv4zb6xvvzsli8hmn206pvangki1g66k5"))))
|
2013-05-11 22:49:39 +02:00
|
|
|
(build-system gnu-build-system)
|
2013-11-19 23:22:03 +01:00
|
|
|
(native-inputs `(("ed" ,ed)))
|
2013-05-11 22:49:39 +02:00
|
|
|
(home-page "http://www.gnu.org/software/rcs/")
|
|
|
|
(synopsis "Per-file local revision control system")
|
|
|
|
(description
|
2013-12-01 22:33:23 +01:00
|
|
|
"RCS is the original Revision Control System. It works on a
|
|
|
|
file-by-file basis, in contrast to subsequent version control systems such as
|
|
|
|
CVS, Subversion, and Git. This can make it suitable for system
|
|
|
|
administration files, for example, which are often inherently local to one
|
|
|
|
machine.")
|
2013-05-11 22:49:39 +02:00
|
|
|
(license gpl3+)))
|
2013-05-20 18:29:43 +02:00
|
|
|
|
|
|
|
(define-public cvs
|
|
|
|
(package
|
|
|
|
(name "cvs")
|
|
|
|
(version "1.12.13")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://ftp.gnu.org/non-gnu/cvs/source/feature/"
|
|
|
|
version "/cvs-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0pjir8cwn0087mxszzbsi1gyfc6373vif96cw4q3m1x6p49kd1bq"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
;; XXX: The test suite looks flawed, and the package is obsolete anyway.
|
|
|
|
'(#:tests? #f))
|
|
|
|
(inputs `(("zlib" ,zlib)
|
|
|
|
("nano" ,nano))) ; the default editor
|
|
|
|
(home-page "http://cvs.nongnu.org")
|
|
|
|
(synopsis "Historical centralized version control system")
|
|
|
|
(description
|
|
|
|
"CVS is a version control system, an important component of Source
|
|
|
|
Configuration Management (SCM). Using it, you can record the history of
|
|
|
|
sources files, and documents. It fills a similar role to the free software
|
|
|
|
RCS, PRCS, and Aegis packages.")
|
|
|
|
(license gpl1+)))
|
2013-07-01 00:18:36 +02:00
|
|
|
|
|
|
|
(define-public vc-dwim
|
|
|
|
(package
|
|
|
|
(name "vc-dwim")
|
|
|
|
(version "1.7")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/vc-dwim/vc-dwim-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"094pjwshvazlgagc254in2xvrp93vhcj0kb5ms17qs7sch99x9z2"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("perl" ,perl)
|
|
|
|
("inetutils" ,inetutils) ; for `hostname', used in the tests
|
|
|
|
("emacs" ,emacs))) ; for `ctags'
|
|
|
|
(home-page "http://www.gnu.org/software/vc-dwim/")
|
|
|
|
(synopsis "Version-control-agnostic ChangeLog diff and commit tool")
|
|
|
|
(description
|
Synchronize package descriptions with the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/freeipmi.scm,
gnu/packages/gawk.scm,
gnu/packages/gcal.scm,
gnu/packages/gcc.scm,
gnu/packages/gdb.scm,
gnu/packages/gdbm.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/global.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/gv.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/lightning.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mail.scm,
gnu/packages/maths.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/ocrad.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/plotutils.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/unrtf.scm,
gnu/packages/version-control.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm,
gnu/packages/xnee.scm,
gnu/packages/zile.scm: Change value of the 'description' field to that
of the Womb.
2013-10-09 16:14:23 +02:00
|
|
|
"The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".
|
|
|
|
vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and
|
|
|
|
using version control at the same time, for example by printing a reminder
|
|
|
|
when a file change has been described in the ChangeLog but the file has not
|
2013-12-01 22:33:23 +01:00
|
|
|
been added to the VC. vc-chlog scans changed files and generates
|
Synchronize package descriptions with the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/freeipmi.scm,
gnu/packages/gawk.scm,
gnu/packages/gcal.scm,
gnu/packages/gcc.scm,
gnu/packages/gdb.scm,
gnu/packages/gdbm.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/global.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/gv.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/lightning.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mail.scm,
gnu/packages/maths.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/ocrad.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/plotutils.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/unrtf.scm,
gnu/packages/version-control.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm,
gnu/packages/xnee.scm,
gnu/packages/zile.scm: Change value of the 'description' field to that
of the Womb.
2013-10-09 16:14:23 +02:00
|
|
|
standards-compliant ChangeLog entries based on the changes that it detects.")
|
2013-07-01 00:18:36 +02:00
|
|
|
(license gpl3+)))
|