diff options
author | Mark H Weaver <mhw@netris.org> | 2016-03-15 12:40:53 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-03-15 12:40:53 -0400 |
commit | a3b84f70d8bc992a0fc38cabdf12d48ff5e10e15 (patch) | |
tree | ba2c4880e3f4ce6509ff219d0fd646493d085e1d /gnu/packages/version-control.scm | |
parent | 2c9f0b077018d2cac599bd2f466769cd5ffd3adc (diff) | |
parent | 20095cc5139666fe67b3ae76b3f46ff85e4956bb (diff) | |
download | guix-a3b84f70d8bc992a0fc38cabdf12d48ff5e10e15.tar guix-a3b84f70d8bc992a0fc38cabdf12d48ff5e10e15.tar.gz |
Merge branch 'master' into security-updates
Diffstat (limited to 'gnu/packages/version-control.scm')
-rw-r--r-- | gnu/packages/version-control.scm | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 316ac23395..d0cc1459c5 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -324,7 +324,7 @@ command."))) (define-public libgit2 (package (name "libgit2") - (version "0.23.4") + (version "0.24.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/libgit2/libgit2/" @@ -332,7 +332,7 @@ command."))) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0aa0i5bvmzrrirqk5w13pm0qmblkk57x24w0hxz4vg0x73by5xf7")))) + "1c5jx0pcpz83x7s36jimfz5bj0vy7vwpchq9p4sgdqxy8gwr6rhw")))) (build-system cmake-build-system) (arguments `(#:phases @@ -351,7 +351,7 @@ command."))) (inputs `(("libssh2" ,libssh2) ("libcurl" ,curl) - ("python" ,python) + ("python" ,python-wrapper) ("openssl" ,openssl))) (native-inputs `(("pkg-config" ,pkg-config))) @@ -367,14 +367,14 @@ write native speed custom Git applications in any language with bindings.") (define-public shflags (package (name "shflags") - (version "1.0.3") + (version "1.2.0") (source (origin (method url-fetch) - (uri (string-append "https://shflags.googlecode.com/files/" - "shflags-" version ".tgz")) + (uri (string-append "https://github.com/kward/shflags/archive/v" + version ".tar.gz")) (sha256 (base32 - "08laxhf1hifh3w4j0hri5ppcklaqz0mnkmbaz8j0wxih29vi8slm")))) + "0zxw12haylaq60a335xlqcs4afw2zrgwqymmpw0m21r51w6irdmr")))) (build-system trivial-build-system) (native-inputs `(("tar" ,tar) ("gzip" ,gzip))) @@ -396,7 +396,7 @@ write native speed custom Git applications in any language with bindings.") (copy-file "src/shflags" (string-append srcdir "/shflags")) #t))))) - (home-page "https://code.google.com/p/shflags/") + (home-page "https://github.com/kward/shflags") (synopsis "Command-line flags library for shell scripts") (description "Shell Flags (shFlags) is a library written to greatly simplify the @@ -489,19 +489,16 @@ also walk each side of a merge and test those changes individually.") (define-public gitolite (package (name "gitolite") - (version "3.6.2") + (version "3.6.5") (source (origin (method url-fetch) (uri (string-append "https://github.com/sitaramc/gitolite/archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) - ;; Commit ed807a4 upstream - (patches - (list (search-patch "gitolite-openssh-6.8-compat.patch"))) (sha256 (base32 - "1gsgzi9ayb4rablki3mqr11b0h8db4xg43df660marfpacmkfb01")))) + "0xpqg04gyr4dhdhxx5lbk61lwwd5ml32530bigg2qy663icngwqm")))) (build-system gnu-build-system) (arguments '(#:tests? #f ; no tests |