diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-09-21 21:31:52 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-09-24 00:34:00 +0200 |
commit | 899e1974a6f4a4ff041c035ff3494bd10a8069ac (patch) | |
tree | 0d23be70da0dc191a042eeef613b2a3bfe311fda /gnu/packages/version-control.scm | |
parent | 0604d3cfceea13fad33c6188fa54f5fd16c74406 (diff) | |
download | guix-899e1974a6f4a4ff041c035ff3494bd10a8069ac.tar guix-899e1974a6f4a4ff041c035ff3494bd10a8069ac.tar.gz |
gnu: python-gitdb: Update to 2.0.4.
* gnu/packages/version-control.scm (python-gitdb): Update to 2.0.4.
[arguments]: Replace AND with equivalent but more 'accurate' BEGIN.
Diffstat (limited to 'gnu/packages/version-control.scm')
-rw-r--r-- | gnu/packages/version-control.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 58c870df5a..204ec403f6 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -712,13 +712,13 @@ default) of the repository.") (define-public python-gitdb (package (name "python-gitdb") - (version "2.0.3") + (version "2.0.4") (source (origin (method url-fetch) (uri (pypi-uri "gitdb2" version)) (sha256 (base32 - "02azg62mr99b7cllyjrly77np3vw32y8nrxpa2xjapiyaga2j3mn")))) + "0i608q9c47rdsmyac1cn6s0hzwwj7cb957y8fc9wacc5lnw8ak5v")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -733,7 +733,7 @@ default) of the repository.") "file" (number->string filecount)) (lambda (port) (format port "~a" filecount)))) - (and + (begin (invoke "git" "init") (invoke "git" "config" "user.name" "Total Git") (invoke "git" "config" "user.email" "git@localhost") |