diff options
Diffstat (limited to 'gnu/packages/version-control.scm')
-rw-r--r-- | gnu/packages/version-control.scm | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index d46a74bb91..7e16567281 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1155,7 +1155,7 @@ provides an integration with GitHub and GitLab.") (define-public got (package (name "got") - (version "0.115") + (version "0.116") (source (origin (method url-fetch) (uri @@ -1164,7 +1164,7 @@ provides an integration with GitHub and GitLab.") version ".tar.gz")) (sha256 (base32 - "1rw9i74b4q99ja0j4xckx3bbzl8jixxpfnsjzgw7sx3lqcfbrw5d")))) + "1zsdisaqv1q612a7jws9qd8n1gm9ilz5mnprkpgvdhc27gblm9p8")))) (inputs (list libevent `(,util-linux "lib") @@ -3183,8 +3183,19 @@ patch associated with a particular revision of an RCS file.") (build-system gnu-build-system) (arguments ;; XXX: The test suite looks flawed, and the package is obsolete anyway. - '(#:tests? #f - #:configure-flags (list "--with-external-zlib"))) + (list + #:tests? #f + #:configure-flags + #~(list + "--with-external-zlib" + "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-include + (lambda _ + (substitute* "lib/sighandle.c" + (("#ifdef STDC_HEADERS" all) + (string-append "#define STDC_HEADERS 1\n" all)))))))) (inputs (list zlib nano)) ; the default editor (home-page "https://cvs.nongnu.org") (synopsis "Historical centralized version control system") @@ -4754,7 +4765,7 @@ commit messages for style.") (define-public git-extras (package (name "git-extras") - (version "7.3.0") + (version "7.4.0") (source (origin (method git-fetch) @@ -4763,7 +4774,7 @@ commit messages for style.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1lig1sbk83qqvbvpmpcjaf23nk0r7snny5lix75ym1z320970xni")))) + (base32 "1v5yp4qrv1vf2yrvysk706grw99bhn93613q5dz598b008w6c467")))) (build-system gnu-build-system) (arguments (list |