From a8cdfd53db4ef839cba28e0cb283d2c3dfdb1f1a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 3 Apr 2020 14:53:05 -0400 Subject: gnu: Add ruby-sexp-processor. * gnu/packages/ruby.scm (ruby-sexp-processor): New variable. --- gnu/packages/ruby.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 08c55e4e3c..1b017a1ea7 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -20,6 +20,7 @@ ;;; Copyright © 2019 Collin J. Doering ;;; Copyright © 2019 Diego N. Barbato ;;; Copyright © 2019 Brett Gilio +;;; Copyright © 2020 Maxim Cournoyer ;;; ;;; This file is part of GNU Guix. ;;; @@ -4304,6 +4305,29 @@ (define-public ruby-parser (home-page "https://github.com/whitequark/parser") (license license:expat))) +(define-public ruby-sexp-processor + (package + (name "ruby-sexp-processor") + (version "4.15.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "sexp_processor" version)) + (sha256 + (base32 + "0d1vks77xnd0m3s94a58f9bkdwlaml5qdkmprx279m2s0pc2gv55")))) + (build-system ruby-build-system) + (native-inputs + ;; TODO: Add ruby-minitest-proveit once available. + `(("hoe" ,ruby-hoe))) + (synopsis "ParseTree fork which includes generic S-exp processing tools") + (description "The sexp_processor package is derived from ParseTree, but +contrary to ParseTree, it includes all the generic S-exp processing tools. +Amongst the included tools are @code{Sexp}, @code{SexpProcessor} and +@code{Environment}") + (home-page "https://github.com/seattlerb/sexp_processor") + (license license:expat))) + (define-public ruby-prawn-manual-builder (package (name "ruby-prawn-manual-builder") -- cgit v1.2.3 From 24be67517cd40b766b5c38a39de94ae4421153f8 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 3 Apr 2020 14:53:20 -0400 Subject: gnu: Add ruby-ruby-parser. * gnu/packages/ruby.scm (ruby-ruby-parser): New variable. --- gnu/packages/ruby.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 1b017a1ea7..85bf9169db 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -42,6 +42,7 @@ (define-module (gnu packages ruby) #:use-module (gnu packages) #:use-module (gnu packages base) #:use-module (gnu packages bison) + #:use-module (gnu packages c) #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages crypto) @@ -4328,6 +4329,31 @@ (define-public ruby-sexp-processor (home-page "https://github.com/seattlerb/sexp_processor") (license license:expat))) +(define-public ruby-ruby-parser + (package + (name "ruby-ruby-parser") + (version "3.14.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "ruby_parser" version)) + (sha256 + (base32 + "09qcdyjjw3p7g6cjm5m9swkms1xnv35ndiy7yw24cas16qrhha6c")))) + (build-system ruby-build-system) + (native-inputs + `(("hoe" ,ruby-hoe) + ("racc" ,ruby-racc) + ("unifdef" ,unifdef))) + (propagated-inputs + `(("ruby-sexp-processor" ,ruby-sexp-processor))) + (home-page "https://github.com/seattlerb/ruby_parser/") + (synopsis "Ruby parser written in pure Ruby") + (description "The ruby_parser (RP) package provides a Ruby parser written +in pure Ruby. It outputs S-expressions which can be manipulated and converted +back to Ruby via the @code{ruby2ruby} library.") + (license license:expat))) + (define-public ruby-prawn-manual-builder (package (name "ruby-prawn-manual-builder") -- cgit v1.2.3 From fab8fed3553a0387d569931d175b478385cb557d Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 25 Jun 2020 00:01:08 -0400 Subject: gnu: Add ruby-middleware. * gnu/packages/ruby.scm (ruby-middleware): New variable. --- gnu/packages/ruby.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 85bf9169db..d63600571e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6002,6 +6002,25 @@ (define-public ruby-docile (home-page "https://ms-ati.github.io/docile/") (license license:expat))) +(define-public ruby-middleware + (package + (name "ruby-middleware") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "middleware" version)) + (sha256 + (base32 + "0703nkf2v371wqr41c04x5qid7ww45cxqv3hnlg07if3b3xrm9xl")))) + (build-system ruby-build-system) + (arguments '(#:tests? #f)) ;no test suite + (synopsis "Implementation of a middleware abstraction for Ruby") + (description "Middleware is a generalized implementation of a middleware +abstraction for Ruby.") + (home-page "https://github.com/mitchellh/middleware") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From 1d537c71966756fe4e15c263dea7fb2cfaadfc2b Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 25 Jun 2020 00:31:44 -0400 Subject: gnu: Add ruby-benchmark-ips. * gnu/packages/ruby.scm (ruby-benchmark-ips): New variable. --- gnu/packages/ruby.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index d63600571e..ba76d5019a 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6021,6 +6021,27 @@ (define-public ruby-middleware (home-page "https://github.com/mitchellh/middleware") (license license:expat))) +(define-public ruby-benchmark-ips + (package + (name "ruby-benchmark-ips") + (version "2.8.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "benchmark-ips" version)) + (sha256 + (base32 + "1n9397j7kh4vvikfann1467qgksc679imlr50hax3lk1q3af8kdw")))) + (build-system ruby-build-system) + (native-inputs + `(("ruby-hoe" ,ruby-hoe))) + (synopsis "Iterations per second enhancement for the Ruby Benchmark module") + (description "Benchmark-ips enhances the Ruby Benchmark module with the +iterations per second count. For short snippets of code, it can automatically +figure out how many times to run the code to get interesting data.") + (home-page "https://github.com/evanphx/benchmark-ips") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From d7bd7016e87f6690e6b7e3f79bf0c147df7631ac Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 27 Jun 2020 00:33:33 -0400 Subject: gnu: Add ruby-rspec-its-minimal. * gnu/packages/ruby.scm (ruby-rspec-its-minimal): New variable. (ruby-addressable)[native-inputs]: Use it instead of ruby-rspec-its. --- gnu/packages/ruby.scm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index ba76d5019a..ec5a0fec09 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -679,6 +679,16 @@ (define-public ruby-rspec-its (home-page "https://github.com/rspec/rspec-its") (license license:expat))) +;;; This variant is used to break a cycle with ruby-protobuf. +(define-public ruby-rspec-its-minimal + (hidden-package + (package + (inherit ruby-rspec-its) + (arguments + (substitute-keyword-arguments (package-arguments ruby-rspec-its) + ((#:tests? _ #f) #f))) + (native-inputs '())))) + (define-public ruby-rspec-mocks (package (name "ruby-rspec-mocks") @@ -8197,7 +8207,7 @@ (define-public ruby-addressable ("bundler" ,bundler) ("ruby-idn-ruby" ,ruby-idn-ruby) ("ruby-sporkmonger-rack-mount" ,ruby-sporkmonger-rack-mount) - ("ruby-rspec-its", ruby-rspec-its) + ("ruby-rspec-its", ruby-rspec-its-minimal) ("ruby-yard" ,ruby-yard) ("ruby-simplecov" ,ruby-simplecov))) (propagated-inputs -- cgit v1.2.3 From fc5d1c5aa0f511025e5ee98a916b059f7427b2f5 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 27 Jun 2020 00:36:29 -0400 Subject: gnu: Add ruby-ffi-rzmq-core. * gnu/packages/ruby.scm (ruby-ffi-rzmq-core): New variable. --- gnu/packages/ruby.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index ec5a0fec09..1a5cfb45b9 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6052,6 +6052,43 @@ (define-public ruby-benchmark-ips (home-page "https://github.com/evanphx/benchmark-ips") (license license:expat))) +(define-public ruby-ffi-rzmq-core + (package + (name "ruby-ffi-rzmq-core") + (version "1.0.7") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "ffi-rzmq-core" version)) + (sha256 + (base32 + "0amkbvljpjfnv0jpdmz71p1i3mqbhyrnhamjn566w0c01xd64hb5")))) + (build-system ruby-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-libzmq-search-path + (lambda* (#:key inputs #:allow-other-keys) + (let ((zeromq (assoc-ref inputs "zeromq"))) + (substitute* "lib/ffi-rzmq-core/libzmq.rb" + (("/usr/local/lib") + (string-append zeromq "/lib"))) + #t))) + (replace 'check + (lambda _ + (invoke "rspec")))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec))) + (inputs + `(("zeromq" ,zeromq))) + (propagated-inputs `(("ruby-ffi" ,ruby-ffi))) + (synopsis "Low-level Ruby FFI wrapper for the ZeroMQ networking library") + (description "This library only provides the FFI wrapper for the ZeroMQ +networking library. It can be used to implement a Ruby API for the ZeroMQ +library.") + (home-page "https://github.com/chuckremes/ffi-rzmq-core") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From 7a5035162b83a7fbaa5027fc877e22ec24a97fbf Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 27 Jun 2020 00:36:43 -0400 Subject: gnu: Add ruby-ffi-rzmq. * gnu/packages/ruby.scm (ruby-ffi-rzmq): New variable. --- gnu/packages/ruby.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 1a5cfb45b9..34f381d17b 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6089,6 +6089,35 @@ (define-public ruby-ffi-rzmq-core (home-page "https://github.com/chuckremes/ffi-rzmq-core") (license license:expat))) +(define-public ruby-ffi-rzmq + (package + (name "ruby-ffi-rzmq") + (version "2.0.7") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "ffi-rzmq" version)) + (sha256 + (base32 + "14a5kxfnf8l3ngyk8hgmk30z07aj1324ll8i48z67ps6pz2kpsrg")))) + (build-system ruby-build-system) + (arguments '(#:tests? #t + #:phases (modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "rspec")))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-ffi-rzmq-core" ,ruby-ffi-rzmq-core))) + (synopsis "High-level Ruby wrapper for the ZeroMQ networking library") + (description "This library provides a high-level API that wraps the ZeroMQ +networking library using the Ruby foreign function interface (FFI). It is a +pure Ruby wrapper, hence is compatible with any Ruby runtime that has support +for FFI.") + (home-page "https://github.com/chuckremes/ffi-rzmq") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From 03a0f98a8d41627bbaa7b61d4d36bd9936c2e215 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 27 Jun 2020 00:37:04 -0400 Subject: gnu: Add ruby-sawyer. * gnu/packages/ruby.scm (ruby-sawyer): New variable. --- gnu/packages/ruby.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 34f381d17b..9db9353636 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6118,6 +6118,27 @@ (define-public ruby-ffi-rzmq (home-page "https://github.com/chuckremes/ffi-rzmq") (license license:expat))) +(define-public ruby-sawyer + (package + (name "ruby-sawyer") + (version "0.8.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "sawyer" version)) + (sha256 + (base32 + "0yrdchs3psh583rjapkv33mljdivggqn99wkydkjdckcjn43j3cz")))) + (build-system ruby-build-system) + (propagated-inputs + `(("ruby-addressable" ,ruby-addressable) + ("ruby-faraday" ,ruby-faraday))) + (synopsis "Experimental hypermedia agent for Ruby") + (description "Sawyer is an experimental hypermedia agent for Ruby built on +top of Faraday.") + (home-page "https://github.com/lostisland/sawyer") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From aa3c76b100d2916b90fb16f9c46e6ea16e9e5d20 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 27 Jun 2020 00:37:22 -0400 Subject: gnu: Add ruby-octokit. * gnu/packages/ruby.scm (ruby-octokit): New variable. --- gnu/packages/ruby.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 9db9353636..17c6fd13ce 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6139,6 +6139,28 @@ (define-public ruby-sawyer (home-page "https://github.com/lostisland/sawyer") (license license:expat))) +(define-public ruby-octokit + (package + (name "ruby-octokit") + (version "4.18.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "octokit" version)) + (sha256 + (base32 + "0zvfr9njmj5svi39fcsi2b0g7pcxb0vamw9dlyas8bg814jlzhi6")))) + (build-system ruby-build-system) + (arguments '(#:tests? #f)) ;no test suite in the gem release + (propagated-inputs + `(("ruby-faraday" ,ruby-faraday) + ("ruby-sawyer" ,ruby-sawyer))) + (synopsis "Ruby toolkit for the GitHub API") + (description "Octokit wraps the GitHub API in a flat API client that +follows Ruby conventions and requires little knowledge of REST.") + (home-page "https://github.com/octokit/octokit.rb") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From 1157d2f82c62a60cc180bd727aebc98a2f4a9f09 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 27 Jun 2020 00:45:26 -0400 Subject: gnu: Add ruby-chandler. * gnu/packages/ruby.scm (ruby-chandler): New variable. --- gnu/packages/ruby.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 17c6fd13ce..2537a26a96 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6161,6 +6161,30 @@ (define-public ruby-octokit (home-page "https://github.com/octokit/octokit.rb") (license license:expat))) +(define-public ruby-chandler + (package + (name "ruby-chandler") + (version "0.9.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "chandler" version)) + (sha256 + (base32 + "1n8a4mr2jkcz5vaaps45g2rxa2pzy1wb7cylgw85xmmyyp14lnrr")))) + (build-system ruby-build-system) + (native-inputs + `(("ruby-rubocop" ,ruby-rubocop))) + (propagated-inputs + `(("ruby-netrc" ,ruby-netrc) + ("ruby-octokit" ,ruby-octokit))) + (synopsis "Sync CHANGELOG entries to GitHub's release notes") + (description "Chandler syncs a project's CHANGELOG file entries to +GitHub's release notes to remove the need of manually entering release +notes.") + (home-page "https://github.com/mattbrictson/chandler") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From 439d47cdb1ed6bc29a9222a96ebe13f908d2e726 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 28 Jun 2020 16:56:49 -0400 Subject: gnu: Add ruby-kpeg. * gnu/packages/ruby.scm (ruby-kpeg): New variable. --- gnu/packages/ruby.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 2537a26a96..d636561a2e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8446,6 +8446,29 @@ (define-public ruby-command-line-reporter-3 (base32 "1h39zqqxp3k4qk49ajpx0jps1vmvxgkh43mqkb6znk583bl0fv71")))))) +(define-public ruby-kpeg + (package + (name "ruby-kpeg") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "kpeg" version)) + (sha256 + (base32 + "0x2kpfrcagj931masm5y1kwbnc6nxl60cqdcd3lyd1d2hz7kzlia")))) + (build-system ruby-build-system) + (native-inputs + `(("ruby-hoe" ,ruby-hoe))) + (synopsis "PEG library for Ruby") + (description "KPeg is a simple PEG library for Ruby. It provides an API as +well as native grammar to build the grammar. KPeg supports direct left +recursion of rules via the +@uref{http://www.vpri.org/pdf/tr2008003_experimenting.pdf,OMeta memoization} +technique.") + (home-page "https://github.com/evanphx/kpeg") + (license license:expat))) + (define-public ruby-rdoc (package (name "ruby-rdoc") -- cgit v1.2.3 From 9304f989e65b52ab49f6f70f77fc157d2afc6f0b Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 28 Jun 2020 16:57:36 -0400 Subject: gnu: ruby-rdoc: Update to 6.2.0. * gnu/packages/ruby.scm (ruby-rdoc): Update to 6.2.0. [origin]: Fetch sources from git. [phases]{patch-gemspec, generate}: New phases. [native-inputs]{ruby-kpeg, ruby-racc, ruby-rubocop}: New native inputs. --- gnu/packages/ruby.scm | 37 +++++++++++++++++++++++++++++-------- 1 file changed, 29 insertions(+), 8 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index d636561a2e..7a9f4a2256 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8472,17 +8472,38 @@ (define-public ruby-kpeg (define-public ruby-rdoc (package (name "ruby-rdoc") - (version "6.0.4") + (version "6.2.0") (source - (origin - (method url-fetch) - (uri (rubygems-uri "rdoc" version)) - (sha256 - (base32 - "0anv42cqcdc6g4n386mrva7mgav5i0c2ry3yzvzzc6z6hymkmcr7")))) + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ruby/rdoc.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0dhk29nidv93b5vnjvlm9gcixgn4i0jcyzrgxdk6pdg019bw4cj6")))) (build-system ruby-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-gemspec + ;; TODO: Remove after next release is tagged. + (lambda _ + (substitute* "rdoc.gemspec" + (("\"lib/rdoc/generator/template/darkfish/js/\ +jquery\\.js\", ") "")) + #t)) + (add-before 'build 'generate + ;; 'gem build' doesn't honor Rakefile dependencies (see: + ;; https://github.com/ruby/rdoc/issues/432#issuecomment-650808977). + (lambda _ + (invoke "rake" "generate")))))) (native-inputs - `(("bundler" ,bundler))) + `(("bundler" ,bundler) + ("ruby-kpeg" ,ruby-kpeg) + ("ruby-racc" ,ruby-racc) + ("ruby-rubocop" ,ruby-rubocop))) (home-page "https://ruby.github.io/rdoc/") (synopsis "HTML and command-line documentation utility") (description "RDoc produces HTML and command-line documentation for Ruby -- cgit v1.2.3 From a0d93c174c9b5755aed9e477414000ebc5c525fb Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 28 Jun 2020 18:27:08 -0400 Subject: gnu: ruby-pry: Update to 0.13.1. * gnu/packages/ruby.scm (ruby-pry): Update to 0.13.1. [home-page]: Update. --- gnu/packages/ruby.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 7a9f4a2256..d4df3aa4d9 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4472,14 +4472,14 @@ (define-public ruby-progressbar (define-public ruby-pry (package (name "ruby-pry") - (version "0.11.3") + (version "0.13.1") (source (origin (method url-fetch) (uri (rubygems-uri "pry" version)) (sha256 (base32 - "1mh312k3y94sj0pi160wpia0ps8f4kmzvm505i6bvwynfdh7v30g")))) + "0iyw4q4an2wmk8v5rn2ghfy2jaz9vmw2nk8415nnpx2s866934qk")))) (build-system ruby-build-system) (arguments '(#:tests? #f)) ; no tests @@ -4490,7 +4490,7 @@ (define-public ruby-pry (description "Pry is an IRB alternative and runtime developer console for Ruby. It features syntax highlighting, a plugin architecture, runtime invocation, and source and documentation browsing.") - (home-page "https://pryrepl.org") + (home-page "https://cobaltbluemedia.com/pryrepl/") (license license:expat))) (define-public ruby-single-cov -- cgit v1.2.3 From ec08f4697610328727aef95061ce688d1377259a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 28 Jun 2020 22:38:47 -0400 Subject: gnu: ruby-method-source: Update to 1.0.0. * gnu/packages/ruby.scm (ruby-method-source): Update to 1.0.0. --- gnu/packages/ruby.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index d4df3aa4d9..50e8b42a37 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4184,14 +4184,14 @@ (define-public ruby-nokogiri (define-public ruby-method-source (package (name "ruby-method-source") - (version "0.9.0") + (version "1.0.0") (source (origin (method url-fetch) (uri (rubygems-uri "method_source" version)) (sha256 (base32 - "0xqj21j3vfq4ldia6i2akhn2qd84m0iqcnsl49kfpq3xk6x0dzgn")))) + "1pnyh44qycnf9mzi1j6fywd5fkskv3x7nmsqrrws0rjn5dd4ayfp")))) (build-system ruby-build-system) (arguments `(#:test-target "spec")) -- cgit v1.2.3 From cbee8e319f78a0e63dd2c5ea02f97ceb2fb44443 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 28 Jun 2020 22:42:33 -0400 Subject: gnu: bundler: Update to 2.1.4. * gnu/packages/ruby.scm (bundler): Update to 2.1.4. --- gnu/packages/ruby.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 50e8b42a37..c256e9a17e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -818,13 +818,13 @@ (define-public ruby-rspec-2 (define-public bundler (package (name "bundler") - (version "1.17.3") + (version "2.1.4") (source (origin (method url-fetch) (uri (rubygems-uri "bundler" version)) (sha256 (base32 - "0ln3gnk7cls81gwsbxvrmlidsfd78s6b2hzlm4d4a9wbaidzfjxw")))) + "12glbb1357x91fvd004jgkw7ihlkpc9dwr349pd7j83isqhls0ah")))) (build-system ruby-build-system) (arguments '(#:tests? #f)) ; avoid dependency cycles -- cgit v1.2.3 From c997403a80963f3edf8ebf8628e75e57ea1b0d79 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 28 Jun 2020 23:24:12 -0400 Subject: gnu: ruby-rake: Update to 13.0.1. * gnu/packages/ruby.scm (ruby-rake): Update to 13.0.1. --- gnu/packages/ruby.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index c256e9a17e..8bc701e42a 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8228,14 +8228,14 @@ (define-public ruby-org-ruby (define-public ruby-rake (package (name "ruby-rake") - (version "12.3.1") + (version "13.0.1") (source (origin (method url-fetch) (uri (rubygems-uri "rake" version)) (sha256 (base32 - "1idi53jay34ba9j68c3mfr9wwkg3cd9qh0fn9cg42hv72c6q8dyg")))) + "0w6qza25bq1s825faaglkx1k6d59aiyjjk3yw3ip5sb463mhhai9")))) (build-system ruby-build-system) (native-inputs `(("bundler" ,bundler))) -- cgit v1.2.3 From 77d098bf8152b41e7c587c19d406946b7ad57566 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 29 Jun 2020 00:17:23 -0400 Subject: gnu: ruby-ruby-engine: Update to 2.0.0. * gnu/packages/ruby.scm (ruby-ruby-engine): Update to 2.0.0. [phases]: Move the 'clean-up phase after 'extract-gemspec. Use a single backslash for escaping quotes in patterns. Make the phase more lenient to version changes. --- gnu/packages/ruby.scm | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 8bc701e42a..5d12e34678 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6718,19 +6718,19 @@ (define-public ruby-eventmachine (define-public ruby-ruby-engine (package (name "ruby-ruby-engine") - (version "1.0.1") + (version "2.0.0") (source (origin (method url-fetch) (uri (rubygems-uri "ruby_engine" version)) (sha256 (base32 - "1d0sd4q50zkcqhr395wj1wpn2ql52r0fpwhzjfvi1bljml7k546v")))) + "0wqdcv8gxybp1y7kjhh18g3r9dczacs62d4ahcvyhz32bih8c9fm")))) (build-system ruby-build-system) (arguments `(#:phases (modify-phases %standard-phases - (add-before 'check 'clean-up + (add-after 'extract-gemspec 'clean-up (lambda _ (delete-file "Gemfile.lock") (substitute* "ruby_engine.gemspec" @@ -6739,18 +6739,19 @@ (define-public ruby-ruby-engine ((".*.freeze, \\[\\\"~> 10.0\\\"\\]") + (("%q.freeze, \\[\"~> 10.0\"\\]") "%q.freeze, [\">= 10.0\"]") ;; Soften the rspec dependency - (("%q.freeze, \\[\\\"~> 2.4\\\"\\]") + (("%q.freeze, \\[\"~> 2.4\"\\]") "%q.freeze, [\">= 2.4\"]")) (substitute* "Rakefile" (("require 'rubygems/tasks'") "") (("Gem::Tasks.new") "")) ;; Remove extraneous .gem file that otherwise gets installed. - (delete-file "pkg/ruby_engine-1.0.0.gem") + (delete-file-recursively "pkg") #t))))) (native-inputs `(("bundler" ,bundler) -- cgit v1.2.3 From 7aa00628a53648be090b8113a882a94fe3a67637 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 30 Jun 2020 22:28:19 -0400 Subject: gnu: Add ruby-byebug-11. * gnu/packages/ruby.scm (ruby-byebug-11): New variable. --- gnu/packages/ruby.scm | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 5d12e34678..41791db045 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -5548,6 +5548,60 @@ (define-public ruby-byebug (home-page "https://github.com/deivid-rodriguez/byebug") (license license:bsd-2))) +;;; TODO: Make it the default byebug in core-updates. +(define-public ruby-byebug-11 + (package + (inherit ruby-byebug) + (name "ruby-byebug") + (version "11.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/deivid-rodriguez/byebug.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0vyy3k2s7dcndngj6m8kxhs1vxc2c93dw8b3yyand3srsg9ffpij")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Remove wrappers that try to setup a bundle environment. + (with-directory-excursion "bin" + (for-each delete-file '("bundle" "rake" "rubocop")) + ;; ruby-minitest doesn't come with a launcher, so fix the one + ;; provided. + (substitute* "minitest" + (("load File\\.expand_path\\(\"bundle\".*") "") + (("require \"bundler/setup\".*") ""))) + #t)))) + (arguments + `(#:tests? #t + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'skip-tmp-path-sensitive-test + (lambda _ + (substitute* "test/commands/where_test.rb" + (("unless /cygwin\\|mswin\\|mingw\\|darwin/.*") + "unless true\n")) + #t)) + (add-before 'build 'compile + (lambda _ + (invoke "rake" "compile"))) + (add-before 'check 'set-home + (lambda _ + (setenv "HOME" (getcwd)) + #t))))) + (native-inputs + `(("bundler" ,bundler) + ("ruby-chandler" ,ruby-chandler) + ("ruby-minitest" ,ruby-minitest) + ("ruby-pry" ,ruby-pry) + ("ruby-rake-compiler" ,ruby-rake-compiler) + ("ruby-rubocop" ,ruby-rubocop) + ("ruby-yard" ,ruby-yard))))) + (define-public ruby-netrc (package (name "ruby-netrc") -- cgit v1.2.3 From acb288767bb05396ac986edad8537d68a4322dff Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 1 Jul 2020 00:05:12 -0400 Subject: gnu: Add ruby-pry-byebug. * gnu/packages/ruby.scm (ruby-pry-byebug): New variable. --- gnu/packages/ruby.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 41791db045..eeb3513b1a 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6239,6 +6239,40 @@ (define-public ruby-chandler (home-page "https://github.com/mattbrictson/chandler") (license license:expat))) +(define-public ruby-pry-byebug + (package + (name "ruby-pry-byebug") + (version "3.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/deivid-rodriguez/pry-byebug.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1kchrwccai92068p50zyd6mh524ywqnm0jw5g3lks7iwmf0xkmgc")))) + (build-system ruby-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (add-before 'check 'set-home + (lambda _ + (setenv "HOME" (getcwd)) + #t))))) + (native-inputs + `(("ruby-chandler" ,ruby-chandler) + ("ruby-rubocop" ,ruby-rubocop) + ("ruby-simplecov" ,ruby-simplecov))) + (propagated-inputs + `(("ruby-byebug" ,ruby-byebug-11) + ("ruby-pry" ,ruby-pry))) + (synopsis "Step-by-step debugging and stack navigation in Pry") + (description "This package adds step-by-step debugging and stack +navigation capabilities to @code{pry}, using @code{byebug}.") + (home-page "https://github.com/deivid-rodriguez/pry-byebug") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From 4d31fe6b6c5c3758ae93f3d1c599072f5df977c4 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 1 Jul 2020 00:07:17 -0400 Subject: gnu: Add ruby-binding-of-caller. * gnu/packages/ruby.scm (ruby-binding-of-caller): New variable. --- gnu/packages/ruby.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index eeb3513b1a..8fb4115aea 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6273,6 +6273,30 @@ (define-public ruby-pry-byebug (home-page "https://github.com/deivid-rodriguez/pry-byebug") (license license:expat))) +(define-public ruby-binding-of-caller + (package + (name "ruby-binding-of-caller") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "binding_of_caller" version)) + (sha256 + (base32 + "05syqlks7463zsy1jdfbbdravdhj9hpj5pv2m74blqpv8bq4vv5g")))) + (build-system ruby-build-system) + ;; Attempting to run the test suite fails with a rake deprecation error + ;; (see: https://github.com/banister/binding_of_caller/issues/76). + (arguments '(#:tests? #f)) + (propagated-inputs + `(("ruby-debug-inspector" ,ruby-debug-inspector))) + (synopsis "Retrieve the binding of a method's caller") + (description "The @code{binding_of_caller} module provides the +@code{Binding#of_caller} method. It allows accessing bindings from upper +frames in the call stack and can evaluate code in that context.") + (home-page "https://github.com/banister/binding_of_caller") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From f4699abc26ac0dee46328d5a129fb8fb288418c3 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 1 Jul 2020 00:09:07 -0400 Subject: gnu: Add ruby-pry-stack-explorer. * gnu/packages/ruby.scm (ruby-pry-stack-explorer): New variable. --- gnu/packages/ruby.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 8fb4115aea..668b6924c5 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6297,6 +6297,28 @@ (define-public ruby-binding-of-caller (home-page "https://github.com/banister/binding_of_caller") (license license:expat))) +(define-public ruby-pry-stack-explorer + (package + (name "ruby-pry-stack-explorer") + (version "0.5.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "pry-stack_explorer" version)) + (sha256 + (base32 + "157rd2n9pfvcmmicm0xkq8z4p6famaj13syrpra6b4032qpb1wn0")))) + (build-system ruby-build-system) + (arguments '(#:tests? #f)) ;no test suite in gem release + (propagated-inputs + `(("ruby-binding-of-caller" ,ruby-binding-of-caller) + ("ruby-pry" ,ruby-pry))) + (synopsis "Call-stack navigation plugin for the Pry REPL") + (description "@code{pry-stack_explorer} is a plugin for the Pry REPL that +add support to navigate the call-stack.") + (home-page "https://github.com/pry/pry-stack_explorer") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From 1f014c9769f28b7f77a53ac9fdcc2a4ec6c9915e Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 1 Jul 2020 00:12:32 -0400 Subject: gnu: Add ruby-varint. * gnu/packages/ruby.scm (ruby-varint): New variable. --- gnu/packages/ruby.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 668b6924c5..e4cfff7cc2 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6319,6 +6319,25 @@ (define-public ruby-pry-stack-explorer (home-page "https://github.com/pry/pry-stack_explorer") (license license:expat))) +(define-public ruby-varint + (package + (name "ruby-varint") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "varint" version)) + (sha256 + (base32 + "1y0l2qc64cwsyv76ygg9bbjnk86riz2kq73kmn87gdrlmpiyrdac")))) + (build-system ruby-build-system) + (arguments '(#:tests? #f)) ;no test suite + (synopsis "Variable length integers (varint) C extension for Ruby") + (description "This package provides a small C extension to speed up +variable length integers (varint) in Ruby Protocol Buffers.") + (home-page "https://github.com/liquidm/varint") + (license license:bsd-3))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From 1b2141743550aee95acda7b270d7df3fd671350e Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 1 Jul 2020 00:17:32 -0400 Subject: gnu: Add ruby-ruby-prof. * gnu/packages/ruby.scm (ruby-ruby-prof): New variable. --- gnu/packages/ruby.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index e4cfff7cc2..08163599f9 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6338,6 +6338,55 @@ (define-public ruby-varint (home-page "https://github.com/liquidm/varint") (license license:bsd-3))) +(define-public ruby-ruby-prof + (package + (name "ruby-ruby-prof") + (version "1.4.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "ruby-prof" version)) + (sha256 + (base32 + "12cd91m08ih0imfpy4k87618hd4mhyz291a6bx2hcskza4nf6d27")))) + (build-system ruby-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-rakefile + ;; This fixes the following error: "NameError: uninitialized + ;; constant Bundler::GemHelper" (see: + ;; https://github.com/ruby-prof/ruby-prof/issues/274). + (lambda _ + (substitute* "Rakefile" + ((".*require \"bundler/setup\".*" all) + (string-append all " require 'bundler/gem_tasks'\n"))) + #t)) + (add-before 'check 'compile + (lambda _ + (invoke "rake" "compile")))))) + (native-inputs + `(("bundler" ,bundler) + ("ruby-minitest" ,ruby-minitest) + ("ruby-rake-compiler" ,ruby-rake-compiler) + ("ruby-rdoc" ,ruby-rdoc))) + (synopsis "Fast code profiler for Ruby") + (description "RubyProf is a fast code profiler for Ruby. Its features +include: +@table @asis +@item Speed +Being a C extension, it is many times faster than the standard Ruby profiler. +@item Measurement Modes +It can measure program wall time, process time, object allocations and memory +usage. +@item Reports +A variety of text and cross-referenced HTML reports can be generated. +@item Threads +Profiling multiple threads simultaneously is supported. +@end table") + (home-page "https://github.com/ruby-prof/ruby-prof") + (license license:bsd-2))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From dff5392f855c70bdeeb060ca7f4422ba6a91de5e Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 7 Jul 2020 15:05:59 -0400 Subject: gnu: Add ruby-cucumber-messages * gnu/packages/ruby.scm (ruby-cucumber-messages): New variable. --- gnu/packages/ruby.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 08163599f9..47951d9d5a 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -60,6 +60,7 @@ (define-module (gnu packages ruby) #:use-module (gnu packages ncurses) #:use-module (gnu packages networking) #:use-module (gnu packages node) + #:use-module (gnu packages protobuf) #:use-module (gnu packages python) #:use-module (gnu packages python-xyz) #:use-module (gnu packages ragel) @@ -6387,6 +6388,49 @@ (define-public ruby-ruby-prof (home-page "https://github.com/ruby-prof/ruby-prof") (license license:bsd-2))) +(define-public ruby-cucumber-messages + (package + (name "ruby-cucumber-messages") + (version "12.2.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cucumber/messages-ruby.git") + (commit "12cd07eac87bce7843fd1bb0bf64bc4da09f097c"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "16wwqfpsq7crvxc3q08lphgyh12cl2d83p1c79p312q4jmy9cn5a")))) + (build-system ruby-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'patch-protobuf.rb + (lambda _ + (substitute* "rake/protobuf.rb" + (("load 'protobuf/tasks/compile.rake'") + "require 'protobuf/tasks'")) + #t)) + (add-before 'build 'compile + (lambda _ + (substitute* "Makefile" + (("bundle exec ") "") + (("include default.mk.*" all) + (string-append "#" all))) + (invoke "make"))) + (replace 'check + (lambda _ + (invoke "rspec")))))) + (propagated-inputs + `(("ruby-protobuf" ,ruby-protobuf-cucumber))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec))) + (home-page "https://github.com/cucumber/messages-ruby") + (synopsis "Cucumber Messages for Ruby (Protocol Buffers)") + (description "Cucumber Messages for Ruby is a library which allows +serialization and deserialization of the protocol buffer messages used in +Cucumber.") + (license license:expat))) + (define-public ruby-gherkin (package (name "ruby-gherkin") -- cgit v1.2.3 From cfef316f25b718479569bd23bd8e26c83bf2e7d0 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 7 Jul 2020 23:41:28 -0400 Subject: gnu: ruby-gherkin: Update to 14.0.1. * gnu/packages/ruby.scm (ruby-gherkin): Update to 14.0.1. [native-inputs]: Remove bundler. Add ruby-cucumber-messages and ruby-rspec. [phases]: Delete. [home-page]: Update. --- gnu/packages/ruby.scm | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 47951d9d5a..871ca2a654 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6434,24 +6434,27 @@ (define-public ruby-cucumber-messages (define-public ruby-gherkin (package (name "ruby-gherkin") - (version "5.1.0") - (source - (origin - (method url-fetch) - (uri (rubygems-uri "gherkin" version)) - (sha256 - (base32 - "1cgcdchwwdm10rsk44frjwqd4ihprhxjbm799nscqy2q1raqfj5s")))) + (version "14.0.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cucumber/gherkin-ruby") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1dwa8632nc6kijv8p257jl64rsjmc0fimlaqvxlkdi2h9n1nympb")))) (build-system ruby-build-system) (native-inputs - `(("bundler" ,bundler))) + `(("ruby-cucumber-messages" ,ruby-cucumber-messages) + ("ruby-rspec" ,ruby-rspec))) (arguments - '(#:tests? #f)) ; needs simplecov, among others + `(#:test-target "spec")) (synopsis "Gherkin parser for Ruby") (description "Gherkin is a parser and compiler for the Gherkin language. It is intended be used by all Cucumber implementations to parse @file{.feature} files.") - (home-page "https://github.com/cucumber-attic/gherkin") + (home-page "https://github.com/cucumber/gherkin-ruby") (license license:expat))) (define-public ruby-gherkin-ruby -- cgit v1.2.3 From f048ef520fe92c114a100e9ace0f9c323119c74c Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 11:28:12 -0400 Subject: gnu: Add ruby-coveralls. * gnu/packages/ruby.scm (ruby-coveralls): New variable. --- gnu/packages/ruby.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 871ca2a654..b05f9c069e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6617,6 +6617,32 @@ (define ruby-cucumber-without-tests (native-inputs '()))) +(define-public ruby-coveralls + (package + (name "ruby-coveralls") + (version "0.8.23") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "coveralls" version)) + (sha256 + (base32 + "1mv4fn5lfxhy7bc2f1lpnc5yp9mvv97az77j4r7jgrxcqwn8fqxc")))) + (build-system ruby-build-system) + ;; The test suite depends on ruby-vcr, which cannot be included in Guix + ;; because of its nonfree, Hippocratic derived license. + (arguments '(#:tests? #f)) + (propagated-inputs + `(("ruby-json" ,ruby-json) + ("ruby-term-ansicolor" ,ruby-term-ansicolor) + ("ruby-thor" ,ruby-thor) + ("ruby-tins" ,ruby-tins))) + (synopsis "Ruby implementation of the Coveralls API") + (description "This package provides a Ruby implementation of the Coveralls +API.") + (home-page "https://coveralls.io") + (license license:expat))) + (define-public ruby-cucumber-core (package (name "ruby-cucumber-core") -- cgit v1.2.3 From f2a1b7facb975bd20a402d2cc2b24f40a7934942 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 11:28:21 -0400 Subject: gnu: Add ruby-unindent. * gnu/packages/ruby.scm (ruby-unindent): New variable. --- gnu/packages/ruby.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index b05f9c069e..8a732b5eab 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6643,6 +6643,25 @@ (define-public ruby-coveralls (home-page "https://coveralls.io") (license license:expat))) +(define-public ruby-unindent + (package + (name "ruby-unindent") + (version "1.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "unindent" version)) + (sha256 + (base32 + "1wqh3rzv8589yzibigminxx3qpmj2nqj28f90xy1sczk1pijmcrd")))) + (build-system ruby-build-system) + (synopsis "Ruby method to unindent strings") + (description "This module provides a @code{String#unindent} Ruby method to +unindent strings, which can be useful to unindent multiline strings embedded +in already-indented code.") + (home-page "https://github.com/mynyml/unindent") + (license license:expat))) + (define-public ruby-cucumber-core (package (name "ruby-cucumber-core") -- cgit v1.2.3 From 95a5d992deaf7b5e3f422c664ddd76e08108c921 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 11:28:48 -0400 Subject: gnu: ruby-cucumber-core: Update to 7.1.0. * gnu/packages/ruby.scm (ruby-cucumber-core): Update to 7.1.0. [origin]: Use the git-fetch method. [arguments]: Enable tests, by specifying the test target and... [native-inputs]: ...adding ruby-rspec, ruby-rake, ruby-coveralls, ruby-rubocop, ruby-simplecov and ruby-unindent as native inputs. Remove bundler. [phases]{relax-version-requirements}: Add phase. [propagated-inputs]: Remove ruby-backports. Add ruby-cucumber-messages. --- gnu/packages/ruby.scm | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 8a732b5eab..9fbc8b322a 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6665,24 +6665,38 @@ (define-public ruby-unindent (define-public ruby-cucumber-core (package (name "ruby-cucumber-core") - ;; Stick to major version 3, until version 4 of Cucumber is released. - (version "3.2.1") + (version "7.1.0") (source (origin - (method url-fetch) - (uri (rubygems-uri "cucumber-core" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/cucumber/cucumber-ruby-core.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "1iavlh8hqj9lwljbpkw06259gdicbr1bdb6pbj5yy3n8szgr8k3c")))) + "1p5wb6wbggbw37ariyag4kxpiczznvgm3c8cnz1744dmbj79q1rn")))) (build-system ruby-build-system) + (arguments + `(#:test-target "spec" + #:phases + (modify-phases %standard-phases + (add-after 'extract-gemspec 'relax-version-requirements + (lambda _ + (substitute* "cucumber-core.gemspec" + (("'cucumber-tag-expressions',.*") + "'cucumber-tag-expressions', '>=2.0.0'\n")) + #t))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec) + ("ruby-coveralls" ,ruby-coveralls) + ("ruby-rubocop" ,ruby-rubocop) + ("ruby-simplecov" ,ruby-simplecov) + ("ruby-unindent" ,ruby-unindent))) (propagated-inputs - `(("ruby-backports" ,ruby-backports) + `(("ruby-cucumber-messages" ,ruby-cucumber-messages) ("ruby-gherkin" ,ruby-gherkin) ("ruby-cucumber-tag-expressions" ,ruby-cucumber-tag-expressions))) - (native-inputs - `(("bundler" ,bundler))) - (arguments - '(#:tests? #f)) ; needs simplecov, among others (synopsis "Core library for the Cucumber BDD app") (description "Cucumber is a tool for running automated tests written in plain language. Because they're written in plain language, -- cgit v1.2.3 From 0d2c45ce75fccf112e37403df815d9d98feedfdb Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 13:00:24 -0400 Subject: gnu: ruby-cucumber-tag-expressions: Update to 3.0.0. * gnu/packages/ruby.scm (ruby-cucumber-tag-expressions): Update to 3.0.0. [origin]: Fetch sources from git, to get the latest tag. [arguments]: Use the 'spec' test target instead of using a custom phase. [description]: Reformat. --- gnu/packages/ruby.scm | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 9fbc8b322a..0cd0a133b3 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6769,28 +6769,25 @@ (define-public ruby-cucumber-wire (define-public ruby-cucumber-tag-expressions (package (name "ruby-cucumber-tag-expressions") - (version "1.1.1") + (version "3.0.0") (source (origin - (method url-fetch) - (uri (rubygems-uri "cucumber-tag_expressions" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/cucumber/tag-expressions-ruby.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "0cvmbljybws0qzjs1l67fvr9gqr005l8jk1ni5gcsis9pfmqh3vc")))) + "15dw4w0npd4m6aw7zhqkjxxzngp42kswrkwfygxkxcxnhy5zl1vx")))) (build-system ruby-build-system) (arguments - '(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda _ - (invoke "rspec") - #t))))) + `(#:test-target "spec")) (native-inputs `(("ruby-rspec" ,ruby-rspec))) (synopsis "Cucumber tag expressions for Ruby") - (description - "Cucumber tag expression parser for Ruby. A tag expression is an infix -boolean expression used by Cucumber.") + (description "Cucumber tag expression parser for Ruby. A tag expression +is an infix boolean expression used by Cucumber.") (home-page "https://github.com/cucumber/tag-expressions-ruby") (license license:expat))) -- cgit v1.2.3 From fd6577b4e505975071fabb9eace360e158cf8027 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 13:38:04 -0400 Subject: gnu: Add ruby-sys-uname. * gnu/packages/ruby.scm (ruby-sys-uname): New variable. --- gnu/packages/ruby.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 0cd0a133b3..f1213f750d 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6558,6 +6558,29 @@ (define ruby-aruba-without-tests (package-propagated-inputs ruby-aruba)))) (native-inputs '()))) +(define-public ruby-sys-uname + (package + (name "ruby-sys-uname") + (version "1.2.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "sys-uname" version)) + (sha256 + (base32 + "00p3wwvkdbg6pl38bchaagncv3i4fq4y0ks470imwykjanpy2ic0")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "spec")) + (propagated-inputs `(("ruby-ffi" ,ruby-ffi))) + (native-inputs `(("ruby-rspec" ,ruby-rspec))) + (synopsis "Ruby interface for gathering system information") + (description "The sys-uname library provides an interface for gathering +information about your current platform. It allows retrieving information +such as the OS name, OS version, system name, etc.") + (home-page "https://github.com/djberg96/sys-uname") + (license license:asl2.0))) + (define-public ruby-cucumber (package (name "ruby-cucumber") -- cgit v1.2.3 From ac3ec612c3213005b4fe8316e6340ef91c7aef43 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 14:01:05 -0400 Subject: gnu: Add ruby-cucumber-create-meta. * gnu/packages/ruby.scm (ruby-cucumber-create-meta): New variable. --- gnu/packages/ruby.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index f1213f750d..0a5b6d2129 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6581,6 +6581,40 @@ (define-public ruby-sys-uname (home-page "https://github.com/djberg96/sys-uname") (license license:asl2.0))) +(define-public ruby-cucumber-create-meta + (package + (name "ruby-cucumber-create-meta") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "cucumber-create-meta" version)) + (sha256 + (base32 + "0i0i3arymjrnjk72mg79w1a11607x4d0lrqafm9sz2gq9l52zasw")))) + (build-system ruby-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (add-after 'extract-gemspec 'relax-version-requirements + (lambda _ + (substitute* ".gemspec" + ((" 12\\.2") + " 12.1")) + #t)) + (replace 'check + (lambda _ + (invoke "rspec")))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-cucumber-messages" ,ruby-cucumber-messages) + ("ruby-sys-uname" ,ruby-sys-uname))) + (synopsis "Function to create @code{Meta} messages for Cucumber Ruby") + (description "The @code{createMeta} utility function allows generating +system-specific @code{Meta} messages for Cucumber Ruby.") + (home-page "https://github.com/cucumber/cucumber/tree/master/create-meta/ruby") + (license license:expat))) + (define-public ruby-cucumber (package (name "ruby-cucumber") -- cgit v1.2.3 From 4ada4a429431c8a8b2d1ae249d48c902fa61f032 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 15:01:46 -0400 Subject: gnu: ruby-cucumber-expressions: Update to 10.2.0. * gnu/packages/ruby.scm (ruby-cucumber-expressions): Update to 10.2.0. [origin]: Use git-fetch, as the latest published gem is outdated. [native-inputs]: Remove bundler. --- gnu/packages/ruby.scm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 0a5b6d2129..660b8d5e0c 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6766,20 +6766,22 @@ (define-public ruby-cucumber-core (define-public ruby-cucumber-expressions (package (name "ruby-cucumber-expressions") - (version "6.0.1") + (version "10.2.0") (source (origin - (method url-fetch) - (uri (rubygems-uri "cucumber-expressions" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/cucumber/cucumber-expressions-ruby.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "0zwmv6hznyz9vk81f5dhwcr9jhxx2vmbk8yyazayvllvhy0fkpdw")))) + "1aivhcpjrmbvp9bg0y7g6zxh2swfvylvg0sapq5jc4i1y74k8npd")))) (build-system ruby-build-system) (arguments '(#:test-target "spec")) (native-inputs - `(("bundler" ,bundler) - ("ruby-rspec" ,ruby-rspec) + `(("ruby-rspec" ,ruby-rspec) ("ruby-simplecov" ,ruby-simplecov))) (synopsis "Simpler alternative to Regular Expressions") (description "Cucumber Expressions offer similar functionality to Regular -- cgit v1.2.3 From 6516827e131780c0b20c2df10c436eb034586e01 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 15:04:46 -0400 Subject: gnu: ruby-cucumber-wire: Update to 3.1.0. * gnu/packages/ruby.scm (ruby-cucumber-wire): Update to 3.1.0. [arguments]: Remove test-target, which is not used. [phases]: Remove set-CUCUMBER_USE_RELEASED_GEMS and add relax-version-requirements. [native-inputs]: Remove. [propagated-inputs]: Add ruby-cucumber-core, ruby-cucumber-expressions and ruby-cucumber-messages. [description]: Reformat. --- gnu/packages/ruby.scm | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 660b8d5e0c..2b56937906 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6793,35 +6793,31 @@ (define-public ruby-cucumber-expressions (define-public ruby-cucumber-wire (package (name "ruby-cucumber-wire") - ;; Package version 0.0.1 initially, as this is what's needed by Cucumber - ;; 3, and Cucumber 4 hasn't been released yet. - (version "0.0.1") + (version "3.1.0") (source (origin (method url-fetch) (uri (rubygems-uri "cucumber-wire" version)) (sha256 (base32 - "09ymvqb0sbw2if1nxg8rcj33sf0va88ancq5nmp8g01dfwzwma2f")))) + "0z1n13lqv70zb2lcrvs2263lm0gsb3gz8gbv890kxzwp8cvd433k")))) (build-system ruby-build-system) (arguments - '(;; TODO: Currently, the tests can't be run as cucumber is required, - ;; which would lead to a circular dependency. - #:tests? #f - #:test-target "default" + '(#:tests? #f ;tests use cucumber, causing a cycle #:phases (modify-phases %standard-phases - (add-before 'check 'set-CUCUMBER_USE_RELEASED_GEMS + (add-after 'extract-gemspec 'relax-version-requirements (lambda _ - (setenv "CUCUMBER_USE_RELEASED_GEMS" "true") + (substitute* ".gemspec" + ((" 10\\.1") " 10.2")) #t))))) - (native-inputs - `(("bundler" ,bundler) - ("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-cucumber-core" ,ruby-cucumber-core) + ("ruby-cucumber-expressions" ,ruby-cucumber-expressions) + ("ruby-cucumber-messages" ,ruby-cucumber-messages))) (synopsis "Cucumber wire protocol plugin") - (description - "Cucumber's wire protocol allows step definitions to be implemented and -invoked on any platform.") + (description "Cucumber's wire protocol allows step definitions to be +implemented and invoked on any platform.") (home-page "https://github.com/cucumber/cucumber-ruby-wire") (license license:expat))) -- cgit v1.2.3 From f357462426584d5d6ffb0cc7ea60243577bf246c Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 21:47:44 -0400 Subject: gnu: Add ruby-cucumber-html-formatter. * gnu/packages/ruby.scm (ruby-cucumber-html-formatter): New variable. --- gnu/packages/ruby.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 2b56937906..4eda0d17fe 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6615,6 +6615,36 @@ (define-public ruby-cucumber-create-meta (home-page "https://github.com/cucumber/cucumber/tree/master/create-meta/ruby") (license license:expat))) +(define-public ruby-cucumber-html-formatter + (package + (name "ruby-cucumber-html-formatter") + (version "7.0.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "cucumber-html-formatter" version)) + (sha256 + (base32 + "0lshj4sw9jw7687wrhknyb9kffblai3l843zgrznyqij3ga0bc62")))) + (build-system ruby-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "rspec")))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-cucumber-messages" ,ruby-cucumber-messages))) + (synopsis "HTML formatter for Cucumber") + (description "Cucumber HTML Formatter produces a HTML report for Cucumber +runs. It is built on top of cucumber-react and works with any Cucumber +implementation with a protocol buffer formatter that outputs Cucumber +messages.") + (home-page "https://github.com/cucumber/cucumber/tree/\ +master/html-formatter/ruby") + (license license:expat))) + (define-public ruby-cucumber (package (name "ruby-cucumber") -- cgit v1.2.3 From 92ebbaad0924dcca8061604384452cd8e09965b3 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 15:08:50 -0400 Subject: gnu: ruby-cucumber: Update to 4.1.0. * gnu/packages/ruby.scm (ruby-cucumber): Update to 4.1.0. [phases]{strip-version-requirements}: New phase. [propagated-inputs]: Add ruby-cucumber-create-meta, ruby-cucumber-html-formatter and ruby-cucumber-messages. Remove ruby-cucumber-expressions. [native-inputs]: Add ruby-rubocop. [description]: Reformat. --- gnu/packages/ruby.scm | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 4eda0d17fe..a9b800acfd 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6648,7 +6648,7 @@ (define-public ruby-cucumber-html-formatter (define-public ruby-cucumber (package (name "ruby-cucumber") - (version "3.1.2") + (version "4.1.0") (source (origin (method git-fetch) @@ -6658,41 +6658,40 @@ (define-public ruby-cucumber (file-name (git-file-name name version)) (sha256 (base32 - "0764wp2cjg60qa3l69q1dxda5g06a01n5w92szqbf89d2hgl47n3")))) + "0g9rqfslbzkkrq2kvl14fgknrhfbji3bjjpjxff5nc9wzd3hd549")))) (build-system ruby-build-system) (arguments '(#:test-target "spec" #:phases (modify-phases %standard-phases - ;; Don't run or require rubocop, the code linting tool, as this is a - ;; bit unnecessary. - (add-after 'unpack 'dont-run-rubocop + (add-after 'extract-gemspec 'strip-version-requirements (lambda _ - (substitute* "Rakefile" - ((".*rubocop/rake\\_task.*") "") - ((".*RuboCop.*") "")) + (substitute* "cucumber.gemspec" + (("(.*add_.*dependency '[_A-Za-z0-9-]+').*" _ stripped) + (string-append stripped "\n"))) #t))))) (propagated-inputs `(("ruby-builder" ,ruby-builder) ("ruby-cucumber-core" ,ruby-cucumber-core) + ("ruby-cucumber-create-meta" ,ruby-cucumber-create-meta) + ("ruby-cucumber-html-formatter" ,ruby-cucumber-html-formatter) + ("ruby-cucumber-messages" ,ruby-cucumber-messages) ("ruby-cucumber-wire" ,ruby-cucumber-wire) - ("ruby-cucumber-expressions" ,ruby-cucumber-expressions) ("ruby-diff-lcs" ,ruby-diff-lcs) ("ruby-gherkin" ,ruby-gherkin) ("ruby-multi-json" ,ruby-multi-json) ("ruby-multi-test" ,ruby-multi-test))) (native-inputs - `(("bundler" ,bundler) - ;; Use a untested version of aruba, to avoid a circular dependency, as + `(;; Use a untested version of aruba, to avoid a circular dependency, as ;; ruby-aruba depends on ruby-cucumber. ("ruby-aruba", ruby-aruba-without-tests) ("ruby-rspec" ,ruby-rspec) ("ruby-pry" ,ruby-pry) - ("ruby-nokogiri" ,ruby-nokogiri))) + ("ruby-nokogiri" ,ruby-nokogiri) + ("ruby-rubocop" ,ruby-rubocop))) (synopsis "Describe automated tests in plain language") - (description - "Cucumber is a tool for running automated tests written in plain -language. It's designed to support a Behaviour Driven Development (BDD) + (description "Cucumber is a tool for running automated tests written in +plain language. It's designed to support a Behaviour Driven Development (BDD) software development workflow.") (home-page "https://cucumber.io/") (license license:expat))) -- cgit v1.2.3 From 1097fdbea75c2e9cc7c8a72c50a812def6ce62e6 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 21:54:35 -0400 Subject: gnu: ruby_version: Update to 1.0.2. * gnu/packages/ruby.scm (ruby_version): Update to 1.0.2. [phases]: Adapt the fix-dependencies phase. [native-inputs]: Add ruby-rdoc and ruby-rubygems-tasks. Remove bundler. [description]: Reformat. --- gnu/packages/ruby.scm | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index a9b800acfd..172dd4fe60 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7581,44 +7581,40 @@ (define-public ruby-unicode-display-width (define-public ruby_version (package (name "ruby_version") - (version "1.0.1") + (version "1.0.2") (source (origin (method url-fetch) (uri (rubygems-uri "ruby_version" version)) (sha256 (base32 - "0854i1bjy56176anr05l5m0vc81nl53c7fyfg7sljj62m1d64dgj")))) + "0lvc7bd5ps3w2vq2wb02i0pi3vfcx2rnckx2ix4rjym1qf52kb2j")))) (build-system ruby-build-system) (arguments - '(#:phases + `(#:phases (modify-phases %standard-phases (add-before 'check 'fix-dependencies (lambda _ ;; Remove the Gemfile.lock, as we want to use Guix packages at ;; whatever versions. (delete-file "Gemfile.lock") - ;; Remove the incldued gem file as it's unnecessary. - (delete-file "pkg/ruby_version-1.0.0.gem") + ;; Remove the included gem files as they unnecessary. + (delete-file-recursively "pkg/") + ;; Accept any version of rake, rdoc and rspec (substitute* "ruby_version.gemspec" - ;; Don't require rdoc and rubygems-tasks as they're unnecessary - ((".*rdoc.*") "\n") - ((".*rubygems-tasks.*") "\n") - ;; Accept any version of rake and rspec (("%q)\n") + (("%q)\n") (("%q)\n")) - ;; Remove the use of rubygems-tasks from the Rakefile, as it's - ;; unnecessary. + ;; Do not use bundler. (substitute* "Rakefile" - (("^require 'rubygems/tasks'") "") - (("Gem::Tasks.new") "")) + (("Bundler\\.setup.*") "nil\n")) #t))))) (native-inputs - `(("bundler" ,bundler) - ("ruby-rspec" ,ruby-rspec))) + `(("ruby-rdoc" ,ruby-rdoc) + ("ruby-rspec" ,ruby-rspec) + ("ruby-rubygems-tasks", ruby-rubygems-tasks))) (synopsis "Ruby library to help check the Ruby version") - (description - "@code{ruby_version} provides a @code{RubyVersion} module to simplify + (description "@code{ruby_version} provides a @code{RubyVersion} module to simplify checking for the right Ruby version in software.") (home-page "https://github.com/janlelis/ruby_version") (license license:expat))) -- cgit v1.2.3 From f9083965293117994c56715f0de89ca98a95b81a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 22:22:29 -0400 Subject: gnu: Add ruby-cuke-modeler. * gnu/packages/ruby.scm (ruby-cuke-modeler): New variable. --- gnu/packages/ruby.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 172dd4fe60..2e4ca7b284 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4226,6 +4226,32 @@ (define-public ruby-coderay (home-page "http://coderay.rubychan.de") (license license:expat))) +(define-public ruby-cuke-modeler + (package + (name "ruby-cuke-modeler") + (version "3.1.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "cuke_modeler" version)) + (sha256 + (base32 + "19smj3g3wvz0203l549sadpcxgh0ir350a6k78gq0bmlv9cchmjb")))) + (build-system ruby-build-system) + (arguments `(#:tests? #f)) ;no test suite in gem + (propagated-inputs + `(("ruby-gherkin" ,ruby-gherkin))) + (synopsis "Gherkin test suite analysis tool") + (description "CukeModeler facilitates modeling a test suite that is +written in Gherkin (e.g. Cucumber, SpecFlow, Lettuce, etc.). It does this by +providing an abstraction layer on top of the Abstract Syntax Tree (AST) that +the @code{cucumber-gherkin} generates when parsing features, as well as +providing models for feature files and directories in order to be able to have +a fully traversable model tree of a test suite's structure. These models can +then be analyzed or manipulated more easily than the underlying AST layer.") + (home-page "https://github.com/enkessler/cuke_modeler") + (license license:expat))) + (define-public ruby-parallel-tests (package (name "ruby-parallel-tests") -- cgit v1.2.3 From 8a01e2fa1e36d5f00f664f29308917eb89ecf6b2 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 22:23:41 -0400 Subject: gnu: ruby-parallel-tests: Update to 3.0.0. * gnu/packages/ruby.scm (ruby-parallel-tests): Update to 3.0.0. [native-inputs]: Add ruby-cuke-modeler. --- gnu/packages/ruby.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 2e4ca7b284..f3f56635a5 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4255,7 +4255,7 @@ (define-public ruby-cuke-modeler (define-public ruby-parallel-tests (package (name "ruby-parallel-tests") - (version "2.32.0") + (version "3.0.0") (home-page "https://github.com/grosser/parallel_tests") (source (origin (method git-fetch) @@ -4265,7 +4265,7 @@ (define-public ruby-parallel-tests (file-name (string-append name version)) (sha256 (base32 - "0l2rjz9fnxv7hvz679v7a75mghsh9x9qpvbyapiavqsx21v42l7m")))) + "08a6ndqn2dqacmc7yg48k0dh2rfrynvhkd5hiay16dl9m1r9q8pz")))) (build-system ruby-build-system) (arguments '(#:test-target "default" @@ -4303,6 +4303,7 @@ (define-public ruby-parallel-tests (native-inputs `(("ruby-bump" ,ruby-bump) ("ruby-cucumber" ,ruby-cucumber) + ("ruby-cuke-modeler" ,ruby-cuke-modeler) ("ruby-minitest" ,ruby-minitest) ("ruby-rake" ,ruby-rake) ("ruby-rspec" ,ruby-rspec) -- cgit v1.2.3 From 6700dc3341bedb70e98bfa9f5eeb8db68a7c31b3 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 8 Jul 2020 22:26:54 -0400 Subject: gnu: ruby-sdoc: Update to 1.1.0. * gnu/packages/ruby.scm (ruby-sdoc): Update to 1.1.0. --- gnu/packages/ruby.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index f3f56635a5..5a41375480 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4837,13 +4837,13 @@ (define-public ruby-pry-editline (define-public ruby-sdoc (package (name "ruby-sdoc") - (version "0.4.2") + (version "1.1.0") (source (origin (method url-fetch) (uri (rubygems-uri "sdoc" version)) (sha256 (base32 - "0qhvy10vnmrqcgh8494m13kd5ag9c3sczzhfasv8j0294ylk679n")))) + "1am73dldx1fqlw2xny5vyk00pgkisg6bvs0pa8jjd7c19drjczrd")))) (build-system ruby-build-system) (arguments `(#:phases -- cgit v1.2.3 From 65a61239517f6b45a8728657d55102d2373fe915 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 9 Jul 2020 11:49:49 -0400 Subject: gnu: ruby-yard: Disable tests. YARD is a common dependency in the Ruby world; having it carry extra test dependencies is prone to cause dependency cycles. For example, YARD depends on Asciidoctor, but the latest Asciidoctor requires ruby-cucumber for its test suite, which pulls YARD through many of its dependencies. * gnu/packages/ruby.scm (ruby-yard)[arguments]: Disable tests. [native-inputs]: Remove. --- gnu/packages/ruby.scm | 32 ++++++++++---------------------- 1 file changed, 10 insertions(+), 22 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 5a41375480..72cdeced43 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6994,35 +6994,23 @@ (define-public ruby-yard (method git-fetch) ;; Tests do not pass if we build from the distributed gem. (uri (git-reference - (url "https://github.com/lsegal/yard") - (commit (string-append "v" version)))) + (url "https://github.com/lsegal/yard") + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1v48zz8hzazrg79jksj9siys21d2axvzijvkxw2j42zh86syi1wi")))) (build-system ruby-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda _ - ;; Delete the Gemfile to avoid errors relating to it - (delete-file "Gemfile") - ;; $HOME needs to be set to somewhere writeable for tests to run - (setenv "HOME" "/tmp") - ;; Run tests without using 'rake' to avoid dependencies. - (invoke "rspec")))))) - (native-inputs - `(("ruby-rspec" ,ruby-rspec) - ("ruby-rack" ,ruby-rack) - ("ruby-redcloth" ,ruby-redcloth) - ("ruby-asciidoc" ,ruby-asciidoctor))) + ;; Note: Tests are willfully disabled to alleviate dependency cycle + ;; problems. + `(#:tests? #f)) (synopsis "Documentation generation tool for Ruby") - (description - "YARD is a documentation generation tool for the Ruby programming -language. It enables the user to generate consistent, usable documentation -that can be exported to a number of formats very easily, and also supports -extending for custom Ruby constructs such as custom class level definitions.") + (description "YARD is a documentation generation tool for the Ruby +programming language. It enables the user to generate consistent, usable +documentation that can be exported to a number of formats very easily, and +also supports extending for custom Ruby constructs such as custom class level +definitions.") (home-page "https://yardoc.org") (license license:expat))) -- cgit v1.2.3 From df32ab1196e69c8d769de5effb5b485c780bff96 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 9 Jul 2020 12:01:36 -0400 Subject: gnu: Add ruby-yard-with-tests. * gnu/packages/ruby.scm (ruby-yard-with-tests): New variable. --- gnu/packages/ruby.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 72cdeced43..7071fb3dab 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7014,6 +7014,33 @@ (define-public ruby-yard (home-page "https://yardoc.org") (license license:expat))) +(define-public ruby-yard-with-tests + (package + (inherit ruby-yard) + (name "ruby-yard-with-tests") + (arguments + (substitute-keyword-arguments (package-arguments ruby-yard) + ((#:tests? _ #t) #t) + ((#:test-target _ "default") "default") + ((#:phases phases '%standard-phases) + `(modify-phases ,phases + (add-before 'check 'prepare-for-tests + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (substitute* "Rakefile" + ((".*[Ss]amus.*") "")) + ;; Delete the Gemfile to avoid errors relating to it. + (delete-file "Gemfile") + ;; $HOME needs to be set to somewhere writeable for tests to + ;; run. + (setenv "HOME" "/tmp")) + #t)))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec) + ("ruby-rack" ,ruby-rack) + ("ruby-redcloth" ,ruby-redcloth) + ("ruby-asciidoc" ,ruby-asciidoctor))))) + (define-public ruby-clap (package (name "ruby-clap") -- cgit v1.2.3 From 7eb8ff0b21d0654f39094824ccabd3685cabdd40 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 10 Jul 2020 23:48:58 -0400 Subject: gnu: ruby-yard: Update to 0.9.25. * gnu/packages/ruby.scm (ruby-yard): Update to 0.9.25. --- gnu/packages/ruby.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 7071fb3dab..142b79fe1f 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6988,7 +6988,7 @@ (define-public ruby-yajl-ruby (define-public ruby-yard (package (name "ruby-yard") - (version "0.9.20") + (version "0.9.25") (source (origin (method git-fetch) @@ -6999,7 +6999,7 @@ (define-public ruby-yard (file-name (git-file-name name version)) (sha256 (base32 - "1v48zz8hzazrg79jksj9siys21d2axvzijvkxw2j42zh86syi1wi")))) + "1x7y4s557hrnq439lih7nqg1y7ximardw75jx9i92x3yzpviqqwa")))) (build-system ruby-build-system) (arguments ;; Note: Tests are willfully disabled to alleviate dependency cycle -- cgit v1.2.3 From 7af929249da3687b30337b4e30a1596e6dc317dc Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 9 Jul 2020 14:08:07 -0400 Subject: gnu: ruby-sinatra: Update to 2.0.8.1. * gnu/packages/ruby.scm (ruby-sinatra): Update to 2.0.8.1. [phases]{fix-slow-doc-generation}: Add phase. --- gnu/packages/ruby.scm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 142b79fe1f..685ee0489a 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -9961,15 +9961,25 @@ (define-public ruby-htmlentities (define-public ruby-sinatra (package (name "ruby-sinatra") - (version "2.0.5") + (version "2.0.8.1") (source (origin (method url-fetch) (uri (rubygems-uri "sinatra" version)) (sha256 (base32 - "1gasgn5f15myv08k10i16p326pchxjsy37pgqfw0xm66kcc5d7ry")))) + "0riy3hwjab1mr73jcqx3brmbmwspnw3d193j06a5f0fy1w35z15q")))) (build-system ruby-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + ;; See: https://github.com/sinatra/sinatra/issues/1578. + (add-after 'extract-gemspec 'fix-slow-doc-generation + (lambda _ + (substitute* "sinatra.gemspec" + (("\"README.rdoc\"\\.freeze," all) + (string-append all " \"--exclude=.*\\.md\".freeze,"))) + #t))))) (propagated-inputs `(("ruby-mustermann" ,ruby-mustermann) ("ruby-rack" ,ruby-rack) -- cgit v1.2.3 From fa8e4dbf38d018006f0d8ab3eb8a56942609d1f9 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 9 Jul 2020 21:44:10 -0400 Subject: gnu: ruby-cucumber: Enable more tests. * gnu/packages/ruby.scm (ruby-cucumber)[test-target]: Use the default test-target, which includes the cucumber tests target. [phases]: Add the 'disable-rubocop and 'set-home phases. Delete Gemfile as part of the 'strip-version-requirements phase. --- gnu/packages/ruby.scm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 685ee0489a..18da48a948 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6688,14 +6688,26 @@ (define-public ruby-cucumber "0g9rqfslbzkkrq2kvl14fgknrhfbji3bjjpjxff5nc9wzd3hd549")))) (build-system ruby-build-system) (arguments - '(#:test-target "spec" + '(#:test-target "default" #:phases (modify-phases %standard-phases + (add-after 'unpack 'disable-rubocop + ;; Rubocop lint check fails with our more recent version. + (lambda _ + (substitute* "Rakefile" + (("spec cucumber rubocop") + "spec cucumber")) + #t)) (add-after 'extract-gemspec 'strip-version-requirements (lambda _ + (delete-file "Gemfile") ;do not use Bundler (substitute* "cucumber.gemspec" (("(.*add_.*dependency '[_A-Za-z0-9-]+').*" _ stripped) (string-append stripped "\n"))) + #t)) + (add-before 'check 'set-home + (lambda _ + (setenv "HOME" (getcwd)) #t))))) (propagated-inputs `(("ruby-builder" ,ruby-builder) -- cgit v1.2.3 From c84dd8d49c754ee723b8fe8fee04cd0464402303 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 9 Jul 2020 22:37:08 -0400 Subject: gnu: Add ruby-pandoc-ruby. * gnu/packages/ruby.scm (ruby-pandoc-ruby): New variable. --- gnu/packages/ruby.scm | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 18da48a948..f906590ba2 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -51,6 +51,7 @@ (define-module (gnu packages ruby) #:use-module (gnu packages rails) #:use-module (gnu packages readline) #:use-module (gnu packages autotools) + #:use-module (gnu packages haskell-xyz) #:use-module (gnu packages java) #:use-module (gnu packages libffi) #:use-module (gnu packages libidn) @@ -984,6 +985,69 @@ (define-public ruby-atoulme-saikuro ;; of the Expat license. (license license:bsd-3))) +(define-public ruby-pandoc-ruby + (package + (name "ruby-pandoc-ruby") + (version "2.1.4") + (source + (origin + (method git-fetch) ;the gem lacks many test files + (uri (git-reference + (url "https://github.com/xwmx/pandoc-ruby.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "03a11clhycyn0jhc7g9davpqd83sn60jqwjy1y145ag9sq6sp935")))) + (build-system ruby-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'disable-failing-tests + ;; TODO: Remove this phase after ghc-pandoc gets upgraded to 2.9.2+ + ;; (see: https://github.com/xwmx/pandoc-ruby/issues/39). + (lambda _ + (substitute* "test/test_conversions.rb" + (("next if from == to.*" all) + (string-append + all + " next if ['plain', 'beamer'].include? to\n"))) + #t)) + (add-after 'unpack 'patch-pandoc-path + (lambda* (#:key inputs #:allow-other-keys) + (let ((pandoc (string-append (assoc-ref inputs "ghc-pandoc") + "/bin/pandoc"))) + (substitute* "lib/pandoc-ruby.rb" + (("@@pandoc_path = 'pandoc'") + (format #f "@@pandoc_path = '~a'" pandoc))) + (substitute* "test/test_pandoc_ruby.rb" + (("('|\")pandoc" _ quote) + (string-append quote pandoc)) + (("\\^pandoc") + ".*pandoc")) + #t))) + (add-after 'extract-gemspec 'remove-Gemfile.lock + (lambda _ + (delete-file "Gemfile.lock") + (substitute* "pandoc-ruby.gemspec" + (("Gemfile\\.lock") "")) + #t))))) + (native-inputs + `(("ruby-mocha" ,ruby-mocha))) + (inputs + `(("ghc-pandoc" ,ghc-pandoc))) + (synopsis "Ruby wrapper for Pandoc") + (description "PandocRuby is a wrapper for Pandoc, a Haskell library with +command line tools for converting one markup format to another. Pandoc can +convert documents from a variety of formats including markdown, +reStructuredText, textile, HTML, DocBook, LaTeX, and MediaWiki markup to a +variety of other formats, including markdown, reStructuredText, HTML, LaTeX, +ConTeXt, PDF, RTF, DocBook XML, OpenDocument XML, ODT, GNU Texinfo, MediaWiki +markup, groff man pages, HTML slide shows, EPUB, Microsoft Word docx, and +more.") + (home-page "https://github.com/xwmx/pandoc-ruby") + (license license:expat))) + (define-public ruby-asciidoctor (package (name "ruby-asciidoctor") -- cgit v1.2.3 From c3f15f541a6b8a77fd9baa7a562979b328e5e802 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 10 Jul 2020 00:22:38 -0400 Subject: gnu: ruby-tilt: Update to 2.0.10. * gnu/packages/ruby.scm (ruby-tilt): Update to 2.0.10. --- gnu/packages/ruby.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index f906590ba2..6db1c1cb08 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4720,14 +4720,17 @@ (define-public ruby-spinach (define-public ruby-tilt (package (name "ruby-tilt") - (version "2.0.9") + (version "2.0.10") (source (origin - (method url-fetch) - (uri (rubygems-uri "tilt" version)) + (method git-fetch) ;the distributed gem lacks tests + (uri (git-reference + (url "https://github.com/rtomayko/tilt.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz")))) + "0adb7fg7925n2rd9a8kkqz3mgylw2skp9hkh9qc1rnph72mqsm6r")))) (build-system ruby-build-system) (arguments '(#:phases -- cgit v1.2.3 From cfa4a318ea2ee486c7383e3d1dd10d86bd1b3c21 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 9 Jul 2020 22:41:21 -0400 Subject: gnu: ruby-tilt: Add pandoc, sassc support. * gnu/packages/ruby.scm (ruby-guard)[native-inputs]: Move ruby-sassc from here... [propagated-inputs]: ...to here. Add ruby-pandoc-ruby. --- gnu/packages/ruby.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 6db1c1cb08..cda9df051d 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4752,13 +4752,15 @@ (define-public ruby-tilt ;; the Gemfile instead. (("group :secondary") "[].each")) #t))))) + (propagated-inputs + `(("ruby-pandoc-ruby" ,ruby-pandoc-ruby) + ("ruby-sassc" ,ruby-sassc))) (native-inputs `(("bundler" ,bundler) ("ruby-yard" ,ruby-yard) ("ruby-builder" ,ruby-builder) ("ruby-erubis" ,ruby-erubis) - ("ruby-markaby" ,ruby-markaby) - ("ruby-sassc" ,ruby-sassc))) + ("ruby-markaby" ,ruby-markaby))) (synopsis "Generic interface to multiple Ruby template engines") (description "Tilt is a thin interface over a number of different Ruby template -- cgit v1.2.3 From b1c79cab1fe626853afc49ecec13de83d2ead0af Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 9 Jul 2020 22:47:54 -0400 Subject: gnu: ruby-temple: Update to 0.8.2. * gnu/packages/ruby.scm (ruby-temple): Update to 0.8.2. --- gnu/packages/ruby.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index cda9df051d..ce5b71bd42 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2725,14 +2725,14 @@ (define-public ruby-locale (define-public ruby-temple (package (name "ruby-temple") - (version "0.8.1") + (version "0.8.2") (source (origin (method url-fetch) (uri (rubygems-uri "temple" version)) (sha256 (base32 - "158d7ygbwcifqnvrph219p7m78yjdjazhykv5darbkms7bxm5y09")))) + "060zzj7c2kicdfk6cpnn40n9yjnhfrr13d0rsbdhdij68chp2861")))) (build-system ruby-build-system) (native-inputs `(("ruby-tilt" ,ruby-tilt) -- cgit v1.2.3 From fef0564c6fc8b18af0ab0151c70ed8ecc9137da1 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 9 Jul 2020 23:40:21 -0400 Subject: gnu: Add ruby-slim. * gnu/packages/ruby.scm (ruby-slim): New variable. --- gnu/packages/ruby.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index ce5b71bd42..8377bbf77b 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1048,6 +1048,52 @@ (define-public ruby-pandoc-ruby (home-page "https://github.com/xwmx/pandoc-ruby") (license license:expat))) +(define-public ruby-slim + (package + (name "ruby-slim") + (version "4.1.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "slim" version)) + (sha256 + (base32 + "0gjx30g84c82qzg32bd7giscvb4206v7mvg56kc839w9wjagn36n")))) + (build-system ruby-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + ;; See: https://github.com/slim-template/slim/issues/857 and + ;; https://github.com/slim-template/slim/issues/858. + (add-after 'unpack 'skip-broken-tests + (lambda _ + (substitute* "test/core/test_embedded_engines.rb" + (("def test_render_with_markdown") + "def skipped_test_render_with_markdown")) + (substitute* "test/translator/test_translator.rb" + (("raise (\"Missing test for.*)" _ tail) + (string-append "print " tail))) + #t)) + ;; See: https://salsa.debian.org/ruby-team/ruby-slim/-/commit/ + ;; 824862bd99d1675bc699d8fc71ba965a785c1f44. + (add-after 'unpack 'prevent-bundler-interference + (lambda _ + (substitute* "Rakefile" + (("require 'bundler/setup'") "nil") + (("Bundler::GemHelper\\.install_tasks") "nil")) + #t))))) + (native-inputs + `(("ruby-rack-test" ,ruby-rack-test) + ("ruby-sinatra" ,ruby-sinatra))) + (propagated-inputs + `(("ruby-temple" ,ruby-temple) + ("ruby-tilt" ,ruby-tilt))) + (synopsis "Minimalist template language for Ruby") + (description "Slim is a template language for Ruby that aims to reduce the +syntax to the minimum while remaining clear.") + (home-page "http://slim-lang.com/") + (license license:expat))) + (define-public ruby-asciidoctor (package (name "ruby-asciidoctor") -- cgit v1.2.3 From 751bf33d478eabb17ae8c39be5b658378f8f852f Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 9 Jul 2020 13:17:57 -0400 Subject: gnu: ruby-asciidoctor: Re-indent. * gnu/packages/ruby.scm (ruby-asciidoctor): Re-indent. --- gnu/packages/ruby.scm | 62 +++++++++++++++++++++++++-------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 8377bbf77b..cde014b2f6 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1096,38 +1096,38 @@ (define-public ruby-slim (define-public ruby-asciidoctor (package - (name "ruby-asciidoctor") - (version "1.5.7.1") - (source - (origin - (method url-fetch) - (uri (rubygems-uri "asciidoctor" version)) - (sha256 + (name "ruby-asciidoctor") + (version "1.5.7.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "asciidoctor" version)) + (sha256 (base32 - "0v52bzc72cvg7zfgq27pa4mgyf29dx9m20fghrw1xmvwgd519n1w")))) - (build-system ruby-build-system) - (arguments - `(#:test-target "test:all" - #:phases - (modify-phases %standard-phases - (add-before 'check 'remove-circular-tests - (lambda _ - ;; Remove tests that require circular dependencies to load or pass. - (delete-file "test/invoker_test.rb") - (delete-file "test/converter_test.rb") - (delete-file "test/options_test.rb") - #t))))) - (native-inputs - `(("ruby-minitest" ,ruby-minitest) - ("ruby-nokogiri" ,ruby-nokogiri) - ("ruby-asciimath" ,ruby-asciimath) - ("ruby-coderay" ,ruby-coderay))) - (synopsis "Converter from AsciiDoc content to other formats") - (description - "Asciidoctor is a text processor and publishing toolchain for converting -AsciiDoc content to HTML5, DocBook 5 (or 4.5), PDF, and other formats.") - (home-page "https://asciidoctor.org") - (license license:expat))) + "0v52bzc72cvg7zfgq27pa4mgyf29dx9m20fghrw1xmvwgd519n1w")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "test:all" + #:phases + (modify-phases %standard-phases + (add-before 'check 'remove-circular-tests + (lambda _ + ;; Remove tests that require circular dependencies to load or pass. + (delete-file "test/invoker_test.rb") + (delete-file "test/converter_test.rb") + (delete-file "test/options_test.rb") + #t))))) + (native-inputs + `(("ruby-minitest" ,ruby-minitest) + ("ruby-nokogiri" ,ruby-nokogiri) + ("ruby-asciimath" ,ruby-asciimath) + ("ruby-coderay" ,ruby-coderay))) + (synopsis "Converter from AsciiDoc content to other formats") + (description "Asciidoctor is a text processor and publishing toolchain for +converting AsciiDoc content to HTML5, DocBook 5 (or 4.5), PDF, and other +formats.") + (home-page "https://asciidoctor.org") + (license license:expat))) (define-public ruby-ast (package -- cgit v1.2.3 From 5df1126c3adf557f3a5b386e391e7cb56b9c1d63 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 9 Jul 2020 13:27:56 -0400 Subject: gnu: ruby-asciidoctor: Update to 2.0.10. * gnu/packages/ruby.scm (ruby-asciidoctor): Update to 2.0.10. [origin]: Use git-fetch. [phases]: Remove 'remove-circular-tests. Add 'strip-version-requirements. [native-inputs]: Add ruby-erubis, ruby-cucumber, ruby-haml, ruby-rouge, ruby-rspec-expectations, ruby-simplecov, ruby-slim and ruby-tilt. --- gnu/packages/ruby.scm | 41 ++++++++++++++++++++++++++++++----------- 1 file changed, 30 insertions(+), 11 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index cde014b2f6..84b3b72913 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1097,31 +1097,50 @@ (define-public ruby-slim (define-public ruby-asciidoctor (package (name "ruby-asciidoctor") - (version "1.5.7.1") + (version "2.0.10") (source (origin - (method url-fetch) - (uri (rubygems-uri "asciidoctor" version)) + (method git-fetch) ;the gem release lacks a Rakefile + (uri (git-reference + (url "https://github.com/asciidoctor/asciidoctor.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "0v52bzc72cvg7zfgq27pa4mgyf29dx9m20fghrw1xmvwgd519n1w")))) + "0jaxpnsdnx3qyjw5p2lsx1swny12q1i2vxw2kgdp4vlsyjv95z95")))) (build-system ruby-build-system) (arguments `(#:test-target "test:all" #:phases (modify-phases %standard-phases - (add-before 'check 'remove-circular-tests + (replace 'replace-git-ls-files + (lambda _ + ;; TODO: Remove after the fix of using 'cut' to better mimic the + ;; git ls-files output is merged in ruby-build-system. + (substitute* "asciidoctor.gemspec" + (("`git ls-files -z`") + "`find . -type f -print0 |sort -z|cut -zc3-`")) + #t)) + (add-after 'extract-gemspec 'strip-version-requirements (lambda _ - ;; Remove tests that require circular dependencies to load or pass. - (delete-file "test/invoker_test.rb") - (delete-file "test/converter_test.rb") - (delete-file "test/options_test.rb") + (delete-file "Gemfile") + (substitute* "asciidoctor.gemspec" + (("(.*add_.*dependency '[_A-Za-z0-9-]+').*" _ stripped) + (string-append stripped "\n"))) #t))))) (native-inputs - `(("ruby-minitest" ,ruby-minitest) + `(("ruby-erubis" ,ruby-erubis) + ("ruby-minitest" ,ruby-minitest) ("ruby-nokogiri" ,ruby-nokogiri) ("ruby-asciimath" ,ruby-asciimath) - ("ruby-coderay" ,ruby-coderay))) + ("ruby-coderay" ,ruby-coderay) + ("ruby-cucumber" ,ruby-cucumber) + ("ruby-haml" ,ruby-haml) + ("ruby-rouge" ,ruby-rouge) + ("ruby-rspec-expectations" ,ruby-rspec-expectations) + ("ruby-simplecov" ,ruby-simplecov) + ("ruby-slim" ,ruby-slim) + ("ruby-tilt" ,ruby-tilt))) (synopsis "Converter from AsciiDoc content to other formats") (description "Asciidoctor is a text processor and publishing toolchain for converting AsciiDoc content to HTML5, DocBook 5 (or 4.5), PDF, and other -- cgit v1.2.3 From 908df675a84cfdf80901a1cb25bd83cf576a1a99 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 10 Jul 2020 23:49:32 -0400 Subject: gnu: Add ruby-spectroscope. * gnu/packages/ruby.scm (ruby-spectroscope): New variable. --- gnu/packages/ruby.scm | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 84b3b72913..dd651ddf19 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7187,6 +7187,49 @@ (define-public ruby-yard-with-tests ("ruby-redcloth" ,ruby-redcloth) ("ruby-asciidoc" ,ruby-asciidoctor))))) +(define-public ruby-spectroscope + (package + (name "ruby-spectroscope") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "spectroscope" version)) + (sha256 + (base32 + "0iiid9sm110qhx0i1zkds710cvsnmhd308wbqa7slkzbq2akrb3y")))) + (build-system ruby-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + (with-output-to-file ".test" + (lambda _ + (display + "\ +require 'ae/should' +require 'rspec' + +include RSpec + +Test.run :default do |run| + run.files << 'spec/*_spec.rb' +end"))) + (invoke "ruby" "-Ilib" "-rrubytest" ".test")))))) + (native-inputs + `(("ruby-ae" ,ruby-ae) + ("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-rubytest" ,ruby-rubytest))) + (synopsis "Behavior-Driven Development (BDD) framework built on RubyTest") + (description "Spectroscope is a Behavior-Driven Development (BDD) +framework built on RubyTest, designed to emulate RSpec in most respects. It +is assertion framework independent so any number of assertion systems can be +used, such as Assay or AE.") + (home-page "http://rubyworks.github.com/spectroscope/") + (license license:bsd-2))) + (define-public ruby-clap (package (name "ruby-clap") -- cgit v1.2.3 From 24ffd91bc257a4ebddd8359f4f32c4fb60fc90e1 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 10 Jul 2020 00:37:58 -0400 Subject: gnu: Add ruby-tomparse. * gnu/packages/ruby.scm (ruby-tomparse): New variable. --- gnu/packages/ruby.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index dd651ddf19..07e23a0113 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7230,6 +7230,29 @@ (define-public ruby-spectroscope (home-page "http://rubyworks.github.com/spectroscope/") (license license:bsd-2))) +(define-public ruby-tomparse + (package + (name "ruby-tomparse") + (version "0.4.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "tomparse" version)) + (sha256 + (base32 + "06xakk41f1kgj6j1ahkwn4r6cvidixvm4phhlrvmwb7c3pr8ygc8")))) + (build-system ruby-build-system) + ;; TODO: Tests require citron and rulebow, not yet packaged. + (arguments '(#:tests? #f)) + (synopsis "TomDoc parser for Ruby") + (description "TomParse is a TomDoc parser for Ruby. It takes a code +comment as input and parses it into a convenient object-oriented structure in +accordance with the TomDoc standard. See +@url{https://github.com/mojombo/tomdoc, TomDoc} for more information about the +TomDoc format.") + (home-page "http://rubyworks.github.com/tomparse/") + (license license:bsd-2))) + (define-public ruby-clap (package (name "ruby-clap") -- cgit v1.2.3 From 257dee505e0fe9722a019fda3687fe44c5aa4c39 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 10 Jul 2020 00:47:19 -0400 Subject: gnu: Add ruby-yard-tomdoc. * gnu/packages/ruby.scm (ruby-yard-tomdoc): New variable. --- gnu/packages/ruby.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 07e23a0113..e1c242a083 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7253,6 +7253,36 @@ (define-public ruby-tomparse (home-page "http://rubyworks.github.com/tomparse/") (license license:bsd-2))) +(define-public ruby-yard-tomdoc + (package + (name "ruby-yard-tomdoc") + (version "0.7.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "yard-tomdoc" version)) + (sha256 + (base32 + "1725gs8b8klpwhrvnf2wwp7dw3zxs9vz2la983l2d8c4r4fn1j2z")))) + (build-system ruby-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "rubytest" "-Ilib" "-Itest" "test/")))))) + (native-inputs + `(("ruby-rubytest-cli" ,ruby-rubytest-cli) + ("ruby-spectroscope" ,ruby-spectroscope) + ("ruby-ae" ,ruby-ae))) + (propagated-inputs + `(("ruby-tomparse" ,ruby-tomparse) + ("ruby-yard" ,ruby-yard))) + (synopsis "TomDoc syntax for YARD") + (description "This module adds support for the TomDoc documentation format +to YARD, a documentation generation tool for Ruby.") + (home-page "http://rubyworks.github.com/yard-tomdoc/") + (license license:expat))) + (define-public ruby-clap (package (name "ruby-clap") -- cgit v1.2.3 From 661ad8d7c50c6ab8cff83cf6613d982c93d06c5a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 10 Jul 2020 15:19:38 -0400 Subject: gnu: ruby-ruby-prof: Disable a flaky test. A test was found to fail non-deterministically. * gnu/packages/ruby.scm (ruby-ruby-prof)[phases]: Add the 'delete-flaky-test phase. --- gnu/packages/ruby.scm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index e1c242a083..1ade88a624 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6524,6 +6524,14 @@ (define-public ruby-ruby-prof ((".*require \"bundler/setup\".*" all) (string-append all " require 'bundler/gem_tasks'\n"))) #t)) + ;; The LineNumbersTest test fails non-deterministically (see: + ;; https://github.com/ruby-prof/ruby-prof/issues/276). + (add-after 'extract-gemspec 'delete-flaky-test + (lambda _ + (delete-file "test/line_number_test.rb") + (substitute* "ruby-prof.gemspec" + (("\"test/line_number_test\\.rb\"\\.freeze, ") "")) + #t)) (add-before 'check 'compile (lambda _ (invoke "rake" "compile")))))) -- cgit v1.2.3 From b0e7b6992f3f845e83cfbca4d700b51dba50b4d5 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sun, 12 Jul 2020 22:53:28 +0200 Subject: gnu: Remove ".git" from "https://github/…/….git". MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix swh) would sometimes return #f for these because the ".git" URLs are redirects to the non-".git" URLs. Consequently, 'guix lint -c archival' would keep saying "scheduled Software Heritage archival"; likewise, the fallback download code would fail. * gnu/packages/ada.scm, gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm, gnu/packages/android.scm, gnu/packages/animation.scm, gnu/packages/arcan.scm, gnu/packages/assembly.scm, gnu/packages/audio.scm, gnu/packages/authentication.scm, gnu/packages/avr.scm, gnu/packages/axoloti.scm, gnu/packages/backup.scm, gnu/packages/bash.scm, gnu/packages/benchmark.scm, gnu/packages/bioconductor.scm, gnu/packages/bioinformatics.scm, gnu/packages/bittorrent.scm, gnu/packages/boost.scm, gnu/packages/build-tools.scm, gnu/packages/c.scm, gnu/packages/calendar.scm, gnu/packages/cdrom.scm, gnu/packages/check.scm, gnu/packages/chemistry.scm, gnu/packages/chez.scm, gnu/packages/clojure.scm, gnu/packages/code.scm, gnu/packages/compression.scm, gnu/packages/compton.scm, gnu/packages/coq.scm, gnu/packages/cpp.scm, gnu/packages/cran.scm, gnu/packages/crypto.scm, gnu/packages/curl.scm, gnu/packages/databases.scm, gnu/packages/datastructures.scm, gnu/packages/debug.scm, gnu/packages/disk.scm, gnu/packages/distributed.scm, gnu/packages/django.scm, gnu/packages/dlang.scm, gnu/packages/dns.scm, gnu/packages/docker.scm, gnu/packages/education.scm, gnu/packages/efi.scm, gnu/packages/elixir.scm, gnu/packages/emacs-xyz.scm, gnu/packages/embedded.scm, gnu/packages/emulators.scm, gnu/packages/engineering.scm, gnu/packages/erlang.scm, gnu/packages/fabric-management.scm, gnu/packages/file-systems.scm, gnu/packages/finance.scm, gnu/packages/firmware.scm, gnu/packages/flashing-tools.scm, gnu/packages/fonts.scm, gnu/packages/fontutils.scm, gnu/packages/fpga.scm, gnu/packages/game-development.scm, gnu/packages/games.scm, gnu/packages/genealogy.scm, gnu/packages/genimage.scm, gnu/packages/geo.scm, gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/gnome-xyz.scm, gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm, gnu/packages/golang.scm, gnu/packages/gpodder.scm, gnu/packages/graph.scm, gnu/packages/graphics.scm, gnu/packages/graphviz.scm, gnu/packages/groff.scm, gnu/packages/groovy.scm, gnu/packages/gtk.scm, gnu/packages/guile-xyz.scm, gnu/packages/guile.scm, gnu/packages/hardware.scm, gnu/packages/haskell-apps.scm, gnu/packages/haskell-xyz.scm, gnu/packages/hexedit.scm, gnu/packages/i2p.scm, gnu/packages/ibus.scm, gnu/packages/image-processing.scm, gnu/packages/image-viewers.scm, gnu/packages/image.scm, gnu/packages/ipfs.scm, gnu/packages/java-graphics.scm, gnu/packages/java-maths.scm, gnu/packages/java.scm, gnu/packages/javascript.scm, gnu/packages/jrnl.scm, gnu/packages/julia.scm, gnu/packages/jupyter.scm, gnu/packages/kodi.scm, gnu/packages/language.scm, gnu/packages/lego.scm, gnu/packages/less.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm, gnu/packages/lirc.scm, gnu/packages/lisp-xyz.scm, gnu/packages/llvm.scm, gnu/packages/logging.scm, gnu/packages/lolcode.scm, gnu/packages/lua.scm, gnu/packages/lxde.scm, gnu/packages/lxqt.scm, gnu/packages/machine-learning.scm, gnu/packages/mail.scm, gnu/packages/markup.scm, gnu/packages/maths.scm, gnu/packages/maven.scm, gnu/packages/mes.scm, gnu/packages/messaging.scm, gnu/packages/monitoring.scm, gnu/packages/mpd.scm, gnu/packages/music.scm, gnu/packages/networking.scm, gnu/packages/node-xyz.scm, gnu/packages/ocaml.scm, gnu/packages/ocr.scm, gnu/packages/onc-rpc.scm, gnu/packages/opencl.scm, gnu/packages/opencog.scm, gnu/packages/pantheon.scm, gnu/packages/password-utils.scm, gnu/packages/patchutils.scm, gnu/packages/pdf.scm, gnu/packages/perl6.scm, gnu/packages/phabricator.scm, gnu/packages/popt.scm, gnu/packages/printers.scm, gnu/packages/prolog.scm, gnu/packages/protobuf.scm, gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm, gnu/packages/python-web.scm, gnu/packages/python-xyz.scm, gnu/packages/qt.scm, gnu/packages/radio.scm, gnu/packages/rails.scm, gnu/packages/rdf.scm, gnu/packages/rednotebook.scm, gnu/packages/rpc.scm, gnu/packages/rsync.scm, gnu/packages/ruby.scm, gnu/packages/rust.scm, gnu/packages/scheme.scm, gnu/packages/screen.scm, gnu/packages/security-token.scm, gnu/packages/selinux.scm, gnu/packages/serialization.scm, gnu/packages/shells.scm, gnu/packages/shellutils.scm, gnu/packages/simh.scm, gnu/packages/sml.scm, gnu/packages/ssh.scm, gnu/packages/statistics.scm, gnu/packages/stenography.scm, gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/synergy.scm, gnu/packages/telephony.scm, gnu/packages/terminals.scm, gnu/packages/tex.scm, gnu/packages/texinfo.scm, gnu/packages/text-editors.scm, gnu/packages/textutils.scm, gnu/packages/time.scm, gnu/packages/tmux.scm, gnu/packages/tor.scm, gnu/packages/toys.scm, gnu/packages/version-control.scm, gnu/packages/video.scm, gnu/packages/vim.scm, gnu/packages/virtualization.scm, gnu/packages/vlang.scm, gnu/packages/vnc.scm, gnu/packages/vpn.scm, gnu/packages/web-browsers.scm, gnu/packages/web.scm, gnu/packages/wireservice.scm, gnu/packages/wm.scm, gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xml.scm, gnu/packages/xorg.scm, tests/lint.scm: Remove trailing ".git" from 'git-reference' URL. --- gnu/packages/ada.scm | 4 +- gnu/packages/admin.scm | 40 +- gnu/packages/aidc.scm | 4 +- gnu/packages/algebra.scm | 16 +- gnu/packages/android.scm | 4 +- gnu/packages/animation.scm | 2 +- gnu/packages/arcan.scm | 6 +- gnu/packages/assembly.scm | 6 +- gnu/packages/audio.scm | 48 +-- gnu/packages/authentication.scm | 2 +- gnu/packages/avr.scm | 2 +- gnu/packages/axoloti.scm | 6 +- gnu/packages/backup.scm | 6 +- gnu/packages/bash.scm | 4 +- gnu/packages/benchmark.scm | 4 +- gnu/packages/bioconductor.scm | 6 +- gnu/packages/bioinformatics.scm | 232 +++++----- gnu/packages/bittorrent.scm | 8 +- gnu/packages/boost.scm | 4 +- gnu/packages/build-tools.scm | 2 +- gnu/packages/c.scm | 6 +- gnu/packages/calendar.scm | 2 +- gnu/packages/cdrom.scm | 4 +- gnu/packages/check.scm | 6 +- gnu/packages/chemistry.scm | 4 +- gnu/packages/chez.scm | 14 +- gnu/packages/clojure.scm | 10 +- gnu/packages/code.scm | 12 +- gnu/packages/compression.scm | 18 +- gnu/packages/compton.scm | 4 +- gnu/packages/coq.scm | 8 +- gnu/packages/cpp.scm | 14 +- gnu/packages/cran.scm | 6 +- gnu/packages/crypto.scm | 4 +- gnu/packages/curl.scm | 2 +- gnu/packages/databases.scm | 10 +- gnu/packages/datastructures.scm | 6 +- gnu/packages/debug.scm | 4 +- gnu/packages/disk.scm | 12 +- gnu/packages/distributed.scm | 2 +- gnu/packages/django.scm | 6 +- gnu/packages/dlang.scm | 18 +- gnu/packages/dns.scm | 4 +- gnu/packages/docker.scm | 12 +- gnu/packages/education.scm | 2 +- gnu/packages/efi.scm | 2 +- gnu/packages/elixir.scm | 2 +- gnu/packages/emacs-xyz.scm | 856 ++++++++++++++++++------------------- gnu/packages/embedded.scm | 20 +- gnu/packages/emulators.scm | 44 +- gnu/packages/engineering.scm | 24 +- gnu/packages/erlang.scm | 2 +- gnu/packages/fabric-management.scm | 2 +- gnu/packages/file-systems.scm | 6 +- gnu/packages/finance.scm | 20 +- gnu/packages/firmware.scm | 4 +- gnu/packages/flashing-tools.scm | 12 +- gnu/packages/fonts.scm | 20 +- gnu/packages/fontutils.scm | 4 +- gnu/packages/fpga.scm | 6 +- gnu/packages/game-development.scm | 18 +- gnu/packages/games.scm | 84 ++-- gnu/packages/genealogy.scm | 2 +- gnu/packages/genimage.scm | 2 +- gnu/packages/geo.scm | 12 +- gnu/packages/gimp.scm | 4 +- gnu/packages/gl.scm | 6 +- gnu/packages/gnome-xyz.scm | 16 +- gnu/packages/gnome.scm | 18 +- gnu/packages/gnuzilla.scm | 2 +- gnu/packages/golang.scm | 120 +++--- gnu/packages/gpodder.scm | 2 +- gnu/packages/graph.scm | 8 +- gnu/packages/graphics.scm | 12 +- gnu/packages/graphviz.scm | 2 +- gnu/packages/groff.scm | 2 +- gnu/packages/groovy.scm | 2 +- gnu/packages/gtk.scm | 4 +- gnu/packages/guile-xyz.scm | 12 +- gnu/packages/guile.scm | 2 +- gnu/packages/hardware.scm | 4 +- gnu/packages/haskell-apps.scm | 4 +- gnu/packages/haskell-xyz.scm | 2 +- gnu/packages/hexedit.scm | 2 +- gnu/packages/i2p.scm | 2 +- gnu/packages/ibus.scm | 50 +-- gnu/packages/image-processing.scm | 8 +- gnu/packages/image-viewers.scm | 8 +- gnu/packages/image.scm | 22 +- gnu/packages/ipfs.scm | 6 +- gnu/packages/java-graphics.scm | 2 +- gnu/packages/java-maths.scm | 2 +- gnu/packages/java.scm | 20 +- gnu/packages/javascript.scm | 4 +- gnu/packages/jrnl.scm | 2 +- gnu/packages/julia.scm | 4 +- gnu/packages/jupyter.scm | 2 +- gnu/packages/kodi.scm | 10 +- gnu/packages/language.scm | 2 +- gnu/packages/lego.scm | 2 +- gnu/packages/less.scm | 2 +- gnu/packages/libusb.scm | 6 +- gnu/packages/linux.scm | 40 +- gnu/packages/lirc.scm | 2 +- gnu/packages/lisp-xyz.scm | 246 +++++------ gnu/packages/llvm.scm | 2 +- gnu/packages/logging.scm | 2 +- gnu/packages/lolcode.scm | 2 +- gnu/packages/lua.scm | 10 +- gnu/packages/lxde.scm | 2 +- gnu/packages/lxqt.scm | 2 +- gnu/packages/machine-learning.scm | 24 +- gnu/packages/mail.scm | 14 +- gnu/packages/markup.scm | 6 +- gnu/packages/maths.scm | 28 +- gnu/packages/maven.scm | 2 +- gnu/packages/mes.scm | 2 +- gnu/packages/messaging.scm | 22 +- gnu/packages/monitoring.scm | 4 +- gnu/packages/mpd.scm | 2 +- gnu/packages/music.scm | 94 ++-- gnu/packages/networking.scm | 26 +- gnu/packages/node-xyz.scm | 2 +- gnu/packages/ocaml.scm | 72 ++-- gnu/packages/ocr.scm | 2 +- gnu/packages/onc-rpc.scm | 2 +- gnu/packages/opencl.scm | 10 +- gnu/packages/opencog.scm | 12 +- gnu/packages/pantheon.scm | 6 +- gnu/packages/password-utils.scm | 6 +- gnu/packages/patchutils.scm | 2 +- gnu/packages/pdf.scm | 10 +- gnu/packages/perl6.scm | 22 +- gnu/packages/phabricator.scm | 4 +- gnu/packages/popt.scm | 2 +- gnu/packages/printers.scm | 4 +- gnu/packages/prolog.scm | 2 +- gnu/packages/protobuf.scm | 4 +- gnu/packages/pulseaudio.scm | 6 +- gnu/packages/python-crypto.scm | 2 +- gnu/packages/python-web.scm | 4 +- gnu/packages/python-xyz.scm | 60 +-- gnu/packages/qt.scm | 2 +- gnu/packages/radio.scm | 12 +- gnu/packages/rails.scm | 4 +- gnu/packages/rdf.scm | 2 +- gnu/packages/rednotebook.scm | 2 +- gnu/packages/rpc.scm | 6 +- gnu/packages/rsync.scm | 2 +- gnu/packages/ruby.scm | 56 +-- gnu/packages/rust.scm | 2 +- gnu/packages/scheme.scm | 4 +- gnu/packages/screen.scm | 2 +- gnu/packages/security-token.scm | 4 +- gnu/packages/selinux.scm | 4 +- gnu/packages/serialization.scm | 10 +- gnu/packages/shells.scm | 6 +- gnu/packages/shellutils.scm | 12 +- gnu/packages/simh.scm | 2 +- gnu/packages/sml.scm | 2 +- gnu/packages/ssh.scm | 6 +- gnu/packages/statistics.scm | 4 +- gnu/packages/stenography.scm | 2 +- gnu/packages/sync.scm | 4 +- gnu/packages/syncthing.scm | 24 +- gnu/packages/synergy.scm | 2 +- gnu/packages/telephony.scm | 8 +- gnu/packages/terminals.scm | 22 +- gnu/packages/tex.scm | 2 +- gnu/packages/texinfo.scm | 2 +- gnu/packages/text-editors.scm | 8 +- gnu/packages/textutils.scm | 8 +- gnu/packages/time.scm | 2 +- gnu/packages/tmux.scm | 10 +- gnu/packages/tor.scm | 2 +- gnu/packages/toys.scm | 2 +- gnu/packages/version-control.scm | 18 +- gnu/packages/video.scm | 44 +- gnu/packages/vim.scm | 4 +- gnu/packages/virtualization.scm | 2 +- gnu/packages/vlang.scm | 4 +- gnu/packages/vnc.scm | 4 +- gnu/packages/vpn.scm | 6 +- gnu/packages/web-browsers.scm | 2 +- gnu/packages/web.scm | 36 +- gnu/packages/wireservice.scm | 10 +- gnu/packages/wm.scm | 32 +- gnu/packages/wxwidgets.scm | 2 +- gnu/packages/xdisorg.scm | 36 +- gnu/packages/xml.scm | 16 +- gnu/packages/xorg.scm | 4 +- tests/lint.scm | 2 +- 192 files changed, 1673 insertions(+), 1673 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ada.scm b/gnu/packages/ada.scm index a8c2bdc9a9..e58b0d7754 100644 --- a/gnu/packages/ada.scm +++ b/gnu/packages/ada.scm @@ -38,7 +38,7 @@ (define-public python2-langkit (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AdaCore/langkit.git") + (url "https://github.com/AdaCore/langkit") (commit commit))) (sha256 (base32 @@ -70,7 +70,7 @@ (define-public python2-libadalang (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AdaCore/libadalang.git") + (url "https://github.com/AdaCore/libadalang") (commit commit))) (sha256 (base32 diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 6d8d6650ee..5a867d6c62 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -147,7 +147,7 @@ (define-public ktsuss (method git-fetch) (uri (git-reference - (url "https://github.com/nomius/ktsuss.git") + (url "https://github.com/nomius/ktsuss") (commit version))) (sha256 (base32 "0q9931f9hp47v1n8scli4bdg2rkjpf5jf8v7jj2gdn83aia1r2hz")) @@ -220,7 +220,7 @@ (define-public progress (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Xfennec/progress.git") + (url "https://github.com/Xfennec/progress") (commit (string-append "v" version)))) (sha256 (base32 "1cnb4ixlhshn139mj5sr42k5m6gjjbyqvkn1324c47niwrgp7dqm")) @@ -1488,7 +1488,7 @@ (define-public opendoas (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Duncaen/OpenDoas.git") + (url "https://github.com/Duncaen/OpenDoas") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1916,7 +1916,7 @@ (define-public detox (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dharple/detox.git") + (url "https://github.com/dharple/detox") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2106,7 +2106,7 @@ (define-public fdupes (origin (method git-fetch) (uri (git-reference - (url "https://github.com/adrianlopezroche/fdupes.git") + (url "https://github.com/adrianlopezroche/fdupes") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2358,7 +2358,7 @@ (define-public cpulimit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/opsengine/cpulimit.git") + (url "https://github.com/opsengine/cpulimit") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2397,7 +2397,7 @@ (define-public autojump (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wting/autojump.git") + (url "https://github.com/wting/autojump") (commit (string-append "release-v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2443,7 +2443,7 @@ (define-public fasd (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clvv/fasd.git") + (url "https://github.com/clvv/fasd") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2675,7 +2675,7 @@ (define-public dstat (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dagwieers/dstat.git") + (url "https://github.com/dagwieers/dstat") (commit (string-append "v" version)))) (file-name (git-file-name "dstat" version)) (sha256 @@ -2727,7 +2727,7 @@ (define-public thefuck (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nvbn/thefuck.git") + (url "https://github.com/nvbn/thefuck") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2803,7 +2803,7 @@ (define-public cbatticon (origin (method git-fetch) (uri (git-reference - (url "https://github.com/valr/cbatticon.git") + (url "https://github.com/valr/cbatticon") (commit version))) (sha256 (base32 "0ivm2dzhsa9ir25ry418r2qg2llby9j7a6m3arbvq5c3kaj8m9jr")) @@ -2839,7 +2839,7 @@ (define-public interrobang (origin (method git-fetch) (uri (git-reference - (url "https://github.com/TrilbyWhite/interrobang.git") + (url "https://github.com/TrilbyWhite/interrobang") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2915,7 +2915,7 @@ (define (sunxi-tools-source version) (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linux-sunxi/sunxi-tools.git") + (url "https://github.com/linux-sunxi/sunxi-tools") (commit (string-append "v" version)))) (sha256 (base32 "04f3jqg8ww4jxsf9c6ddcdgy2xbhkyp0b3l5f1hvvbv94p81rjxd")) @@ -3020,7 +3020,7 @@ (define-public sedsed (origin (method git-fetch) (uri (git-reference - (url "https://github.com/aureliojargas/sedsed.git") + (url "https://github.com/aureliojargas/sedsed") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3423,7 +3423,7 @@ (define-public masscan (origin (method git-fetch) (uri (git-reference - (url "https://github.com/robertdavidgraham/masscan.git") + (url "https://github.com/robertdavidgraham/masscan") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3534,7 +3534,7 @@ (define-public spindle ;; We use git checkout to avoid github auto-generated tarballs (method git-fetch) (uri (git-reference - (url "https://github.com/hpc/Spindle.git") + (url "https://github.com/hpc/Spindle") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3745,7 +3745,7 @@ (define-public solaar (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pwr/Solaar.git") + (url "https://github.com/pwr/Solaar") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3958,7 +3958,7 @@ (define-public jc (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kellyjonbrazil/jc.git") + (url "https://github.com/kellyjonbrazil/jc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3982,7 +3982,7 @@ (define-public jtbl (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kellyjonbrazil/jtbl.git") + (url "https://github.com/kellyjonbrazil/jtbl") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4004,7 +4004,7 @@ (define-public hosts (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xwmx/hosts.git") + (url "https://github.com/xwmx/hosts") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/aidc.scm b/gnu/packages/aidc.scm index 5648f5a9ec..944ea048bf 100644 --- a/gnu/packages/aidc.scm +++ b/gnu/packages/aidc.scm @@ -91,7 +91,7 @@ (define-public libdmtx (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dmtx/libdmtx.git") + (url "https://github.com/dmtx/libdmtx") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -163,7 +163,7 @@ (define-public qrcodegen-cpp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nayuki/QR-Code-generator.git") + (url "https://github.com/nayuki/QR-Code-generator") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (patches (search-patches "qrcodegen-cpp-make-install.patch")) diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index c9ff1b8948..f8544e6b90 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -155,7 +155,7 @@ (define-public fplll (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fplll/fplll.git") + (url "https://github.com/fplll/fplll") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -205,7 +205,7 @@ (define-public python-fpylll ;; Github instead. (method git-fetch) (uri (git-reference - (url "https://github.com/fplll/fpylll.git") + (url "https://github.com/fplll/fpylll") (commit (string-append version "dev")))) (file-name (git-file-name name version)) (sha256 @@ -499,7 +499,7 @@ (define-public arb (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fredrik-johansson/arb.git") + (url "https://github.com/fredrik-johansson/arb") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -544,7 +544,7 @@ (define-public python-flint (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fredrik-johansson/python-flint.git") + (url "https://github.com/fredrik-johansson/python-flint") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -737,7 +737,7 @@ (define-public kiss-fft-for-extempore (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/extemporelang/kiss_fft.git") + (url "https://github.com/extemporelang/kiss_fft") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -843,7 +843,7 @@ (define-public java-la4j (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vkostyukov/la4j.git") + (url "https://github.com/vkostyukov/la4j") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -965,7 +965,7 @@ (define-public symengine (origin (method git-fetch) (uri (git-reference - (url "https://github.com/symengine/symengine.git") + (url "https://github.com/symengine/symengine") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1084,7 +1084,7 @@ (define-public xtensor (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/QuantStack/xtensor.git") + (url "https://github.com/QuantStack/xtensor") (commit version))) (sha256 (base32 diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm index 9ee7d28687..0fb4330d3e 100644 --- a/gnu/packages/android.scm +++ b/gnu/packages/android.scm @@ -65,7 +65,7 @@ (define-public android-make-stub (origin (method git-fetch) (uri (git-reference - (url "https://github.com/daym/android-make-stub.git") + (url "https://github.com/daym/android-make-stub") (commit (string-append "v" version)))) (file-name (string-append "android-make-stub-" version "-checkout")) @@ -99,7 +99,7 @@ (define-public android-googletest (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/googletest.git") + (url "https://github.com/google/googletest") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/animation.scm b/gnu/packages/animation.scm index 0357ac1190..e041592dbd 100644 --- a/gnu/packages/animation.scm +++ b/gnu/packages/animation.scm @@ -201,7 +201,7 @@ (define-public papagayo (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/LostMoho/Papagayo.git") + (url "https://github.com/LostMoho/Papagayo") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/arcan.scm b/gnu/packages/arcan.scm index e3f8b60aea..a84bf0d8dd 100644 --- a/gnu/packages/arcan.scm +++ b/gnu/packages/arcan.scm @@ -59,7 +59,7 @@ (define-public arcan (method git-fetch) (file-name (git-file-name name version)) (uri (git-reference - (url "https://github.com/letoram/arcan.git") + (url "https://github.com/letoram/arcan") (commit commit))) (sha256 (base32 "1pd0avlzc2rig1hd37zbhc7r2s6fjzdhshfg9l9cfzibl7caclyw")))) @@ -145,7 +145,7 @@ (define-public arcan (method git-fetch) (file-name "arcan-openal-0.5.4") (uri (git-reference - (url "https://github.com/letoram/openal.git") + (url "https://github.com/letoram/openal") (commit "1c7302c580964fee9ee9e1d89ff56d24f934bdef"))) (sha256 (base32 @@ -195,7 +195,7 @@ (define-public xarcan (method git-fetch) (file-name (git-file-name name version)) (uri (git-reference - (url "https://github.com/letoram/xarcan.git") + (url "https://github.com/letoram/xarcan") (commit commit))) (sha256 (base32 "0zng7cs6733mnf0p6g5wv02981f2sf567n56csax6cmzb8fpamym")))) diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm index 375747a990..50b64a7f65 100644 --- a/gnu/packages/assembly.scm +++ b/gnu/packages/assembly.scm @@ -263,7 +263,7 @@ (define-public rgbds (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rednex/rgbds.git") + (url "https://github.com/rednex/rgbds") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -310,7 +310,7 @@ (define-public wla-dx (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vhelin/wla-dx.git") + (url "https://github.com/vhelin/wla-dx") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -380,7 +380,7 @@ (define-public armips (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Kingcom/armips.git") + (url "https://github.com/Kingcom/armips") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index b1308b1dce..736b934d79 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -400,7 +400,7 @@ (define-public audacity (origin (method git-fetch) (uri (git-reference - (url "https://github.com/audacity/audacity.git") + (url "https://github.com/audacity/audacity") (commit (string-append "Audacity-" version)))) (file-name (git-file-name name version)) (sha256 @@ -718,7 +718,7 @@ (define-public caps-plugins-lv2 ;; Actually https://github.com/moddevices/caps-lv2.git, but it's ;; missing fixes for newer glibc, so using the origin of a pull ;; request regarding this issue: - (url "https://github.com/jujudusud/caps-lv2.git") + (url "https://github.com/jujudusud/caps-lv2") (commit "9c9478b7fbd8f9714f552ebe2a6866398b0babfb"))) (file-name (git-file-name name version)) (sha256 @@ -754,7 +754,7 @@ (define-public infamous-plugins (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ssj71/infamousPlugins.git") + (url "https://github.com/ssj71/infamousPlugins") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -793,7 +793,7 @@ (define-public swh-plugins (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/swh/ladspa.git") + (url "https://github.com/swh/ladspa") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -823,7 +823,7 @@ (define-public swh-plugins-lv2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/swh/lv2.git") + (url "https://github.com/swh/lv2") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -869,7 +869,7 @@ (define-public csound (origin (method git-fetch) (uri (git-reference - (url "https://github.com/csound/csound.git") + (url "https://github.com/csound/csound") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1259,7 +1259,7 @@ (define-public fluidsynth (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/FluidSynth/fluidsynth.git") + (url "https://github.com/FluidSynth/fluidsynth") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1339,7 +1339,7 @@ (define-public faust (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/grame-cncm/faust.git") + (url "https://github.com/grame-cncm/faust") (commit (string-append "v" (string-map (lambda (c) (if (char=? c #\.) #\- c)) @@ -2100,7 +2100,7 @@ (define-public lvtk (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lvtk/lvtk.git") + (url "https://github.com/lvtk/lvtk") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2302,7 +2302,7 @@ (define-public qjackrcd (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/orouits/qjackrcd.git") + (url "https://github.com/orouits/qjackrcd") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2337,7 +2337,7 @@ (define-public supercollider (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/supercollider/supercollider.git") + (url "https://github.com/supercollider/supercollider") (commit (string-append "Version-" version)) ;; for nova-simd, nova-tt, hidapi, TLSF, oscpack (recursive? #t))) @@ -3084,7 +3084,7 @@ (define-public rsound (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Themaister/RSound.git") + (url "https://github.com/Themaister/RSound") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3123,7 +3123,7 @@ (define-public xjackfreak (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/johnhldavis/xjackfreak.git") + (url "https://github.com/johnhldavis/xjackfreak") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3308,7 +3308,7 @@ (define-public cuetools (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/svend/cuetools.git") + (url "https://github.com/svend/cuetools") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3358,7 +3358,7 @@ (define-public dcadec (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/foo86/dcadec.git") + (url "https://github.com/foo86/dcadec") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3436,7 +3436,7 @@ (define-public filteraudio (origin (method git-fetch) (uri (git-reference - (url "https://github.com/irungentoo/filter_audio.git") + (url "https://github.com/irungentoo/filter_audio") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3545,7 +3545,7 @@ (define-public bluez-alsa ;; bootstrapped build system. (method git-fetch) (uri (git-reference - (url "https://github.com/Arkq/bluez-alsa.git") + (url "https://github.com/Arkq/bluez-alsa") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3654,7 +3654,7 @@ (define-public noise-repellent (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lucianodato/noise-repellent.git") + (url "https://github.com/lucianodato/noise-repellent") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3699,7 +3699,7 @@ (define-public cli-visualizer (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dpayne/cli-visualizer.git") + (url "https://github.com/dpayne/cli-visualizer") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3744,7 +3744,7 @@ (define-public cava (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/karlstav/cava.git") + (url "https://github.com/karlstav/cava") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3897,7 +3897,7 @@ (define-public faudio (origin (method git-fetch) (uri (git-reference - (url "https://github.com/FNA-XNA/FAudio.git") + (url "https://github.com/FNA-XNA/FAudio") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4040,7 +4040,7 @@ (define-public carla (method git-fetch) (uri (git-reference - (url "https://github.com/falkTX/Carla.git") + (url "https://github.com/falkTX/Carla") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4291,7 +4291,7 @@ (define-public codec2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/drowe67/codec2.git") + (url "https://github.com/drowe67/codec2") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4324,7 +4324,7 @@ (define-public ableton-link (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Ableton/link.git") + (url "https://github.com/Ableton/link") (commit (string-append "Link-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/authentication.scm b/gnu/packages/authentication.scm index d995ef7e85..b3ff912c8f 100644 --- a/gnu/packages/authentication.scm +++ b/gnu/packages/authentication.scm @@ -101,7 +101,7 @@ (define-public yubico-pam (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Yubico/yubico-pam.git") + (url "https://github.com/Yubico/yubico-pam") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/avr.scm b/gnu/packages/avr.scm index f8884bb6cb..76af6fdef1 100644 --- a/gnu/packages/avr.scm +++ b/gnu/packages/avr.scm @@ -176,7 +176,7 @@ (define-public microscheme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ryansuchocki/microscheme.git") + (url "https://github.com/ryansuchocki/microscheme") (commit (string-append "v" version)))) (sha256 (base32 "1r3ng4pw1s9yy1h5rafra1rq19d3vmb5pzbpcz1913wz22qdd976")) diff --git a/gnu/packages/axoloti.scm b/gnu/packages/axoloti.scm index 94d3d818c5..ba49a9d0f0 100644 --- a/gnu/packages/axoloti.scm +++ b/gnu/packages/axoloti.scm @@ -71,7 +71,7 @@ (define-public axoloti-runtime (origin (method git-fetch) (uri (git-reference - (url "https://github.com/axoloti/axoloti.git") + (url "https://github.com/axoloti/axoloti") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -367,7 +367,7 @@ (define-public axoloti-patcher-next (origin (method git-fetch) (uri (git-reference - (url "https://github.com/axoloti/axoloti.git") + (url "https://github.com/axoloti/axoloti") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -607,7 +607,7 @@ (define-public axoloti-patcher-next (origin (method git-fetch) (uri (git-reference - (url "https://github.com/JohannesTaelman/elfloader.git") + (url "https://github.com/JohannesTaelman/elfloader") (commit commit))) (file-name (git-file-name "elfloader" commit)) (sha256 diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index dacade5884..0d82a18aad 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -146,7 +146,7 @@ (define-public par2cmdline (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Parchive/par2cmdline.git") + (url "https://github.com/Parchive/par2cmdline") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -310,7 +310,7 @@ (define-public rdup (origin (method git-fetch) (uri (git-reference - (url "https://github.com/miekg/rdup.git") + (url "https://github.com/miekg/rdup") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -999,7 +999,7 @@ (define-public zbackup (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zbackup/zbackup.git") + (url "https://github.com/zbackup/zbackup") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm index 1bc636a10b..47ca625d9a 100644 --- a/gnu/packages/bash.scm +++ b/gnu/packages/bash.scm @@ -330,7 +330,7 @@ (define-public bash-tap (origin (method git-fetch) (uri (git-reference - (url "https://github.com/illusori/bash-tap.git") + (url "https://github.com/illusori/bash-tap") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -373,7 +373,7 @@ (define-public bats (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bats-core/bats-core.git") + (url "https://github.com/bats-core/bats-core") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm index 0ac1833487..9b06cc4d58 100644 --- a/gnu/packages/benchmark.scm +++ b/gnu/packages/benchmark.scm @@ -131,7 +131,7 @@ (define (intel-mpi-benchmarks mpi) (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/intel/mpi-benchmarks.git") + (url "https://github.com/intel/mpi-benchmarks") (commit (string-append "IMB-v" version)))) (file-name (git-file-name name version)) (sha256 @@ -217,7 +217,7 @@ (define-public benchmark (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/benchmark.git") + (url "https://github.com/google/benchmark") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 2fe8c3998d..3bf3c75e80 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -2934,7 +2934,7 @@ (define-public r-monocle3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cole-trapnell-lab/monocle3.git") + (url "https://github.com/cole-trapnell-lab/monocle3") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6509,7 +6509,7 @@ (define-public r-cicero-monocle3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cole-trapnell-lab/cicero-release.git") + (url "https://github.com/cole-trapnell-lab/cicero-release") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6530,7 +6530,7 @@ (define-public r-cistopic (origin (method git-fetch) (uri (git-reference - (url "https://github.com/aertslab/cisTopic.git") + (url "https://github.com/aertslab/cisTopic") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 7e97cdea7c..56837844b0 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -189,7 +189,7 @@ (define-public bamm (method git-fetch) ;; BamM is not available on pypi. (uri (git-reference - (url "https://github.com/Ecogenomics/BamM.git") + (url "https://github.com/Ecogenomics/BamM") (commit version) (recursive? #t))) (file-name (git-file-name name version)) @@ -283,7 +283,7 @@ (define-public bamtools (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pezmaster31/bamtools.git") + (url "https://github.com/pezmaster31/bamtools") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -361,7 +361,7 @@ (define-public bedops (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bedops/bedops.git") + (url "https://github.com/bedops/bedops") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -484,7 +484,7 @@ (define-public pbbam (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PacificBiosciences/pbbam.git") + (url "https://github.com/PacificBiosciences/pbbam") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -540,7 +540,7 @@ (define-public blasr-libcpp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PacificBiosciences/blasr_libcpp.git") + (url "https://github.com/PacificBiosciences/blasr_libcpp") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -602,7 +602,7 @@ (define-public blasr (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PacificBiosciences/blasr.git") + (url "https://github.com/PacificBiosciences/blasr") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -693,7 +693,7 @@ (define-public ribodiff (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ratschlab/RiboDiff.git") + (url "https://github.com/ratschlab/RiboDiff") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -737,7 +737,7 @@ (define-public bioawk (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lh3/bioawk.git") + (url "https://github.com/lh3/bioawk") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -900,7 +900,7 @@ (define-public python-biom-format ;; Use GitHub as source because PyPI distribution does not contain ;; test data: https://github.com/biocore/biom-format/issues/693 (uri (git-reference - (url "https://github.com/biocore/biom-format.git") + (url "https://github.com/biocore/biom-format") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1567,7 +1567,7 @@ (define-public bowtie (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/BenLangmead/bowtie2.git") + (url "https://github.com/BenLangmead/bowtie2") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1783,7 +1783,7 @@ (define-public bwa-pssm (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pkerpedjiev/bwa-pssm.git") + (url "https://github.com/pkerpedjiev/bwa-pssm") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1813,7 +1813,7 @@ (define-public bwa-meth (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brentp/bwa-meth.git") + (url "https://github.com/brentp/bwa-meth") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1887,7 +1887,7 @@ (define-public python-pysam (method git-fetch) ;; Test data is missing on PyPi. (uri (git-reference - (url "https://github.com/pysam-developers/pysam.git") + (url "https://github.com/pysam-developers/pysam") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2036,7 +2036,7 @@ (define-public tetoolkit (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mhammell-laboratory/tetoolkit.git") + (url "https://github.com/mhammell-laboratory/tetoolkit") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2153,7 +2153,7 @@ (define-public clipper (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/YeoLab/clipper.git") + (url "https://github.com/YeoLab/clipper") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2412,7 +2412,7 @@ (define-public python-deeptools (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/deeptools/deepTools.git") + (url "https://github.com/deeptools/deepTools") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2480,7 +2480,7 @@ (define-public libbigwig (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dpryan79/libBigWig.git") + (url "https://github.com/dpryan79/libBigWig") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2560,7 +2560,7 @@ (define-public python-dendropy (method git-fetch) ;; Source from GitHub so that tests are included. (uri (git-reference - (url "https://github.com/jeetsukumaran/DendroPy.git") + (url "https://github.com/jeetsukumaran/DendroPy") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2618,7 +2618,7 @@ (define-public delly (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dellytools/delly.git") + (url "https://github.com/dellytools/delly") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2665,7 +2665,7 @@ (define-public diamond (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bbuchfink/diamond.git") + (url "https://github.com/bbuchfink/diamond") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2700,7 +2700,7 @@ (define-public discrover (origin (method git-fetch) (uri (git-reference - (url "https://github.com/maaskola/discrover.git") + (url "https://github.com/maaskola/discrover") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2773,7 +2773,7 @@ (define-public eigensoft (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DReichLab/EIG.git") + (url "https://github.com/DReichLab/EIG") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3021,7 +3021,7 @@ (define-public express (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/adarob/eXpress.git") + (url "https://github.com/adarob/eXpress") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3072,7 +3072,7 @@ (define-public express-beta-diversity (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dparks1134/ExpressBetaDiversity.git") + (url "https://github.com/dparks1134/ExpressBetaDiversity") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3199,7 +3199,7 @@ (define-public flexbar (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/seqan/flexbar.git") + (url "https://github.com/seqan/flexbar") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3342,7 +3342,7 @@ (define-public fxtract (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ctSkennerton/fxtract.git") + (url "https://github.com/ctSkennerton/fxtract") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3378,7 +3378,7 @@ (define-public fxtract ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/ctSkennerton/util.git") + (url "https://github.com/ctSkennerton/util") (commit util-commit))) (file-name (string-append "ctstennerton-util-" util-commit "-checkout")) @@ -3405,7 +3405,7 @@ (define-public gemma (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xiangzhou/GEMMA.git") + (url "https://github.com/xiangzhou/GEMMA") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3465,7 +3465,7 @@ (define-public grit (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nboley/grit.git") + (url "https://github.com/nboley/grit") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3690,7 +3690,7 @@ (define-public java-htsjdk (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/samtools/htsjdk.git") + (url "https://github.com/samtools/htsjdk") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3740,7 +3740,7 @@ (define-public java-htsjdk-latest (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/samtools/htsjdk.git") + (url "https://github.com/samtools/htsjdk") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3784,7 +3784,7 @@ (define-public java-htsjdk-2.10.1 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/samtools/htsjdk.git") + (url "https://github.com/samtools/htsjdk") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3812,7 +3812,7 @@ (define-public java-picard (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/broadinstitute/picard.git") + (url "https://github.com/broadinstitute/picard") (commit version))) (file-name (string-append "java-picard-" version "-checkout")) (sha256 @@ -3891,7 +3891,7 @@ (define-public java-picard-2.10.3 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/broadinstitute/picard.git") + (url "https://github.com/broadinstitute/picard") (commit version))) (file-name (string-append "java-picard-" version "-checkout")) (sha256 @@ -3981,7 +3981,7 @@ (define-public java-picard-1.113 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/broadinstitute/picard.git") + (url "https://github.com/broadinstitute/picard") (commit version))) (file-name (string-append "java-picard-" version "-checkout")) (sha256 @@ -4178,7 +4178,7 @@ (define-public fastp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/OpenGene/fastp.git") + (url "https://github.com/OpenGene/fastp") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4258,7 +4258,7 @@ (define-public idr (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nboley/idr.git") + (url "https://github.com/nboley/idr") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4349,7 +4349,7 @@ (define-public khmer (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dib-lab/khmer.git") + (url "https://github.com/dib-lab/khmer") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4457,7 +4457,7 @@ (define-public macs ;; The PyPi tarball does not contain tests. (method git-fetch) (uri (git-reference - (url "https://github.com/taoliu/MACS.git") + (url "https://github.com/taoliu/MACS") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4580,7 +4580,7 @@ (define-public mash (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/marbl/mash.git") + (url "https://github.com/marbl/mash") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4719,7 +4719,7 @@ (define-public minced (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ctSkennerton/minced.git") + (url "https://github.com/ctSkennerton/minced") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4861,7 +4861,7 @@ (define-public newick-utils (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tjunier/newick_utils.git") + (url "https://github.com/tjunier/newick_utils") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -4999,7 +4999,7 @@ (define-public pbtranscript-tofu (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PacificBiosciences/cDNA_primer.git") + (url "https://github.com/PacificBiosciences/cDNA_primer") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -5220,7 +5220,7 @@ (define-public prodigal (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hyattpd/Prodigal.git") + (url "https://github.com/hyattpd/Prodigal") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5369,7 +5369,7 @@ (define-public raxml (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stamatak/standard-RAxML.git") + (url "https://github.com/stamatak/standard-RAxML") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5410,7 +5410,7 @@ (define-public rsem (origin (method git-fetch) (uri (git-reference - (url "https://github.com/deweylab/RSEM.git") + (url "https://github.com/deweylab/RSEM") (commit (string-append "v" version)))) (sha256 (base32 "1jlq11d1p8qp64w75yj8cnbbd1a93viq10pzsbwal7vdn8fg13j1")) @@ -5699,7 +5699,7 @@ (define-public mosaik ;; There are no release tarballs nor tags. (method git-fetch) (uri (git-reference - (url "https://github.com/wanpinglee/MOSAIK.git") + (url "https://github.com/wanpinglee/MOSAIK") (commit commit))) (file-name (string-append name "-" version)) (sha256 @@ -5745,7 +5745,7 @@ (define-public ngs-sdk (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ncbi/ngs.git") + (url "https://github.com/ncbi/ngs") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5811,7 +5811,7 @@ (define-public ncbi-vdb (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ncbi/ncbi-vdb.git") + (url "https://github.com/ncbi/ncbi-vdb") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5983,7 +5983,7 @@ (define-public plink-ng (origin (method git-fetch) (uri (git-reference - (url "https://github.com/chrchang/plink-ng.git") + (url "https://github.com/chrchang/plink-ng") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6022,7 +6022,7 @@ (define-public smithlab-cpp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/smithlabcode/smithlab_cpp.git") + (url "https://github.com/smithlabcode/smithlab_cpp") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -6171,7 +6171,7 @@ (define-public sra-tools (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ncbi/sra-tools.git") + (url "https://github.com/ncbi/sra-tools") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6381,7 +6381,7 @@ (define-public seqtk (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lh3/seqtk.git") + (url "https://github.com/lh3/seqtk") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6417,7 +6417,7 @@ (define-public snap-aligner (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/amplab/snap.git") + (url "https://github.com/amplab/snap") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6459,7 +6459,7 @@ (define-public sortmerna (origin (method git-fetch) (uri (git-reference - (url "https://github.com/biocore/sortmerna.git") + (url "https://github.com/biocore/sortmerna") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6505,7 +6505,7 @@ (define-public star (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alexdobin/STAR.git") + (url "https://github.com/alexdobin/STAR") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6733,7 +6733,7 @@ (define-public taxtastic ;; The Pypi version does not include tests. (method git-fetch) (uri (git-reference - (url "https://github.com/fhcrc/taxtastic.git") + (url "https://github.com/fhcrc/taxtastic") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6858,7 +6858,7 @@ (define-public r-scde (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hms-dbmi/scde.git") + (url "https://github.com/hms-dbmi/scde") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -7304,7 +7304,7 @@ (define-public vsearch (origin (method git-fetch) (uri (git-reference - (url "https://github.com/torognes/vsearch.git") + (url "https://github.com/torognes/vsearch") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -8809,7 +8809,7 @@ (define-public r-chipkernels (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ManuSetty/ChIPKernels.git") + (url "https://github.com/ManuSetty/ChIPKernels") (commit commit))) (file-name (string-append name "-" version)) (sha256 @@ -8843,7 +8843,7 @@ (define-public r-seqgl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ManuSetty/SeqGL.git") + (url "https://github.com/ManuSetty/SeqGL") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -9019,7 +9019,7 @@ (define-public bits (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/arq5x/bits.git") + (url "https://github.com/arq5x/bits") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -9065,7 +9065,7 @@ (define-public piranha (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/smithlabcode/piranha.git") + (url "https://github.com/smithlabcode/piranha") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9104,7 +9104,7 @@ (define-public piranha (origin (method git-fetch) (uri (git-reference - (url "https://github.com/smithlabcode/smithlab_cpp.git") + (url "https://github.com/smithlabcode/smithlab_cpp") (commit commit))) (file-name (string-append "smithlab_cpp-" commit "-checkout")) (sha256 @@ -9157,7 +9157,7 @@ (define-public filevercmp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ekg/filevercmp.git") + (url "https://github.com/ekg/filevercmp") (commit commit))) (file-name (git-file-name name commit)) (sha256 @@ -9234,7 +9234,7 @@ (define-public variant-tools (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vatlab/varianttools.git") + (url "https://github.com/vatlab/varianttools") ;; There is no tag corresponding to version 3.1.2 (commit "813ae4a90d25b69abc8a40f4f70441fe09015249"))) (file-name (git-file-name name version)) @@ -11134,7 +11134,7 @@ (define-public r-dropbead (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rajewsky-lab/dropbead.git") + (url "https://github.com/rajewsky-lab/dropbead") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11164,7 +11164,7 @@ (define htslib-for-sambamba (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lomereiter/htslib.git") + (url "https://github.com/lomereiter/htslib") (commit commit))) (file-name (string-append "htslib-" version "-checkout")) (sha256 @@ -11183,7 +11183,7 @@ (define-public sambamba (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lomereiter/sambamba.git") + (url "https://github.com/lomereiter/sambamba") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -11232,7 +11232,7 @@ (define-public sambamba (origin (method git-fetch) (uri (git-reference - (url "https://github.com/biod/BioD.git") + (url "https://github.com/biod/BioD") (commit commit))) (file-name (string-append "biod-" (string-take commit 9) @@ -11259,7 +11259,7 @@ (define-public ritornello (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/KlugerLab/Ritornello.git") + (url "https://github.com/KlugerLab/Ritornello") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11305,7 +11305,7 @@ (define-public trim-galore (origin (method git-fetch) (uri (git-reference - (url "https://github.com/FelixKrueger/TrimGalore.git") + (url "https://github.com/FelixKrueger/TrimGalore") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11520,7 +11520,7 @@ (define-public tadbit (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/3DGenomes/TADbit.git") + (url "https://github.com/3DGenomes/TADbit") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11582,7 +11582,7 @@ (define-public kentutils (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ENCODE-DCC/kentUtils.git") + (url "https://github.com/ENCODE-DCC/kentUtils") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11698,7 +11698,7 @@ (define-public f-seq (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/aboyle/F-seq.git") + (url "https://github.com/aboyle/F-seq") (commit commit))) (file-name (string-append name "-" version)) (sha256 @@ -11756,7 +11756,7 @@ (define-public bismark (origin (method git-fetch) (uri (git-reference - (url "https://github.com/FelixKrueger/Bismark.git") + (url "https://github.com/FelixKrueger/Bismark") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -11908,7 +11908,7 @@ (define-public kallisto (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pachterlab/kallisto.git") + (url "https://github.com/pachterlab/kallisto") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11957,7 +11957,7 @@ (define-public libgff (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Kingsford-Group/libgff.git") + (url "https://github.com/Kingsford-Group/libgff") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11980,7 +11980,7 @@ (define-public sailfish (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kingsfordgroup/sailfish.git") + (url "https://github.com/kingsfordgroup/sailfish") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -12095,7 +12095,7 @@ (define-public sailfish ("rapmap" ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/COMBINE-lab/RapMap.git") + (url "https://github.com/COMBINE-lab/RapMap") (commit (string-append "sf-v" version)))) (file-name (string-append "rapmap-sf-v" version "-checkout")) (sha256 @@ -12130,7 +12130,7 @@ (define libstadenio-for-salmon (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/COMBINE-lab/staden-io_lib.git") + (url "https://github.com/COMBINE-lab/staden-io_lib") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -12171,7 +12171,7 @@ (define-public salmon (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/COMBINE-lab/salmon.git") + (url "https://github.com/COMBINE-lab/salmon") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -12284,7 +12284,7 @@ (define-public salmon ("rapmap" ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/COMBINE-lab/RapMap.git") + (url "https://github.com/COMBINE-lab/RapMap") (commit (string-append "salmon-v" version)))) (file-name (string-append "rapmap-salmon-v" version "-checkout")) (sha256 @@ -12317,7 +12317,7 @@ (define-public python-loompy (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linnarsson-lab/loompy.git") + (url "https://github.com/linnarsson-lab/loompy") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12360,7 +12360,7 @@ (define-public java-forester (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cmzmasek/forester.git") + (url "https://github.com/cmzmasek/forester") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -13200,7 +13200,7 @@ (define-public genrich (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jsh58/Genrich.git") + (url "https://github.com/jsh58/Genrich") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -13235,7 +13235,7 @@ (define-public mantis (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/splatlab/mantis.git") + (url "https://github.com/splatlab/mantis") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -13302,7 +13302,7 @@ (define-public sjcount (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pervouchine/sjcount-full.git") + (url "https://github.com/pervouchine/sjcount-full") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -13447,7 +13447,7 @@ (define-public r-circus (origin (method git-fetch) (uri (git-reference - (url "https://github.com/BIMSBbioinfo/ciRcus.git") + (url "https://github.com/BIMSBbioinfo/ciRcus") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -13493,7 +13493,7 @@ (define-public gffread (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gpertea/gffread.git") + (url "https://github.com/gpertea/gffread") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -13527,7 +13527,7 @@ (define-public gffread (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gpertea/gclib.git") + (url "https://github.com/gpertea/gclib") (commit commit))) (file-name (git-file-name "gclib" version)) (sha256 @@ -13554,7 +13554,7 @@ (define-public find-circ (origin (method git-fetch) (uri (git-reference - (url "https://github.com/marvin-jens/find_circ.git") + (url "https://github.com/marvin-jens/find_circ") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -13834,7 +13834,7 @@ (define-public python-pypairix (origin (method git-fetch) (uri (git-reference - (url "https://github.com/4dn-dcic/pairix.git") + (url "https://github.com/4dn-dcic/pairix") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13933,7 +13933,7 @@ (define-public python-hicmatrix ;; Version 12 is not available on pypi. (method git-fetch) (uri (git-reference - (url "https://github.com/deeptools/HiCMatrix.git") + (url "https://github.com/deeptools/HiCMatrix") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13973,7 +13973,7 @@ (define-public python-hicexplorer ;; The latest version is not available on Pypi. (method git-fetch) (uri (git-reference - (url "https://github.com/deeptools/HiCExplorer.git") + (url "https://github.com/deeptools/HiCExplorer") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14122,7 +14122,7 @@ (define-public r-xbioc (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/renozao/xbioc.git") + (url "https://github.com/renozao/xbioc") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14155,7 +14155,7 @@ (define-public r-cssam (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/shenorrLab/csSAM.git") + (url "https://github.com/shenorrLab/csSAM") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14186,7 +14186,7 @@ (define-public r-bseqsc (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/shenorrLab/bseqsc.git") + (url "https://github.com/shenorrLab/bseqsc") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14234,7 +14234,7 @@ (define-public porechop (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rrwick/Porechop.git") + (url "https://github.com/rrwick/Porechop") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14265,7 +14265,7 @@ (define-public poretools (origin (method git-fetch) (uri (git-reference - (url "https://github.com/arq5x/poretools.git") + (url "https://github.com/arq5x/poretools") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14326,7 +14326,7 @@ (define-public jamm (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mahmoudibrahim/JAMM.git") + (url "https://github.com/mahmoudibrahim/JAMM") (commit (string-append "JAMMv" version)))) (file-name (git-file-name name version)) (sha256 @@ -14526,7 +14526,7 @@ (define-public filtlong (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rrwick/Filtlong.git") + (url "https://github.com/rrwick/Filtlong") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14587,7 +14587,7 @@ (define-public nanopolish (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jts/nanopolish.git") + (url "https://github.com/jts/nanopolish") (commit commit) (recursive? #t))) (file-name (git-file-name name version)) @@ -14661,7 +14661,7 @@ (define-public cnvkit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/etal/cnvkit.git") + (url "https://github.com/etal/cnvkit") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -14697,7 +14697,7 @@ (define-public python-pyfit-sne (origin (method git-fetch) (uri (git-reference - (url "https://github.com/KlugerLab/pyFIt-SNE.git") + (url "https://github.com/KlugerLab/pyFIt-SNE") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14960,7 +14960,7 @@ (define-public adapterremoval (origin (method git-fetch) (uri (git-reference - (url "https://github.com/MikkelSchubert/adapterremoval.git") + (url "https://github.com/MikkelSchubert/adapterremoval") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -14999,7 +14999,7 @@ (define-public pplacer (origin (method git-fetch) (uri (git-reference - (url "https://github.com/matsen/pplacer.git") + (url "https://github.com/matsen/pplacer") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -15221,7 +15221,7 @@ (define-public ataqv (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ParkerLab/ataqv.git") + (url "https://github.com/ParkerLab/ataqv") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15262,7 +15262,7 @@ (define-public r-psiplot (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kcha/psiplot.git") + (url "https://github.com/kcha/psiplot") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -15293,7 +15293,7 @@ (define-public python-ont-fast5-api (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nanoporetech/ont_fast5_api.git") + (url "https://github.com/nanoporetech/ont_fast5_api") (commit (string-append "release_" version)))) (file-name (git-file-name name version)) (sha256 @@ -15324,7 +15324,7 @@ (define-public tbsp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/phoenixding/tbsp.git") + (url "https://github.com/phoenixding/tbsp") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15636,7 +15636,7 @@ (define-public freebayes (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ekg/freebayes.git") + (url "https://github.com/ekg/freebayes") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15754,7 +15754,7 @@ (define-public samblaster (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/GregoryFaust/samblaster.git") + (url "https://github.com/GregoryFaust/samblaster") (commit (string-append "v." version)))) (file-name (git-file-name name version)) (sha256 @@ -15791,7 +15791,7 @@ (define-public r-velocyto (origin (method git-fetch) (uri (git-reference - (url "https://github.com/velocyto-team/velocyto.R.git") + (url "https://github.com/velocyto-team/velocyto.R") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15832,7 +15832,7 @@ (define-public methyldackel (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dpryan79/MethylDackel.git") + (url "https://github.com/dpryan79/MethylDackel") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15880,7 +15880,7 @@ (define-public python-gffutils (origin (method git-fetch) (uri (git-reference - (url "https://github.com/daler/gffutils.git") + (url "https://github.com/daler/gffutils") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 3314a6a823..edae9be461 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -192,7 +192,7 @@ (define-public tremc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tremc/tremc.git") + (url "https://github.com/tremc/tremc") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -223,7 +223,7 @@ (define-public transmission-remote-cli (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fagga/transmission-remote-cli.git") + (url "https://github.com/fagga/transmission-remote-cli") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -347,7 +347,7 @@ (define-public mktorrent (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Rudde/mktorrent.git") + (url "https://github.com/Rudde/mktorrent") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -421,7 +421,7 @@ (define-public qbittorrent (origin (method git-fetch) (uri (git-reference - (url "https://github.com/qbittorrent/qBittorrent.git") + (url "https://github.com/qbittorrent/qBittorrent") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm index 9e7c40cd99..6a08b0d6c7 100644 --- a/gnu/packages/boost.scm +++ b/gnu/packages/boost.scm @@ -288,7 +288,7 @@ (define-public boost-sync (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/boostorg/sync.git") + (url "https://github.com/boostorg/sync") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -317,7 +317,7 @@ (define-public boost-signals2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/boostorg/signals2.git") + (url "https://github.com/boostorg/signals2") (commit (string-append "boost-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm index bb00cf431e..7213c1bd0b 100644 --- a/gnu/packages/build-tools.scm +++ b/gnu/packages/build-tools.scm @@ -59,7 +59,7 @@ (define-public bam ;; do not use auto-generated tarballs (method git-fetch) (uri (git-reference - (url "https://github.com/matricks/bam.git") + (url "https://github.com/matricks/bam") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm index 8590b1384e..25bc78e6bf 100644 --- a/gnu/packages/c.scm +++ b/gnu/packages/c.scm @@ -351,7 +351,7 @@ (define-public libestr (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rsyslog/libestr.git") + (url "https://github.com/rsyslog/libestr") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -384,7 +384,7 @@ (define-public libfastjson (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rsyslog/libfastjson.git") + (url "https://github.com/rsyslog/libfastjson") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -411,7 +411,7 @@ (define-public liblogging (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rsyslog/liblogging.git") + (url "https://github.com/rsyslog/liblogging") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm index 71b4827578..726687d488 100644 --- a/gnu/packages/calendar.scm +++ b/gnu/packages/calendar.scm @@ -63,7 +63,7 @@ (define-public date (origin (method git-fetch) (uri (git-reference - (url "https://github.com/HowardHinnant/date.git") + (url "https://github.com/HowardHinnant/date") (commit "9a0ee2542848ab8625984fc8cdbfb9b5414c0082"))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/cdrom.scm b/gnu/packages/cdrom.scm index ac8dd26af0..6dee19fb29 100644 --- a/gnu/packages/cdrom.scm +++ b/gnu/packages/cdrom.scm @@ -253,7 +253,7 @@ (define-public cdrdao (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cdrdao/cdrdao.git") + (url "https://github.com/cdrdao/cdrdao") (commit (string-append "rel_" (string-replace-substring version "." "_"))))) (file-name (git-file-name name version)) @@ -555,7 +555,7 @@ (define-public libcue (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lipnitsk/libcue.git") + (url "https://github.com/lipnitsk/libcue") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 3b946d7482..8dd4b364ef 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -470,7 +470,7 @@ (define-public go-gopkg.in-check.v1 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/go-check/check.git") + (url "https://github.com/go-check/check") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -576,7 +576,7 @@ (define-public googletest (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/googletest.git") + (url "https://github.com/google/googletest") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 @@ -600,7 +600,7 @@ (define-public googletest-1.8 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/googletest.git") + (url "https://github.com/google/googletest") (commit (string-append "release-" version)))) (file-name (git-file-name "googletest" version)) (sha256 diff --git a/gnu/packages/chemistry.scm b/gnu/packages/chemistry.scm index 0540dfceb6..ddbf5ca098 100644 --- a/gnu/packages/chemistry.scm +++ b/gnu/packages/chemistry.scm @@ -57,7 +57,7 @@ (define-public avogadro (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cryos/avogadro.git") + (url "https://github.com/cryos/avogadro") (commit version))) (sha256 (base32 "0258py3lkba85qhs5ynancinyym61vlp0zaq9yrfs3hhnhpzv9n2")) @@ -313,7 +313,7 @@ (define-public tng (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gromacs/tng.git") + (url "https://github.com/gromacs/tng") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/chez.scm b/gnu/packages/chez.scm index d08363a8dc..b80421d3f7 100644 --- a/gnu/packages/chez.scm +++ b/gnu/packages/chez.scm @@ -46,7 +46,7 @@ (define nanopass (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nanopass/nanopass-framework-scheme.git") + (url "https://github.com/nanopass/nanopass-framework-scheme") (commit (string-append "v" version)))) (sha256 (base32 "0lrngdna6w7v9vlp1a873hgwrwsz2p0pgkccswa4smzvdyhgfsri")) (file-name (git-file-name "nanopass" version))))) @@ -56,7 +56,7 @@ (define stex (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dybvig/stex.git") + (url "https://github.com/dybvig/stex") (commit (string-append "v" version)))) (sha256 (base32 "1jiawhhqnsj42hzmlbq5xby3iarhf8vhiqs0kg1a0zg5jsn6cf8n")) (file-name (git-file-name "stex" version))))) @@ -69,7 +69,7 @@ (define-public chez-scheme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cisco/ChezScheme.git") + (url "https://github.com/cisco/ChezScheme") (commit (string-append "v" version)))) (sha256 (base32 "1hagrqdp649n2g0wq2a9gfnz7mjcjakkw7ziplbj3db412bb7kx5")) @@ -230,7 +230,7 @@ (define-public chez-srfi (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fedeinthemix/chez-srfi.git") + (url "https://github.com/fedeinthemix/chez-srfi") (commit (string-append "v" version)))) (sha256 (base32 "1vgn984mj2q4w6r2q66h7qklp2hrh85wwh4k9yisga5fi0ps7myf")) @@ -261,7 +261,7 @@ (define-public chez-web (origin (method git-fetch) (uri (git-reference - (url "https://github.com/arcfide/ChezWEB.git") + (url "https://github.com/arcfide/ChezWEB") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -326,7 +326,7 @@ (define-public chez-sockets (origin (method git-fetch) (uri (git-reference - (url "https://github.com/arcfide/chez-sockets.git") + (url "https://github.com/arcfide/chez-sockets") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -456,7 +456,7 @@ (define-public chez-irregex (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fedeinthemix/chez-irregex.git") + (url "https://github.com/fedeinthemix/chez-irregex") (commit (string-append "v" version)))) (sha256 (base32 "0jh6piylw545j81llay9wfivgpv6lcnwd81gm4w17lkasslir50q")) diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 9a1ceed66c..e66132ab40 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -151,7 +151,7 @@ (define-public clojure-algo-generic (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clojure/algo.generic.git") + (url "https://github.com/clojure/algo.generic") (commit (string-append "algo.generic-" version)))) (file-name (git-file-name name version)) (sha256 @@ -176,7 +176,7 @@ (define-public clojure-algo-monads (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clojure/algo.monads.git") + (url "https://github.com/clojure/algo.monads") (commit (string-append "algo.monads-" version)))) (file-name (git-file-name name version)) (sha256 @@ -205,7 +205,7 @@ (define-public clojure-core-match (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clojure/core.match.git") + (url "https://github.com/clojure/core.match") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -232,7 +232,7 @@ (define-public clojure-instaparse (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Engelberg/instaparse.git") + (url "https://github.com/Engelberg/instaparse") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -283,7 +283,7 @@ (define-public clojure-tools-macro (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clojure/tools.macro.git") + (url "https://github.com/clojure/tools.macro") (commit (string-append "tools.macro-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index 7a1dfa5c8c..6229a04deb 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -238,7 +238,7 @@ (define-public cloc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AlDanial/cloc.git") + (url "https://github.com/AlDanial/cloc") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -422,7 +422,7 @@ (define-public withershins (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cameronwhite/withershins.git") + (url "https://github.com/cameronwhite/withershins") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -482,7 +482,7 @@ (define-public lcov (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linux-test-project/lcov.git") + (url "https://github.com/linux-test-project/lcov") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -574,7 +574,7 @@ (define-public rtags (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Andersbakken/rtags.git") + (url "https://github.com/Andersbakken/rtags") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (patches (search-patches "rtags-separate-rct.patch")) @@ -626,7 +626,7 @@ (define-public colormake (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pagekite/Colormake.git") + (url "https://github.com/pagekite/Colormake") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -676,7 +676,7 @@ (define-public makefile2graph (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lindenb/makefile2graph.git") + (url "https://github.com/lindenb/makefile2graph") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 730d6a53d8..fd5483b015 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -679,7 +679,7 @@ (define-public sfarklib (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/raboof/sfArkLib.git") + (url "https://github.com/raboof/sfArkLib") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -715,7 +715,7 @@ (define-public sfarkxtc ;; commit at this time. (method git-fetch) (uri (git-reference - (url "https://github.com/raboof/sfarkxtc.git") + (url "https://github.com/raboof/sfarkxtc") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1004,7 +1004,7 @@ (define-public xdelta (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jmacd/xdelta.git") + (url "https://github.com/jmacd/xdelta") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1078,7 +1078,7 @@ (define-public snappy (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/snappy.git") + (url "https://github.com/google/snappy") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1816,7 +1816,7 @@ (define-public google-brotli (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/brotli.git") + (url "https://github.com/google/brotli") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1947,7 +1947,7 @@ (define-public quazip (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stachenov/quazip.git") + (url "https://github.com/stachenov/quazip") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2112,7 +2112,7 @@ (define-public xarchiver (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ib/xarchiver.git") + (url "https://github.com/ib/xarchiver") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2142,7 +2142,7 @@ (define-public tarsplitter (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AQUAOSOTech/tarsplitter.git") + (url "https://github.com/AQUAOSOTech/tarsplitter") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2176,7 +2176,7 @@ (define-public c-blosc (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Blosc/c-blosc.git") + (url "https://github.com/Blosc/c-blosc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/compton.scm b/gnu/packages/compton.scm index 9183348819..940fc83143 100644 --- a/gnu/packages/compton.scm +++ b/gnu/packages/compton.scm @@ -50,7 +50,7 @@ (define-public compton (origin (method git-fetch) (uri (git-reference - (url "https://github.com/chjj/compton.git") + (url "https://github.com/chjj/compton") (commit (string-append "v" upstream-version)))) (sha256 (base32 @@ -119,7 +119,7 @@ (define-public picom (origin (method git-fetch) (uri (git-reference - (url "https://github.com/yshui/picom.git") + (url "https://github.com/yshui/picom") (commit (string-append "v" version)))) (sha256 (base32 diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index 13243578b1..166e66c09e 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -51,7 +51,7 @@ (define-public coq (origin (method git-fetch) (uri (git-reference - (url "https://github.com/coq/coq.git") + (url "https://github.com/coq/coq") (commit (string-append "V" version)))) (file-name (git-file-name name version)) (sha256 @@ -329,7 +329,7 @@ (define-public coq-mathcomp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/math-comp/math-comp.git") + (url "https://github.com/math-comp/math-comp") (commit (string-append "mathcomp-" version)))) (file-name (git-file-name name version)) (sha256 @@ -423,7 +423,7 @@ (define-public coq-bignums (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/coq/bignums.git") + (url "https://github.com/coq/bignums") (commit (string-append "V" version)))) (file-name (git-file-name name version)) (sha256 @@ -552,7 +552,7 @@ (define-public coq-equations (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mattam82/Coq-Equations.git") + (url "https://github.com/mattam82/Coq-Equations") (commit (string-append "v" version "-8.10")))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 6b29dfc53f..cfbd11618e 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -122,7 +122,7 @@ (define-public dashel (origin (method git-fetch) (uri (git-reference - (url "https://github.com/aseba-community/dashel.git") + (url "https://github.com/aseba-community/dashel") (commit version))) (sha256 (base32 "0anks2l2i2qp0wlzqck1qgpq15a3l6dg8lw2h8s4nsj7f61lffwy")) @@ -147,7 +147,7 @@ (define-public xsimd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/QuantStack/xsimd.git") + (url "https://github.com/QuantStack/xsimd") (commit version))) (sha256 (base32 "1ny2qin1j4h35mljivh8z52kwdyjxf4yxlzb8j52ji91v2ccc88j")) @@ -268,7 +268,7 @@ (define-public xtl (method git-fetch) (uri (git-reference - (url "https://github.com/QuantStack/xtl.git") + (url "https://github.com/QuantStack/xtl") (commit version))) (sha256 (base32 @@ -404,7 +404,7 @@ (define-public sobjectizer (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Stiffstream/sobjectizer.git") + (url "https://github.com/Stiffstream/sobjectizer") (commit (string-append "v." version)))) (sha256 (base32 "0jfai7sqxnnjkms38krm7mssj5l79nb3pllkbyj4j581a7l5j6l5")) @@ -435,7 +435,7 @@ (define-public tweeny (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mobius3/tweeny.git") + (url "https://github.com/mobius3/tweeny") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -462,7 +462,7 @@ (define-public abseil-cpp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/abseil/abseil-cpp.git") + (url "https://github.com/abseil/abseil-cpp") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -506,7 +506,7 @@ (define-public pegtl (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/taocpp/PEGTL.git") + (url "https://github.com/taocpp/PEGTL") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 160e775adc..e565438bc4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -1063,7 +1063,7 @@ (define-public r-shiny (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rstudio/shiny.git") + (url "https://github.com/rstudio/shiny") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1437,7 +1437,7 @@ (define-public r-sankeyd3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fbreitwieser/sankeyD3.git") + (url "https://github.com/fbreitwieser/sankeyD3") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -16234,7 +16234,7 @@ (define-public r-liger (origin (method git-fetch) (uri (git-reference - (url "https://github.com/MacoskoLab/liger.git") + (url "https://github.com/MacoskoLab/liger") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 01018933cb..5532f7e9f8 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -513,7 +513,7 @@ (define-public libscrypt (origin (method git-fetch) (uri (git-reference - (url "https://github.com/technion/libscrypt.git") + (url "https://github.com/technion/libscrypt") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -907,7 +907,7 @@ (define-public asignify (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vstakhov/asignify.git") + (url "https://github.com/vstakhov/asignify") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index b0bdd6ded6..55b7e4393b 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -295,7 +295,7 @@ (define-public curlpp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jpbarrette/curlpp.git") + (url "https://github.com/jpbarrette/curlpp") (commit (string-append "v" version)))) (sha256 (base32 "1b0ylnnrhdax4kwjq64r1fk0i24n5ss6zfzf4hxwgslny01xiwrk")) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 9befa64a16..55fc4f8850 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -148,7 +148,7 @@ (define-public 4store (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/4store/4store.git") + (url "https://github.com/4store/4store") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1433,7 +1433,7 @@ (define-public sqlcrush (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/coffeeandscripts/sqlcrush.git") + (url "https://github.com/coffeeandscripts/sqlcrush") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2192,7 +2192,7 @@ (define-public lmdbxx (origin (method git-fetch) (uri (git-reference - (url "https://github.com/drycpp/lmdbxx.git") + (url "https://github.com/drycpp/lmdbxx") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2421,7 +2421,7 @@ (define-public mdbtools (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brianb/mdbtools.git") + (url "https://github.com/brianb/mdbtools") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3157,7 +3157,7 @@ (define-public python-pypika (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kayak/pypika.git") + (url "https://github.com/kayak/pypika") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm index 864f1840f3..b996a537cf 100644 --- a/gnu/packages/datastructures.scm +++ b/gnu/packages/datastructures.scm @@ -86,7 +86,7 @@ (define-public sparsehash (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sparsehash/sparsehash.git") + (url "https://github.com/sparsehash/sparsehash") (commit (string-append name "-" version)))) (file-name (git-file-name name version)) (sha256 @@ -161,7 +161,7 @@ (define-public uthash (origin (method git-fetch) (uri (git-reference - (url "https://github.com/troydhanson/uthash.git") + (url "https://github.com/troydhanson/uthash") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -263,7 +263,7 @@ (define-public libdivsufsort (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/y-256/libdivsufsort.git") + (url "https://github.com/y-256/libdivsufsort") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index cceebb00c8..f3e01de675 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -402,7 +402,7 @@ (define-public stress-make (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lanl/stress-make.git") + (url "https://github.com/lanl/stress-make") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -606,7 +606,7 @@ (define-public mspdebug (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dlbeer/mspdebug.git") + (url "https://github.com/dlbeer/mspdebug") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 7b94a95008..a5278d8c8c 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -96,7 +96,7 @@ (define-public udevil (method git-fetch) (uri (git-reference - (url "https://github.com/IgnorantGuru/udevil.git") + (url "https://github.com/IgnorantGuru/udevil") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -486,7 +486,7 @@ (define-public f3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AltraMayor/f3.git") + (url "https://github.com/AltraMayor/f3") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -524,7 +524,7 @@ (define-public python-parted (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dcantrell/pyparted.git") + (url "https://github.com/dcantrell/pyparted") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -565,7 +565,7 @@ (define-public duperemove (origin (method git-fetch) (uri (git-reference - (url "https://github.com/markfasheh/duperemove.git") + (url "https://github.com/markfasheh/duperemove") (commit (string-append "v" version)))) (sha256 (base32 "1scz76pvpljvrpfn176125xwaqwyy4pirlm11sc9spb2hyzknw2z")) @@ -695,7 +695,7 @@ (define-public ndctl (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pmem/ndctl.git") + (url "https://github.com/pmem/ndctl") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -918,7 +918,7 @@ (define-public lf (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gokcehan/lf.git") + (url "https://github.com/gokcehan/lf") (commit (string-append "r" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/distributed.scm b/gnu/packages/distributed.scm index d861484d22..0e5fe5ef69 100644 --- a/gnu/packages/distributed.scm +++ b/gnu/packages/distributed.scm @@ -48,7 +48,7 @@ (define-public boinc-client (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/boinc/boinc.git") + (url "https://github.com/boinc/boinc") (commit (string-append "client_release/" (version-major+minor version) "/" version)))) diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 0cf414ad41..f723fcae50 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -132,7 +132,7 @@ (define-public python-django-extensions (method git-fetch) ;; Fetch from the git repository, so that the tests can be run. (uri (git-reference - (url "https://github.com/django-extensions/django-extensions.git") + (url "https://github.com/django-extensions/django-extensions") (commit version))) (file-name (string-append name "-" version)) (sha256 @@ -375,7 +375,7 @@ (define-public python-django-debug-toolbar (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jazzband/django-debug-toolbar.git") + (url "https://github.com/jazzband/django-debug-toolbar") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -483,7 +483,7 @@ (define-public python-django-jinja (origin (method git-fetch) (uri (git-reference - (url "https://github.com/niwinz/django-jinja.git") + (url "https://github.com/niwinz/django-jinja") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/dlang.scm b/gnu/packages/dlang.scm index 5db012c680..6cdb2efd14 100644 --- a/gnu/packages/dlang.scm +++ b/gnu/packages/dlang.scm @@ -88,7 +88,7 @@ (define-public ldc-bootstrap (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ldc-developers/ldc.git") + (url "https://github.com/ldc-developers/ldc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -156,7 +156,7 @@ (define-public ldc-bootstrap ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/ldc-developers/phobos.git") + (url "https://github.com/ldc-developers/phobos") (commit (string-append "ldc-v" version)))) (file-name (git-file-name "phobos" version)) (sha256 @@ -166,7 +166,7 @@ (define-public ldc-bootstrap ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/ldc-developers/druntime.git") + (url "https://github.com/ldc-developers/druntime") (commit (string-append "ldc-v" version)))) (file-name (git-file-name "druntime" version)) (sha256 @@ -175,7 +175,7 @@ (define-public ldc-bootstrap ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/ldc-developers/dmd-testsuite.git") + (url "https://github.com/ldc-developers/dmd-testsuite") (commit (string-append "ldc-v" version)))) (file-name (git-file-name "dmd-testsuite" version)) (sha256 @@ -206,7 +206,7 @@ (define-public ldc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ldc-developers/ldc.git") + (url "https://github.com/ldc-developers/ldc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -273,7 +273,7 @@ (define-public ldc ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/ldc-developers/phobos.git") + (url "https://github.com/ldc-developers/phobos") (commit (string-append "ldc-v" older-version)))) (file-name (git-file-name "phobos" older-version)) (sha256 @@ -292,7 +292,7 @@ (define-public ldc ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/ldc-developers/druntime.git") + (url "https://github.com/ldc-developers/druntime") (commit (string-append "ldc-v" older-version)))) (file-name (git-file-name "druntime" older-version)) (sha256 @@ -301,7 +301,7 @@ (define-public ldc ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/ldc-developers/dmd-testsuite.git") + (url "https://github.com/ldc-developers/dmd-testsuite") (commit (string-append "ldc-v" older-version)))) (file-name (git-file-name "dmd-testsuite" older-version)) (sha256 @@ -315,7 +315,7 @@ (define-public dub (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dlang/dub.git") + (url "https://github.com/dlang/dub") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index cb850745ca..1d893e46d7 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -762,7 +762,7 @@ (define-public ddclient (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ddclient/ddclient.git") + (url "https://github.com/ddclient/ddclient") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -929,7 +929,7 @@ (define-public public-suffix-list (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/publicsuffix/list.git") + (url "https://github.com/publicsuffix/list") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm index 8c6a14e662..a5589535c0 100644 --- a/gnu/packages/docker.scm +++ b/gnu/packages/docker.scm @@ -179,7 +179,7 @@ (define-public containerd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/containerd/containerd.git") + (url "https://github.com/containerd/containerd") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -257,7 +257,7 @@ (define docker-libnetwork (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/docker/libnetwork.git") + (url "https://github.com/docker/libnetwork") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -311,7 +311,7 @@ (define-public docker (origin (method git-fetch) (uri (git-reference - (url "https://github.com/docker/engine.git") + (url "https://github.com/docker/engine") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -601,7 +601,7 @@ (define-public docker-cli (origin (method git-fetch) (uri (git-reference - (url "https://github.com/docker/cli.git") + (url "https://github.com/docker/cli") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -671,7 +671,7 @@ (define-public cqfd (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/savoirfairelinux/cqfd.git") + (url "https://github.com/savoirfairelinux/cqfd") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -709,7 +709,7 @@ (define-public tini (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/krallin/tini.git") + (url "https://github.com/krallin/tini") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 47d3145ad2..99e7b669b4 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -279,7 +279,7 @@ (define-public snap (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jmoenig/Snap.git") + (url "https://github.com/jmoenig/Snap") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/efi.scm b/gnu/packages/efi.scm index bc27a7a504..12cadd6036 100644 --- a/gnu/packages/efi.scm +++ b/gnu/packages/efi.scm @@ -187,7 +187,7 @@ (define-public efilinux (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mfleming/efilinux.git") + (url "https://github.com/mfleming/efilinux") (commit (string-append "efilinux-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/elixir.scm b/gnu/packages/elixir.scm index b034400db8..8a2b6b302c 100644 --- a/gnu/packages/elixir.scm +++ b/gnu/packages/elixir.scm @@ -38,7 +38,7 @@ (define-public elixir (origin (method git-fetch) (uri (git-reference - (url "https://github.com/elixir-lang/elixir.git") + (url "https://github.com/elixir-lang/elixir") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f90f2c4e4f..9e053da7df 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -239,7 +239,7 @@ (define-public emacs-ac-geiser (source (origin (uri (git-reference - (url "https://github.com/xiaohanyu/ac-geiser.git") + (url "https://github.com/xiaohanyu/ac-geiser") (commit commit))) (method git-fetch) (sha256 @@ -383,7 +383,7 @@ (define-public emacs-with-editor (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magit/with-editor.git") + (url "https://github.com/magit/with-editor") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -409,7 +409,7 @@ (define-public emacs-libgit (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magit/libegit2.git") + (url "https://github.com/magit/libegit2") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -487,7 +487,7 @@ (define-public emacs-magit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magit/magit.git") + (url "https://github.com/magit/magit") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -598,7 +598,7 @@ (define-public emacs-magit-popup (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magit/magit-popup.git") + (url "https://github.com/magit/magit-popup") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -632,7 +632,7 @@ (define-public emacs-magit-annex (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magit/magit-annex.git") + (url "https://github.com/magit/magit-annex") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -655,7 +655,7 @@ (define-public emacs-minions (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tarsius/minions.git") + (url "https://github.com/tarsius/minions") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -687,7 +687,7 @@ (define-public emacs-treepy (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/volrath/treepy.el.git") + (url "https://github.com/volrath/treepy.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -715,7 +715,7 @@ (define-public emacs-graphql #t)) (method git-fetch) (uri (git-reference - (url "https://github.com/vermiculus/graphql.el.git") + (url "https://github.com/vermiculus/graphql.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -778,7 +778,7 @@ (define-public emacs-typit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mrkkrp/typit.git") + (url "https://github.com/mrkkrp/typit") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -815,7 +815,7 @@ (define-public emacs-scribble-mode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-pe/scribble-mode.git") + (url "https://github.com/emacs-pe/scribble-mode") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1078,7 +1078,7 @@ (define-public emacs-flymake-shellcheck (origin (method git-fetch) (uri (git-reference - (url "https://github.com/federicotdn/flymake-shellcheck.git") + (url "https://github.com/federicotdn/flymake-shellcheck") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1099,7 +1099,7 @@ (define-public emacs-a (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/plexus/a.el.git") + (url "https://github.com/plexus/a.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1146,7 +1146,7 @@ (define-public emacs-anaphora (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rolandwalker/anaphora.git") + (url "https://github.com/rolandwalker/anaphora") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1252,7 +1252,7 @@ (define-public emacs-reformatter (origin (method git-fetch) (uri (git-reference - (url "https://github.com/purcell/reformatter.el.git") + (url "https://github.com/purcell/reformatter.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1299,7 +1299,7 @@ (define-public emacs-bug-hunter (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Malabarba/elisp-bug-hunter.git") + (url "https://github.com/Malabarba/elisp-bug-hunter") (commit commit))) (file-name (git-file-name name commit)) (sha256 @@ -1461,7 +1461,7 @@ (define-public emacs-eww-lnum (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/m00natic/eww-lnum.git") + (url "https://github.com/m00natic/eww-lnum") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1599,7 +1599,7 @@ (define-public emacs-ace-link (origin (method git-fetch) (uri (git-reference - (url "https://github.com/abo-abo/ace-link.git") + (url "https://github.com/abo-abo/ace-link") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1627,7 +1627,7 @@ (define-public emacs-auto-sudoedit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ncaq/auto-sudoedit.git") + (url "https://github.com/ncaq/auto-sudoedit") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1721,7 +1721,7 @@ (define-public emacs-ctrlf (origin (method git-fetch) (uri (git-reference - (url "https://github.com/raxod502/ctrlf.git") + (url "https://github.com/raxod502/ctrlf") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1805,7 +1805,7 @@ (define-public emacs-ag (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Wilfred/ag.el.git") + (url "https://github.com/Wilfred/ag.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1916,7 +1916,7 @@ (define-public emacs-autothemer (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sebastiansturm/autothemer.git") + (url "https://github.com/sebastiansturm/autothemer") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1976,7 +1976,7 @@ (define-public emacs-bm (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joodland/bm.git") + (url "https://github.com/joodland/bm") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1996,7 +1996,7 @@ (define-public emacs-calfw (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kiwanami/emacs-calfw.git") + (url "https://github.com/kiwanami/emacs-calfw") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2072,7 +2072,7 @@ (define-public emacs-direnv (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wbolster/emacs-direnv.git") + (url "https://github.com/wbolster/emacs-direnv") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2124,7 +2124,7 @@ (define-public emacs-form-feed (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wasamasa/form-feed.git") + (url "https://github.com/wasamasa/form-feed") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2203,7 +2203,7 @@ (define-public emacs-go-mode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dominikh/go-mode.el.git") + (url "https://github.com/dominikh/go-mode.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2231,7 +2231,7 @@ (define-public emacs-google-maps (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jd/google-maps.el.git") + (url "https://github.com/jd/google-maps.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2252,7 +2252,7 @@ (define-public emacs-graphviz-dot-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ppareit/graphviz-dot-mode.git") + (url "https://github.com/ppareit/graphviz-dot-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2343,7 +2343,7 @@ (define-public emacs-mmt (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mrkkrp/mmt.git") + (url "https://github.com/mrkkrp/mmt") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2362,7 +2362,7 @@ (define-public emacs-tablist (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/politza/tablist.git") + (url "https://github.com/politza/tablist") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2503,7 +2503,7 @@ (define-public emacs-dash (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magnars/dash.el.git") + (url "https://github.com/magnars/dash.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2618,7 +2618,7 @@ (define-public emacs-d-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git") + (url "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2644,7 +2644,7 @@ (define-public emacs-extempore-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/extemporelang/extempore-emacs-mode.git") + (url "https://github.com/extemporelang/extempore-emacs-mode") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2670,7 +2670,7 @@ (define-public emacs-kakoune (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jmorag/kakoune.el.git") + (url "https://github.com/jmorag/kakoune.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2715,7 +2715,7 @@ (define-public emacs-olivetti (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rnkn/olivetti.git") + (url "https://github.com/rnkn/olivetti") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2756,7 +2756,7 @@ (define-public emacs-s (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magnars/s.el.git") + (url "https://github.com/magnars/s.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2780,7 +2780,7 @@ (define-public emacs-symon (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zk-phi/symon.git") + (url "https://github.com/zk-phi/symon") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2829,7 +2829,7 @@ (define-public emacs-toml-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dryman/toml-mode.el.git") + (url "https://github.com/dryman/toml-mode.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2873,7 +2873,7 @@ (define-public emacs-f (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rejeep/f.el.git") + (url "https://github.com/rejeep/f.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2919,7 +2919,7 @@ (define-public emacs-fringe-helper (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nschum/fringe-helper.el.git") + (url "https://github.com/nschum/fringe-helper.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2945,7 +2945,7 @@ (define-public emacs-git-gutter (origin (method git-fetch) (uri (git-reference - (url "https://github.com/syohex/emacs-git-gutter.git") + (url "https://github.com/syohex/emacs-git-gutter") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2973,7 +2973,7 @@ (define-public emacs-git-gutter-fringe (origin (method git-fetch) (uri (git-reference - (url "https://github.com/syohex/git-gutter-fringe.git") + (url "https://github.com/syohex/git-gutter-fringe") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2997,7 +2997,7 @@ (define-public emacs-git-link (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sshaw/git-link.git") + (url "https://github.com/sshaw/git-link") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3022,7 +3022,7 @@ (define-public emacs-apheleia (origin (method git-fetch) (uri (git-reference - (url "https://github.com/raxod502/apheleia.git") + (url "https://github.com/raxod502/apheleia") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3099,7 +3099,7 @@ (define-public emacs-el-mock (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rejeep/el-mock.el.git") + (url "https://github.com/rejeep/el-mock.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3121,7 +3121,7 @@ (define-public emacs-espuds (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ecukes/espuds.git") + (url "https://github.com/ecukes/espuds") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3148,7 +3148,7 @@ (define-public emacs-spark (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alvinfrancis/spark.git") + (url "https://github.com/alvinfrancis/spark") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3170,7 +3170,7 @@ (define-public emacs-es-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dakrone/es-mode.git") + (url "https://github.com/dakrone/es-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3200,7 +3200,7 @@ (define-public emacs-expand-region (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magnars/expand-region.el.git") + (url "https://github.com/magnars/expand-region.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3222,7 +3222,7 @@ (define-public emacs-fill-column-indicator (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alpaker/Fill-Column-Indicator.git") + (url "https://github.com/alpaker/Fill-Column-Indicator") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3243,7 +3243,7 @@ (define-public emacs-grep-a-lot (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ZungBang/emacs-grep-a-lot.git") + (url "https://github.com/ZungBang/emacs-grep-a-lot") (commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad"))) (file-name (git-file-name name version)) (sha256 @@ -3262,7 +3262,7 @@ (define-public emacs-fd (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/yqrashawn/fd-dired.git") + (url "https://github.com/yqrashawn/fd-dired") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3283,7 +3283,7 @@ (define-public emacs-rg (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dajva/rg.el.git") + (url "https://github.com/dajva/rg.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3320,7 +3320,7 @@ (define-public emacs-inf-ruby (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nonsequitur/inf-ruby.git") + (url "https://github.com/nonsequitur/inf-ruby") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3365,7 +3365,7 @@ (define-public emacs-erc-status-sidebar (origin (method git-fetch) (uri (git-reference - (url "https://github.com/drewbarbs/erc-status-sidebar.git") + (url "https://github.com/drewbarbs/erc-status-sidebar") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3389,7 +3389,7 @@ (define-public emacs-shut-up (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cask/shut-up.git") + (url "https://github.com/cask/shut-up") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3409,7 +3409,7 @@ (define-public emacs-undercover (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sviridov/undercover.el.git") + (url "https://github.com/sviridov/undercover.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3433,7 +3433,7 @@ (define-public emacs-paren-face (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tarsius/paren-face.git") + (url "https://github.com/tarsius/paren-face") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3459,7 +3459,7 @@ (define-public emacs-page-break-lines (origin (method git-fetch) (uri (git-reference - (url "https://github.com/purcell/page-break-lines.git") + (url "https://github.com/purcell/page-break-lines") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3480,7 +3480,7 @@ (define-public emacs-simple-httpd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/skeeto/emacs-web-server.git") + (url "https://github.com/skeeto/emacs-web-server") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3501,7 +3501,7 @@ (define-public emacs-skewer-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/skeeto/skewer-mode.git") + (url "https://github.com/skeeto/skewer-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3528,7 +3528,7 @@ (define-public emacs-litable (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Fuco1/litable.git") + (url "https://github.com/Fuco1/litable") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3584,7 +3584,7 @@ (define-public emacs-stripe-buffer (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sabof/stripe-buffer.git") + (url "https://github.com/sabof/stripe-buffer") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3630,7 +3630,7 @@ (define-public emacs-org-rich-yank (origin (method git-fetch) (uri (git-reference - (url "https://github.com/unhammer/org-rich-yank.git") + (url "https://github.com/unhammer/org-rich-yank") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3654,7 +3654,7 @@ (define-public emacs-ob-erlang (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xfwduke/ob-erlang.git") + (url "https://github.com/xfwduke/ob-erlang") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3676,7 +3676,7 @@ (define-public emacs-ob-restclient (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alf/ob-restclient.el.git") + (url "https://github.com/alf/ob-restclient.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3699,7 +3699,7 @@ (define-public emacs-org-now (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alphapapa/org-now.git") + (url "https://github.com/alphapapa/org-now") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3724,7 +3724,7 @@ (define-public emacs-rich-minority (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Malabarba/rich-minority.git") + (url "https://github.com/Malabarba/rich-minority") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3746,7 +3746,7 @@ (define-public emacs-robe (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dgutov/robe.git") + (url "https://github.com/dgutov/robe") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3775,7 +3775,7 @@ (define-public emacs-robot-mode (method git-fetch) (uri (git-reference ;; A better maintained fork of robot-mode. - (url "https://github.com/jvalkeejarvi/robot-mode.git") + (url "https://github.com/jvalkeejarvi/robot-mode") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3800,7 +3800,7 @@ (define-public emacs-rspec (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pezra/rspec-mode.git") + (url "https://github.com/pezra/rspec-mode") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3829,7 +3829,7 @@ (define-public emacs-smart-mode-line (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Malabarba/smart-mode-line.git") + (url "https://github.com/Malabarba/smart-mode-line") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3855,7 +3855,7 @@ (define-public emacs-sr-speedbar (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsorphanage/sr-speedbar.git") + (url "https://github.com/emacsorphanage/sr-speedbar") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3878,7 +3878,7 @@ (define-public emacs-shell-switcher (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DamienCassou/shell-switcher.git") + (url "https://github.com/DamienCassou/shell-switcher") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4276,7 +4276,7 @@ (define-public emacs-ob-ipython (method git-fetch) (uri (git-reference (commit "7147455230841744fb5b95dcbe03320313a77124") - (url "https://github.com/gregsexton/ob-ipython.git"))) + (url "https://github.com/gregsexton/ob-ipython"))) (file-name (git-file-name name version)) (sha256 (base32 @@ -4415,7 +4415,7 @@ (define-public emacs-company (origin (method git-fetch) (uri (git-reference - (url "https://github.com/company-mode/company-mode.git") + (url "https://github.com/company-mode/company-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4454,7 +4454,7 @@ (define-public emacs-company-posframe (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tumashu/company-posframe.git") + (url "https://github.com/tumashu/company-posframe") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4531,7 +4531,7 @@ (define-public emacs-company-irony (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Sarcasm/company-irony.git") + (url "https://github.com/Sarcasm/company-irony") (commit (string-append "v" version)))) (sha256 (base32 "1qgyam2vyjw90kpxns5cd6bq3qiqjhzpwrlvmi18vyb69qcgqd8a")) @@ -4553,7 +4553,7 @@ (define-public emacs-flycheck-irony (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Sarcasm/flycheck-irony.git") + (url "https://github.com/Sarcasm/flycheck-irony") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4577,7 +4577,7 @@ (define-public emacs-irony-eldoc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ikirill/irony-eldoc.git") + (url "https://github.com/ikirill/irony-eldoc") (commit "0df5831eaae264a25422b061eb2792aadde8b3f2"))) (file-name (git-file-name name version)) (sha256 @@ -4603,7 +4603,7 @@ (define-public emacs-company-quickhelp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/expez/company-quickhelp.git") + (url "https://github.com/expez/company-quickhelp") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4628,7 +4628,7 @@ (define-public emacs-math-symbol-lists (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vspinu/math-symbol-lists.git") + (url "https://github.com/vspinu/math-symbol-lists") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4687,7 +4687,7 @@ (define-public emacs-company-math (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vspinu/company-math.git") + (url "https://github.com/vspinu/company-math") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4734,7 +4734,7 @@ (define-public emacs-icomplete-vertical (origin (method git-fetch) (uri (git-reference - (url "https://github.com/oantolin/icomplete-vertical.git") + (url "https://github.com/oantolin/icomplete-vertical") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4785,7 +4785,7 @@ (define-public emacs-nswbuff (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joostkremers/nswbuff.git") + (url "https://github.com/joostkremers/nswbuff") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4807,7 +4807,7 @@ (define-public emacs-phi-search (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zk-phi/phi-search.git") + (url "https://github.com/zk-phi/phi-search") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4829,7 +4829,7 @@ (define-public emacs-phi-search-mc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/knu/phi-search-mc.el.git") + (url "https://github.com/knu/phi-search-mc.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4854,7 +4854,7 @@ (define-public emacs-multiple-cursors (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magnars/multiple-cursors.el.git") + (url "https://github.com/magnars/multiple-cursors.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4877,7 +4877,7 @@ (define-public emacs-mc-extras (origin (method git-fetch) (uri (git-reference - (url "https://github.com/knu/mc-extras.el.git") + (url "https://github.com/knu/mc-extras.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4924,7 +4924,7 @@ (define-public emacs-company-lsp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tigersoldier/company-lsp.git") + (url "https://github.com/tigersoldier/company-lsp") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4983,7 +4983,7 @@ (define-public emacs-scheme-complete (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ashinn/scheme-complete.git") + (url "https://github.com/ashinn/scheme-complete") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5012,7 +5012,7 @@ (define-public emacs-scel (origin (method git-fetch) (uri (git-reference - (url "https://github.com/supercollider/scel.git") + (url "https://github.com/supercollider/scel") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5130,7 +5130,7 @@ (define-public emacs-constants (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fedeinthemix/emacs-constants.git") + (url "https://github.com/fedeinthemix/emacs-constants") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5150,7 +5150,7 @@ (define-public emacs-tagedit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magnars/tagedit.git") + (url "https://github.com/magnars/tagedit") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5174,7 +5174,7 @@ (define-public emacs-slime (origin (method git-fetch) (uri (git-reference - (url "https://github.com/slime/slime.git") + (url "https://github.com/slime/slime") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5239,7 +5239,7 @@ (define-public emacs-popup (origin (method git-fetch) (uri (git-reference - (url "https://github.com/auto-complete/popup-el.git") + (url "https://github.com/auto-complete/popup-el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5360,7 +5360,7 @@ (define-public emacs-god-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/chrisdone/god-mode.git") + (url "https://github.com/chrisdone/god-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5384,7 +5384,7 @@ (define-public emacs-jinja2-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/paradoxxxzero/jinja2-mode.git") + (url "https://github.com/paradoxxxzero/jinja2-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5483,7 +5483,7 @@ (define-public emacs-feature-mode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/michaelklishin/cucumber.el.git") + (url "https://github.com/michaelklishin/cucumber.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5507,7 +5507,7 @@ (define-public emacs-org-bullets (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sabof/org-bullets.git") + (url "https://github.com/sabof/org-bullets") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5528,7 +5528,7 @@ (define-public emacs-org-superstar (origin (method git-fetch) (uri (git-reference - (url "https://github.com/integral-dw/org-superstar-mode.git") + (url "https://github.com/integral-dw/org-superstar-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5572,7 +5572,7 @@ (define-public emacs-org-pomodoro (origin (method git-fetch) (uri (git-reference - (url "https://github.com/marcinkoziej/org-pomodoro.git") + (url "https://github.com/marcinkoziej/org-pomodoro") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5623,7 +5623,7 @@ (define-public emacs-org-sidebar (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alphapapa/org-sidebar.git") + (url "https://github.com/alphapapa/org-sidebar") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5653,7 +5653,7 @@ (define-public emacs-org-trello (origin (method git-fetch) (uri (git-reference - (url "https://github.com/org-trello/org-trello.git") + (url "https://github.com/org-trello/org-trello") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5684,7 +5684,7 @@ (define-public emacs-org-tanglesync (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mtekman/org-tanglesync.el.git") + (url "https://github.com/mtekman/org-tanglesync.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5732,7 +5732,7 @@ (define-public emacs-atom-one-dark-theme (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jonathanchu/atom-one-dark-theme.git") + (url "https://github.com/jonathanchu/atom-one-dark-theme") (commit commit))) (sha256 (base32 @@ -5752,7 +5752,7 @@ (define-public emacs-zenburn-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bbatsov/zenburn-emacs.git") + (url "https://github.com/bbatsov/zenburn-emacs") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5822,7 +5822,7 @@ (define-public emacs-poet-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kunalb/poet.git") + (url "https://github.com/kunalb/poet") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5866,7 +5866,7 @@ (define-public emacs-gruvbox-theme (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/greduan/emacs-theme-gruvbox.git") + (url "https://github.com/greduan/emacs-theme-gruvbox") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5895,7 +5895,7 @@ (define-public emacs-spacegray-theme (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bruce/emacs-spacegray-theme.git") + (url "https://github.com/bruce/emacs-spacegray-theme") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5974,7 +5974,7 @@ (define-public emacs-4clojure (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsorphanage/4clojure.git") + (url "https://github.com/emacsorphanage/4clojure") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5998,7 +5998,7 @@ (define-public emacs-base16-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/belak/base16-emacs.git") + (url "https://github.com/belak/base16-emacs") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6020,7 +6020,7 @@ (define-public emacs-solaire-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hlissner/emacs-solaire-mode.git") + (url "https://github.com/hlissner/emacs-solaire-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6043,7 +6043,7 @@ (define-public emacs-prescient (origin (method git-fetch) (uri (git-reference - (url "https://github.com/raxod502/prescient.el.git") + (url "https://github.com/raxod502/prescient.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6068,7 +6068,7 @@ (define-public emacs-selectrum (origin (method git-fetch) (uri (git-reference - (url "https://github.com/raxod502/selectrum.git") + (url "https://github.com/raxod502/selectrum") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6094,7 +6094,7 @@ (define-public emacs-smartparens (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Fuco1/smartparens.git") + (url "https://github.com/Fuco1/smartparens") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6131,7 +6131,7 @@ (define-public emacs-highlight-symbol (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nschum/highlight-symbol.el.git") + (url "https://github.com/nschum/highlight-symbol.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6165,7 +6165,7 @@ (define-public emacs-symbol-overlay (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wolray/symbol-overlay.git") + (url "https://github.com/wolray/symbol-overlay") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6209,7 +6209,7 @@ (define-public emacs-perspective (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nex3/perspective-el.git") + (url "https://github.com/nex3/perspective-el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6237,7 +6237,7 @@ (define-public emacs-persp-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Bad-ptr/persp-mode.el.git") + (url "https://github.com/Bad-ptr/persp-mode.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6389,7 +6389,7 @@ (define-public emacs-request (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tkf/emacs-request.git") + (url "https://github.com/tkf/emacs-request") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6576,7 +6576,7 @@ (define-public emacs-ivy-xref (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alexmurray/ivy-xref.git") + (url "https://github.com/alexmurray/ivy-xref") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6601,7 +6601,7 @@ (define-public emacs-ivy-pass (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ecraven/ivy-pass.git") + (url "https://github.com/ecraven/ivy-pass") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6628,7 +6628,7 @@ (define-public emacs-ivy-yasnippet (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mkcms/ivy-yasnippet.git") + (url "https://github.com/mkcms/ivy-yasnippet") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6660,7 +6660,7 @@ (define-public emacs-ivy-rich (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Yevgnen/ivy-rich.git") + (url "https://github.com/Yevgnen/ivy-rich") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6685,7 +6685,7 @@ (define-public emacs-avy (origin (method git-fetch) (uri (git-reference - (url "https://github.com/abo-abo/avy.git") + (url "https://github.com/abo-abo/avy") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6717,7 +6717,7 @@ (define-public emacs-ace-window (origin (method git-fetch) (uri (git-reference - (url "https://github.com/abo-abo/ace-window.git") + (url "https://github.com/abo-abo/ace-window") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6746,7 +6746,7 @@ (define-public emacs-iedit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/victorhge/iedit.git") + (url "https://github.com/victorhge/iedit") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6909,7 +6909,7 @@ (define-public emacs-clojure-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clojure-emacs/clojure-mode.git") + (url "https://github.com/clojure-emacs/clojure-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6938,7 +6938,7 @@ (define-public emacs-epl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cask/epl.git") + (url "https://github.com/cask/epl") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -7007,7 +7007,7 @@ (define-public emacs-pkg-info (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lunaryorn/pkg-info.el.git") + (url "https://github.com/lunaryorn/pkg-info.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -7047,7 +7047,7 @@ (define-public emacs-sparql-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ljos/sparql-mode.git") + (url "https://github.com/ljos/sparql-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -7143,7 +7143,7 @@ (define-public emacs-julia-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/JuliaEditorSupport/julia-emacs.git") + (url "https://github.com/JuliaEditorSupport/julia-emacs") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7190,7 +7190,7 @@ (define-public emacs-js2-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mooz/js2-mode.git") + (url "https://github.com/mooz/js2-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -7340,7 +7340,7 @@ (define-public emacs-markdown-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jrblevin/markdown-mode.git") + (url "https://github.com/jrblevin/markdown-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -7363,7 +7363,7 @@ (define-public emacs-evil-markdown (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Somelauw/evil-markdown.git") + (url "https://github.com/Somelauw/evil-markdown") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7435,7 +7435,7 @@ (define-public emacs-skeletor (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/chrisbarrett/skeletor.el.git") + (url "https://github.com/chrisbarrett/skeletor.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7487,7 +7487,7 @@ (define-public emacs-elfeed (origin (method git-fetch) (uri (git-reference - (url "https://github.com/skeeto/elfeed.git") + (url "https://github.com/skeeto/elfeed") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -7512,7 +7512,7 @@ (define-public emacs-elfeed-org (origin (method git-fetch) (uri (git-reference - (url "https://github.com/remyhonig/elfeed-org.git") + (url "https://github.com/remyhonig/elfeed-org") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7552,7 +7552,7 @@ (define-public emacs-el-x (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sigma/el-x.git") + (url "https://github.com/sigma/el-x") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -7585,7 +7585,7 @@ (define-public emacs-mocker (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sigma/mocker.el.git") + (url "https://github.com/sigma/mocker.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -7613,7 +7613,7 @@ (define-public emacs-find-file-in-project (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/technomancy/find-file-in-project.git") + (url "https://github.com/technomancy/find-file-in-project") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -7640,7 +7640,7 @@ (define-public emacs-pyvenv (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jorgenschaefer/pyvenv.git") + (url "https://github.com/jorgenschaefer/pyvenv") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -7675,7 +7675,7 @@ (define-public emacs-highlight-indent-guides (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DarthFennec/highlight-indent-guides.git") + (url "https://github.com/DarthFennec/highlight-indent-guides") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7704,7 +7704,7 @@ (define-public emacs-highlight-indentation (origin (method git-fetch) (uri (git-reference - (url "https://github.com/antonj/Highlight-Indentation-for-Emacs.git") + (url "https://github.com/antonj/Highlight-Indentation-for-Emacs") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7731,7 +7731,7 @@ (define-public emacs-elpy (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jorgenschaefer/elpy.git") + (url "https://github.com/jorgenschaefer/elpy") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -7818,7 +7818,7 @@ (define-public emacs-rainbow-delimiters (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Fanael/rainbow-delimiters.git") + (url "https://github.com/Fanael/rainbow-delimiters") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -7893,7 +7893,7 @@ (define-public emacs-ryo-modal (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Kungsgeten/ryo-modal.git") + (url "https://github.com/Kungsgeten/ryo-modal") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7937,7 +7937,7 @@ (define-public emacs-writeroom (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joostkremers/writeroom-mode.git") + (url "https://github.com/joostkremers/writeroom-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -8008,7 +8008,7 @@ (define-public emacs-yaml-mode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/yoshiki/yaml-mode.git") + (url "https://github.com/yoshiki/yaml-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -8081,7 +8081,7 @@ (define-public emacs-web-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fxbois/web-mode.git") + (url "https://github.com/fxbois/web-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -8127,7 +8127,7 @@ (define-public emacs-helm (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-helm/helm.git") + (url "https://github.com/emacs-helm/helm") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -8158,7 +8158,7 @@ (define-public emacs-helm-org (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-helm/helm-org.git") + (url "https://github.com/emacs-helm/helm-org") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8181,7 +8181,7 @@ (define-public emacs-helm-swoop (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsorphanage/helm-swoop.git") + (url "https://github.com/emacsorphanage/helm-swoop") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -8204,7 +8204,7 @@ (define-public emacs-helm-ag (origin (method git-fetch) (uri (git-reference - (url "https://github.com/syohex/emacs-helm-ag.git") + (url "https://github.com/syohex/emacs-helm-ag") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -8232,7 +8232,7 @@ (define-public emacs-helm-projectile (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bbatsov/helm-projectile.git") + (url "https://github.com/bbatsov/helm-projectile") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8257,7 +8257,7 @@ (define-public emacs-taskrunner (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-taskrunner/emacs-taskrunner.git") + (url "https://github.com/emacs-taskrunner/emacs-taskrunner") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8283,7 +8283,7 @@ (define-public emacs-ivy-taskrunner (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-taskrunner/ivy-taskrunner.git") + (url "https://github.com/emacs-taskrunner/ivy-taskrunner") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8310,7 +8310,7 @@ (define-public emacs-helm-taskrunner (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-taskrunner/helm-taskrunner.git") + (url "https://github.com/emacs-taskrunner/helm-taskrunner") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8337,7 +8337,7 @@ (define-public emacs-helm-make (origin (method git-fetch) (uri (git-reference - (url "https://github.com/abo-abo/helm-make.git") + (url "https://github.com/abo-abo/helm-make") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8362,7 +8362,7 @@ (define-public emacs-cider (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clojure-emacs/cider.git") + (url "https://github.com/clojure-emacs/cider") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -8407,7 +8407,7 @@ (define-public emacs-sly (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joaotavora/sly.git") + (url "https://github.com/joaotavora/sly") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8849,7 +8849,7 @@ (define-public emacs-evil-args (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wcsmith/evil-args.git") + (url "https://github.com/wcsmith/evil-args") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9142,7 +9142,7 @@ (define-public emacs-monky (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ananthakumaran/monky.git") + (url "https://github.com/ananthakumaran/monky") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -9169,7 +9169,7 @@ (define-public emacs-monroe (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sanel/monroe.git") + (url "https://github.com/sanel/monroe") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -9332,7 +9332,7 @@ (define-public emacs-flx (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lewang/flx.git") + (url "https://github.com/lewang/flx") (commit (string-append "v" version)))) (sha256 (base32 @@ -9453,7 +9453,7 @@ (define-public emacs-auto-complete (origin (method git-fetch) (uri (git-reference - (url "https://github.com/auto-complete/auto-complete.git") + (url "https://github.com/auto-complete/auto-complete") (commit (string-append "v" version)))) (sha256 (base32 @@ -9480,7 +9480,7 @@ (define-public emacs-nginx-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ajc/nginx-mode.git") + (url "https://github.com/ajc/nginx-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -9521,7 +9521,7 @@ (define-public emacs-cl-print (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsmirror/cl-print.git") + (url "https://github.com/emacsmirror/cl-print") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9544,7 +9544,7 @@ (define-public emacs-el-search (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsmirror/el-search.git") + (url "https://github.com/emacsmirror/el-search") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9567,7 +9567,7 @@ (define-public emacs-ht (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Wilfred/ht.el.git") + (url "https://github.com/Wilfred/ht.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -9594,7 +9594,7 @@ (define-public emacs-log4e (origin (method git-fetch) (uri (git-reference - (url "https://github.com/aki2o/log4e.git") + (url "https://github.com/aki2o/log4e") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -9624,7 +9624,7 @@ (define-public emacs-gntp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tekai/gntp.el.git") + (url "https://github.com/tekai/gntp.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -9647,7 +9647,7 @@ (define-public emacs-alert (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jwiegley/alert.git") + (url "https://github.com/jwiegley/alert") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -9694,7 +9694,7 @@ (define-public emacs-mu4e-alert (origin (method git-fetch) (uri (git-reference - (url "https://github.com/iqbalansari/mu4e-alert.git") + (url "https://github.com/iqbalansari/mu4e-alert") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -9796,7 +9796,7 @@ (define-public emacs-yasnippet (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joaotavora/yasnippet.git") + (url "https://github.com/joaotavora/yasnippet") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -10029,7 +10029,7 @@ (define-public emacs-memoize (origin (method git-fetch) (uri (git-reference - (url "https://github.com/skeeto/emacs-memoize.git") + (url "https://github.com/skeeto/emacs-memoize") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -10054,7 +10054,7 @@ (define-public emacs-linum-relative (origin (method git-fetch) (uri (git-reference - (url "https://github.com/coldnew/linum-relative.git") + (url "https://github.com/coldnew/linum-relative") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -10074,7 +10074,7 @@ (define-public emacs-idle-highlight (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nonsequitur/idle-highlight-mode.git") + (url "https://github.com/nonsequitur/idle-highlight-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -10096,7 +10096,7 @@ (define-public emacs-ox-twbs (origin (method git-fetch) (uri (git-reference - (url "https://github.com/marsmining/ox-twbs.git") + (url "https://github.com/marsmining/ox-twbs") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -10119,7 +10119,7 @@ (define-public emacs-highlight-sexp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/daimrod/highlight-sexp.git") + (url "https://github.com/daimrod/highlight-sexp") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -10141,7 +10141,7 @@ (define-public emacs-highlight-stages (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zk-phi/highlight-stages.git") + (url "https://github.com/zk-phi/highlight-stages") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10292,7 +10292,7 @@ (define-public emacs-diminish (origin (method git-fetch) (uri (git-reference - (url "https://github.com/myrjola/diminish.el.git") + (url "https://github.com/myrjola/diminish.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -10446,7 +10446,7 @@ (define-public emacs-htmlize (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hniksic/emacs-htmlize.git") + (url "https://github.com/hniksic/emacs-htmlize") (commit (string-append "release/" version)))) (file-name (git-file-name name version)) (sha256 @@ -10467,7 +10467,7 @@ (define-public emacs-xmlgen (origin (method git-fetch) (uri (git-reference - (url "https://github.com/philjackson/xmlgen.git") + (url "https://github.com/philjackson/xmlgen") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -10493,7 +10493,7 @@ (define-public emacs-cdlatex (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cdominik/cdlatex.git") + (url "https://github.com/cdominik/cdlatex") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -10519,7 +10519,7 @@ (define-public emacs-cnfonts (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tumashu/cnfonts.git") + (url "https://github.com/tumashu/cnfonts") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -10539,7 +10539,7 @@ (define-public emacs-php-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ejmr/php-mode.git") + (url "https://github.com/ejmr/php-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -10563,7 +10563,7 @@ (define-public emacs-pos-tip (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pitkali/pos-tip.git") + (url "https://github.com/pitkali/pos-tip") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -10589,7 +10589,7 @@ (define-public emacs-pyim-basedict (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tumashu/pyim-basedict.git") + (url "https://github.com/tumashu/pyim-basedict") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -10657,7 +10657,7 @@ (define-public emacs-el2org (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tumashu/el2org.git") + (url "https://github.com/tumashu/el2org") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -10677,7 +10677,7 @@ (define-public emacs-mustache (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Wilfred/mustache.el.git") + (url "https://github.com/Wilfred/mustache.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -10704,7 +10704,7 @@ (define-public emacs-org2web (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tumashu/org2web.git") + (url "https://github.com/tumashu/org2web") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -10956,7 +10956,7 @@ (define-public emacs-gnuplot (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bruceravel/gnuplot-mode.git") + (url "https://github.com/bruceravel/gnuplot-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11061,7 +11061,7 @@ (define-public emacs-evil-commentary (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linktohack/evil-commentary.git") + (url "https://github.com/linktohack/evil-commentary") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11086,7 +11086,7 @@ (define-public emacs-ansi (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rejeep/ansi.el.git") + (url "https://github.com/rejeep/ansi.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11113,7 +11113,7 @@ (define-public emacs-commander (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rejeep/commander.el.git") + (url "https://github.com/rejeep/commander.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11162,7 +11162,7 @@ (define-public emacs-ert-runner (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rejeep/ert-runner.el.git") + (url "https://github.com/rejeep/ert-runner.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11211,7 +11211,7 @@ (define-public emacs-xtest (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/promethial/xtest.git") + (url "https://github.com/promethial/xtest") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11233,7 +11233,7 @@ (define-public emacs-disable-mouse (origin (method git-fetch) (uri (git-reference - (url "https://github.com/purcell/disable-mouse.git") + (url "https://github.com/purcell/disable-mouse") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11255,7 +11255,7 @@ (define-public emacs-json-reformat (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gongo/json-reformat.git") + (url "https://github.com/gongo/json-reformat") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11301,7 +11301,7 @@ (define-public emacs-json-snatcher (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Sterlingg/json-snatcher.git") + (url "https://github.com/Sterlingg/json-snatcher") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11321,7 +11321,7 @@ (define-public emacs-json-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joshwnj/json-mode.git") + (url "https://github.com/joshwnj/json-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11368,7 +11368,7 @@ (define-public emacs-restclient (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pashky/restclient.el.git") + (url "https://github.com/pashky/restclient.el") (commit commit))) (sha256 (base32 @@ -11420,7 +11420,7 @@ (define-public emacs-eimp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nicferrier/eimp.git") + (url "https://github.com/nicferrier/eimp") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11457,7 +11457,7 @@ (define-public emacs-dired-hacks (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Fuco1/dired-hacks.git") + (url "https://github.com/Fuco1/dired-hacks") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11523,7 +11523,7 @@ (define-public emacs-which-key (origin (method git-fetch) (uri (git-reference - (url "https://github.com/justbur/emacs-which-key.git") + (url "https://github.com/justbur/emacs-which-key") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11577,7 +11577,7 @@ (define-public emacs-ws-butler (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lewang/ws-butler.git") + (url "https://github.com/lewang/ws-butler") (commit "323b651dd70ee40a25accc940b8f80c3a3185205"))) (file-name (git-file-name name version)) (sha256 @@ -11628,7 +11628,7 @@ (define-public emacs-org-edit-latex (origin (method git-fetch) (uri (git-reference - (url "https://github.com/et2010/org-edit-latex.git") + (url "https://github.com/et2010/org-edit-latex") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11654,7 +11654,7 @@ (define-public emacs-emamux (origin (method git-fetch) (uri (git-reference - (url "https://github.com/syohex/emacs-emamux.git") + (url "https://github.com/syohex/emacs-emamux") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11748,7 +11748,7 @@ (define-public emacs-git-messenger (origin (method git-fetch) (uri (git-reference - (url "https://github.com/syohex/emacs-git-messenger.git") + (url "https://github.com/syohex/emacs-git-messenger") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11776,7 +11776,7 @@ (define-public emacs-gitpatch (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tumashu/gitpatch.git") + (url "https://github.com/tumashu/gitpatch") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11824,7 +11824,7 @@ (define-public emacs-engine-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hrs/engine-mode.git") + (url "https://github.com/hrs/engine-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11845,7 +11845,7 @@ (define-public emacs-prop-menu (origin (method git-fetch) (uri (git-reference - (url "https://github.com/david-christiansen/prop-menu-el.git") + (url "https://github.com/david-christiansen/prop-menu-el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11880,7 +11880,7 @@ (define-public emacs-idris-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/idris-hackers/idris-mode.git") + (url "https://github.com/idris-hackers/idris-mode") (commit commit))) (file-name (git-file-name name commit)) (sha256 @@ -11905,7 +11905,7 @@ (define-public emacs-browse-at-remote (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rmuslimov/browse-at-remote.git") + (url "https://github.com/rmuslimov/browse-at-remote") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11937,7 +11937,7 @@ (define-public emacs-tiny (origin (method git-fetch) (uri (git-reference - (url "https://github.com/abo-abo/tiny.git") + (url "https://github.com/abo-abo/tiny") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -12136,7 +12136,7 @@ (define-public emacs-circe (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jorgenschaefer/circe.git") + (url "https://github.com/jorgenschaefer/circe") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -12192,7 +12192,7 @@ (define-public emacs-slack (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/yuya373/emacs-slack.git") + (url "https://github.com/yuya373/emacs-slack") (commit commit))) (file-name (git-file-name name commit)) (sha256 @@ -12227,7 +12227,7 @@ (define-public emacs-bash-completion (origin (method git-fetch) (uri (git-reference - (url "https://github.com/szermatt/emacs-bash-completion.git") + (url "https://github.com/szermatt/emacs-bash-completion") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12300,7 +12300,7 @@ (define-public emacs-transmission (origin (method git-fetch) (uri (git-reference - (url "https://github.com/holomorph/transmission.git") + (url "https://github.com/holomorph/transmission") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12329,7 +12329,7 @@ (define-public emacs-polymode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/polymode/polymode.git") + (url "https://github.com/polymode/polymode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -12383,7 +12383,7 @@ (define-public emacs-polymode-org (origin (method git-fetch) (uri (git-reference - (url "https://github.com/polymode/poly-org.git") + (url "https://github.com/polymode/poly-org") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -12410,7 +12410,7 @@ (define-public eless (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kaushalmodi/eless.git") + (url "https://github.com/kaushalmodi/eless") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -12462,7 +12462,7 @@ (define-public emacs-evil-matchit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/redguardtoo/evil-matchit.git") + (url "https://github.com/redguardtoo/evil-matchit") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12485,7 +12485,7 @@ (define-public emacs-evil-smartparens (origin (method git-fetch) (uri (git-reference - (url "https://github.com/expez/evil-smartparens.git") + (url "https://github.com/expez/evil-smartparens") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12509,7 +12509,7 @@ (define-public emacs-evil-quickscope (origin (method git-fetch) (uri (git-reference - (url "https://github.com/blorbx/evil-quickscope.git") + (url "https://github.com/blorbx/evil-quickscope") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -12538,7 +12538,7 @@ (define-public emacs-bongo (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dbrock/bongo.git") + (url "https://github.com/dbrock/bongo") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12586,7 +12586,7 @@ (define-public emacs-org-tree-slide (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/takaxp/org-tree-slide.git") + (url "https://github.com/takaxp/org-tree-slide") (commit commit))) (sha256 (base32 @@ -12610,7 +12610,7 @@ (define-public emacs-scratch-el (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ieure/scratch-el.git") + (url "https://github.com/ieure/scratch-el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -12647,7 +12647,7 @@ (define-public emacs-kv (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nicferrier/emacs-kv.git") + (url "https://github.com/nicferrier/emacs-kv") (commit "721148475bce38a70e0b678ba8aa923652e8900e"))) (file-name (git-file-name name version)) (sha256 @@ -12672,7 +12672,7 @@ (define-public emacs-esxml (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tali713/esxml.git") + (url "https://github.com/tali713/esxml") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12767,7 +12767,7 @@ (define-public epipe (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cute-jumper/epipe.git") + (url "https://github.com/cute-jumper/epipe") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12811,7 +12811,7 @@ (define-public emacs-hcl-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/syohex/emacs-hcl-mode.git") + (url "https://github.com/syohex/emacs-hcl-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12833,7 +12833,7 @@ (define-public emacs-terraform-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/syohex/emacs-terraform-mode.git") + (url "https://github.com/syohex/emacs-terraform-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12933,7 +12933,7 @@ (define-public emacs-deft (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jrblevin/deft.git") + (url "https://github.com/jrblevin/deft") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -12955,7 +12955,7 @@ (define-public emacs-anzu (origin (method git-fetch) (uri (git-reference - (url "https://github.com/syohex/emacs-anzu.git") + (url "https://github.com/syohex/emacs-anzu") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -12999,7 +12999,7 @@ (define-public emacs-emmet-mode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/smihica/emmet-mode.git") + (url "https://github.com/smihica/emmet-mode") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -13023,7 +13023,7 @@ (define-public emacs-ergoemacs-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ergoemacs/ergoemacs-mode.git") + (url "https://github.com/ergoemacs/ergoemacs-mode") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -13085,7 +13085,7 @@ (define-public emacs-auth-source-pass (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DamienCassou/auth-password-store.git") + (url "https://github.com/DamienCassou/auth-password-store") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -13111,7 +13111,7 @@ (define-public emacs-pass (origin (method git-fetch) (uri (git-reference - (url "https://github.com/NicolasPetton/pass.git") + (url "https://github.com/NicolasPetton/pass") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13246,7 +13246,7 @@ (define-public emacs-finalize (origin (method git-fetch) (uri (git-reference - (url "https://github.com/skeeto/elisp-finalize.git") + (url "https://github.com/skeeto/elisp-finalize") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13270,7 +13270,7 @@ (define-public emacs-emacsql (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/skeeto/emacsql.git") + (url "https://github.com/skeeto/emacsql") (commit (string-append version)))) (file-name (git-file-name name version)) (sha256 @@ -13352,7 +13352,7 @@ (define-public emacs-closql (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacscollective/closql.git") + (url "https://github.com/emacscollective/closql") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -13381,7 +13381,7 @@ (define-public emacs-epkg (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacscollective/epkg.git") + (url "https://github.com/emacscollective/epkg") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -13423,7 +13423,7 @@ (define-public emacs-elisp-slime-nav (origin (method git-fetch) (uri (git-reference - (url "https://github.com/purcell/elisp-slime-nav.git") + (url "https://github.com/purcell/elisp-slime-nav") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13445,7 +13445,7 @@ (define-public emacs-dedicated (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsorphanage/dedicated.git") + (url "https://github.com/emacsorphanage/dedicated") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13472,7 +13472,7 @@ (define-public emacs-nnreddit (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/paul-issartel/nnreddit.git") + (url "https://github.com/paul-issartel/nnreddit") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -13493,7 +13493,7 @@ (define-public emacs-makey (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mickeynp/makey.git") + (url "https://github.com/mickeynp/makey") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13537,7 +13537,7 @@ (define-public emacs-outshine (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alphapapa/outshine.git") + (url "https://github.com/alphapapa/outshine") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -13588,7 +13588,7 @@ (define-public emacs-org-recent-headings (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alphapapa/org-recent-headings.git") + (url "https://github.com/alphapapa/org-recent-headings") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13818,7 +13818,7 @@ (define-public emacs-parsebib (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joostkremers/parsebib.git") + (url "https://github.com/joostkremers/parsebib") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13838,7 +13838,7 @@ (define-public emacs-ebib (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joostkremers/ebib.git") + (url "https://github.com/joostkremers/ebib") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13868,7 +13868,7 @@ (define-public emacs-biblio (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cpitclaudel/biblio.el.git") + (url "https://github.com/cpitclaudel/biblio.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -13899,7 +13899,7 @@ (define-public emacs-helm-bibtex (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tmalsburg/helm-bibtex.git") + (url "https://github.com/tmalsburg/helm-bibtex") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -13945,7 +13945,7 @@ (define-public emacs-ewmctrl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/flexibeast/ewmctrl.git") + (url "https://github.com/flexibeast/ewmctrl") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14002,7 +14002,7 @@ (define-public emacs-helm-gtags (origin (method git-fetch) (uri (git-reference - (url "https://github.com/syohex/emacs-helm-gtags.git") + (url "https://github.com/syohex/emacs-helm-gtags") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14024,7 +14024,7 @@ (define-public emacs-list-utils (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rolandwalker/list-utils.git") + (url "https://github.com/rolandwalker/list-utils") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -14043,7 +14043,7 @@ (define-public emacs-move-text (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsfodder/move-text.git") + (url "https://github.com/emacsfodder/move-text") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14084,7 +14084,7 @@ (define-public emacs-rainbow-blocks (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/istib/rainbow-blocks.git") + (url "https://github.com/istib/rainbow-blocks") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14107,7 +14107,7 @@ (define-public emacs-hierarchy (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DamienCassou/hierarchy.git") + (url "https://github.com/DamienCassou/hierarchy") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -14135,7 +14135,7 @@ (define-public emacs-tree-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsorphanage/tree-mode.git") + (url "https://github.com/emacsorphanage/tree-mode") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14155,7 +14155,7 @@ (define-public emacs-md4rd (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ahungry/md4rd.git") + (url "https://github.com/ahungry/md4rd") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14184,7 +14184,7 @@ (define-public emacs-pulseaudio-control (origin (method git-fetch) (uri (git-reference - (url "https://github.com/flexibeast/pulseaudio-control.git") + (url "https://github.com/flexibeast/pulseaudio-control") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14216,7 +14216,7 @@ (define-public emacs-datetime (origin (method git-fetch) (uri (git-reference - (url "https://github.com/doublep/datetime.git") + (url "https://github.com/doublep/datetime") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14239,7 +14239,7 @@ (define-public emacs-org-mind-map (origin (method git-fetch) (uri (git-reference - (url "https://github.com/theodorewiles/org-mind-map.git") + (url "https://github.com/theodorewiles/org-mind-map") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14262,7 +14262,7 @@ (define-public emacs-npm-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mojochao/npm-mode.git") + (url "https://github.com/mojochao/npm-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14303,7 +14303,7 @@ (define-public emacs-itail (origin (method git-fetch) (uri (git-reference - (url "https://github.com/re5et/itail.git") + (url "https://github.com/re5et/itail") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14326,7 +14326,7 @@ (define-public emacs-loop (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Wilfred/loop.el.git") + (url "https://github.com/Wilfred/loop.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14353,7 +14353,7 @@ (define-public emacs-elisp-refs (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Wilfred/elisp-refs.git") + (url "https://github.com/Wilfred/elisp-refs") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14389,7 +14389,7 @@ (define-public emacs-crux (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bbatsov/crux.git") + (url "https://github.com/bbatsov/crux") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14410,7 +14410,7 @@ (define-public emacs-edit-server (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stsquad/emacs_chrome.git") + (url "https://github.com/stsquad/emacs_chrome") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -14488,7 +14488,7 @@ (define-public emacs-esup (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jschaf/esup.git") + (url "https://github.com/jschaf/esup") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14512,7 +14512,7 @@ (define-public emacs-restart-emacs (origin (method git-fetch) (uri (git-reference - (url "https://github.com/iqbalansari/restart-emacs.git") + (url "https://github.com/iqbalansari/restart-emacs") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14532,7 +14532,7 @@ (define-public emacs-sourcemap (origin (method git-fetch) (uri (git-reference - (url "https://github.com/syohex/emacs-sourcemap.git") + (url "https://github.com/syohex/emacs-sourcemap") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14551,7 +14551,7 @@ (define-public emacs-macrostep (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joddie/macrostep.git") + (url "https://github.com/joddie/macrostep") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14601,7 +14601,7 @@ (define-public emacs-parent-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Fanael/parent-mode.git") + (url "https://github.com/Fanael/parent-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14638,7 +14638,7 @@ (define-public emacs-isearch-prop (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsmirror/isearch-prop.git") + (url "https://github.com/emacsmirror/isearch-prop") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14664,7 +14664,7 @@ (define-public emacs-company-lua (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ptrv/company-lua.git") + (url "https://github.com/ptrv/company-lua") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14692,7 +14692,7 @@ (define-public emacs-beginend (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DamienCassou/beginend.git") + (url "https://github.com/DamienCassou/beginend") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -14719,7 +14719,7 @@ (define-public emacs-mbsync (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dimitri/mbsync-el.git") + (url "https://github.com/dimitri/mbsync-el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14742,7 +14742,7 @@ (define-public emacs-ibuffer-projectile (origin (method git-fetch) (uri (git-reference - (url "https://github.com/purcell/ibuffer-projectile.git") + (url "https://github.com/purcell/ibuffer-projectile") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14836,7 +14836,7 @@ (define-public emacs-hy-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hylang/hy-mode.git") + (url "https://github.com/hylang/hy-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -14858,7 +14858,7 @@ (define-public emacs-web-beautify (origin (method git-fetch) (uri (git-reference - (url "https://github.com/yasuyk/web-beautify.git") + (url "https://github.com/yasuyk/web-beautify") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -14879,7 +14879,7 @@ (define-public emacs-helm-shell-history (origin (method git-fetch) (uri (git-reference - (url "https://github.com/yuutayamada/helm-shell-history.git") + (url "https://github.com/yuutayamada/helm-shell-history") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14939,7 +14939,7 @@ (define-public emacs-org-ref (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jkitchin/org-ref.git") + (url "https://github.com/jkitchin/org-ref") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -14987,7 +14987,7 @@ (define-public emacs-org-reveal (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/yjwen/org-reveal.git") + (url "https://github.com/yjwen/org-reveal") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15033,7 +15033,7 @@ (define-public emacs-add-hooks (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nickmccurdy/add-hooks.git") + (url "https://github.com/nickmccurdy/add-hooks") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15053,7 +15053,7 @@ (define-public emacs-fancy-narrow (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Malabarba/fancy-narrow.git") + (url "https://github.com/Malabarba/fancy-narrow") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15078,7 +15078,7 @@ (define-public emacs-know-your-http-well (origin (method git-fetch) (uri (git-reference - (url "https://github.com/for-GET/know-your-http-well.git") + (url "https://github.com/for-GET/know-your-http-well") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -15113,7 +15113,7 @@ (define-public emacs-navi-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alphapapa/navi.git") + (url "https://github.com/alphapapa/navi") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15140,7 +15140,7 @@ (define-public emacs-download-region (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zk-phi/download-region.git") + (url "https://github.com/zk-phi/download-region") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15161,7 +15161,7 @@ (define-public emacs-helpful (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Wilfred/helpful.git") + (url "https://github.com/Wilfred/helpful") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15210,7 +15210,7 @@ (define-public emacs-logview (origin (method git-fetch) (uri (git-reference - (url "https://github.com/doublep/logview.git") + (url "https://github.com/doublep/logview") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15266,7 +15266,7 @@ (define-public emacs-benchmark-init (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dholm/benchmark-init-el.git") + (url "https://github.com/dholm/benchmark-init-el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15288,7 +15288,7 @@ (define-public emacs-magit-gerrit (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/terranpro/magit-gerrit.git") + (url "https://github.com/terranpro/magit-gerrit") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15313,7 +15313,7 @@ (define-public emacs-magit-org-todos-el (origin (method git-fetch) (uri (git-reference - (url "https://github.com/danielma/magit-org-todos.el.git") + (url "https://github.com/danielma/magit-org-todos.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15363,7 +15363,7 @@ (define-public emacs-f3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cosmicexplorer/f3.git") + (url "https://github.com/cosmicexplorer/f3") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15385,7 +15385,7 @@ (define-public emacs-lice-el (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/buzztaiki/lice-el.git") + (url "https://github.com/buzztaiki/lice-el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15411,7 +15411,7 @@ (define-public emacs-academic-phrases (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nashamri/academic-phrases.git") + (url "https://github.com/nashamri/academic-phrases") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15445,7 +15445,7 @@ (define-public emacs-auto-yasnippet (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/abo-abo/auto-yasnippet.git") + (url "https://github.com/abo-abo/auto-yasnippet") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15474,7 +15474,7 @@ (define-public emacs-highlight-numbers (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Fanael/highlight-numbers.git") + (url "https://github.com/Fanael/highlight-numbers") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15594,7 +15594,7 @@ (define-public emacs-visual-regexp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/benma/visual-regexp.el.git") + (url "https://github.com/benma/visual-regexp.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -15617,7 +15617,7 @@ (define-public emacs-faceup (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Lindydancer/faceup.git") + (url "https://github.com/Lindydancer/faceup") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15675,7 +15675,7 @@ (define-public emacs-grep-context (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mkcms/grep-context.git") + (url "https://github.com/mkcms/grep-context") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15703,7 +15703,7 @@ (define-public emacs-helm-firefox (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-helm/helm-firefox.git") + (url "https://github.com/emacs-helm/helm-firefox") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15725,7 +15725,7 @@ (define-public emacs-interactive-align (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mkcms/interactive-align.git") + (url "https://github.com/mkcms/interactive-align") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -15767,7 +15767,7 @@ (define-public emacs-highlight-defined (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Fanael/highlight-defined.git") + (url "https://github.com/Fanael/highlight-defined") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15788,7 +15788,7 @@ (define-public emacs-parinfer-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DogLooksGood/parinfer-mode.git") + (url "https://github.com/DogLooksGood/parinfer-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -15812,7 +15812,7 @@ (define-public emacs-helm-eww (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-helm/helm-eww.git") + (url "https://github.com/emacs-helm/helm-eww") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15836,7 +15836,7 @@ (define-public emacs-stumpwm-mode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stumpwm/stumpwm-contrib.git") + (url "https://github.com/stumpwm/stumpwm-contrib") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15882,7 +15882,7 @@ (define-public emacs-ido-vertical-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/creichert/ido-vertical-mode.el.git") + (url "https://github.com/creichert/ido-vertical-mode.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -15901,7 +15901,7 @@ (define-public emacs-wordgen (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Fanael/wordgen.el.git") + (url "https://github.com/Fanael/wordgen.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15945,7 +15945,7 @@ (define-public emacs-highlight-escape-sequences (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dgutov/highlight-escape-sequences.git") + (url "https://github.com/dgutov/highlight-escape-sequences") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -15965,7 +15965,7 @@ (define-public emacs-dashboard (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rakanalh/emacs-dashboard.git") + (url "https://github.com/rakanalh/emacs-dashboard") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15999,7 +15999,7 @@ (define-public emacs-slime-company (origin (method git-fetch) (uri (git-reference - (url "https://github.com/anwyn/slime-company.git") + (url "https://github.com/anwyn/slime-company") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -16046,7 +16046,7 @@ (define-public emacs-eros (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xiongtx/eros.git") + (url "https://github.com/xiongtx/eros") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -16068,7 +16068,7 @@ (define-public emacs-stickyfunc-enhance (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tuhdo/semantic-stickyfunc-enhance.git") + (url "https://github.com/tuhdo/semantic-stickyfunc-enhance") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -16092,7 +16092,7 @@ (define-public emacs-git-auto-commit-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ryuslash/git-auto-commit-mode.git") + (url "https://github.com/ryuslash/git-auto-commit-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -16138,7 +16138,7 @@ (define-public emacs-company-restclient (origin (method git-fetch) (uri (git-reference - (url "https://github.com/iquiw/company-restclient.git") + (url "https://github.com/iquiw/company-restclient") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -16203,7 +16203,7 @@ (define-public emacs-dumb-jump (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jacktasia/dumb-jump.git") + (url "https://github.com/jacktasia/dumb-jump") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -16248,7 +16248,7 @@ (define-public emacs-dts-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bgamari/dts-mode.git") + (url "https://github.com/bgamari/dts-mode") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -16296,7 +16296,7 @@ (define-public emacs-isearch+ (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsmirror/isearch-plus.git") + (url "https://github.com/emacsmirror/isearch-plus") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -16418,7 +16418,7 @@ (define-public emacs-org-caldav (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dengste/org-caldav.git") + (url "https://github.com/dengste/org-caldav") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -16444,7 +16444,7 @@ (define-public emacs-zotxt (origin (method git-fetch) (uri (git-reference - (url "https://github.com/egh/zotxt-emacs.git") + (url "https://github.com/egh/zotxt-emacs") (commit "23a4a9f74a658222027d53a9a83cd4bcc583ca8b"))) (file-name (git-file-name name version)) (sha256 @@ -16546,7 +16546,7 @@ (define-public emacs-evil-mc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gabesoft/evil-mc.git") + (url "https://github.com/gabesoft/evil-mc") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -16880,7 +16880,7 @@ (define-public emacs-helm-exwm (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-helm/helm-exwm.git") + (url "https://github.com/emacs-helm/helm-exwm") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -16971,7 +16971,7 @@ (define-public emacs-helm-mu (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-helm/helm-mu.git") + (url "https://github.com/emacs-helm/helm-mu") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -17379,7 +17379,7 @@ (define-public emacs-org-brain (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Kungsgeten/org-brain.git") + (url "https://github.com/Kungsgeten/org-brain") (commit "3faf9303af3f2356e3444e69c22dc6c5774047d1"))) (file-name (git-file-name name version)) (sha256 @@ -17476,7 +17476,7 @@ (define-public emacs-adoc-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sensorflo/adoc-mode.git") + (url "https://github.com/sensorflo/adoc-mode") (commit (string-append "V" version)))) (file-name (git-file-name name version)) (sha256 @@ -17671,7 +17671,7 @@ (define-public emacs-dired-rsync (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stsquad/dired-rsync.git") + (url "https://github.com/stsquad/dired-rsync") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -17988,7 +17988,7 @@ (define-public emacs-all-the-icons (origin (method git-fetch) (uri (git-reference - (url "https://github.com/domtronn/all-the-icons.el.git") + (url "https://github.com/domtronn/all-the-icons.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -18027,7 +18027,7 @@ (define-public emacs-wttrin (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bcbcarl/emacs-wttrin.git") + (url "https://github.com/bcbcarl/emacs-wttrin") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -18052,7 +18052,7 @@ (define-public emacs-browse-kill-ring (origin (method git-fetch) (uri (git-reference - (url "https://github.com/browse-kill-ring/browse-kill-ring.git") + (url "https://github.com/browse-kill-ring/browse-kill-ring") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -18075,7 +18075,7 @@ (define-public emacs-powerline (origin (method git-fetch) (uri (git-reference - (url "https://github.com/milkypostman/powerline.git") + (url "https://github.com/milkypostman/powerline") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -18097,7 +18097,7 @@ (define-public emacs-spaceline (origin (method git-fetch) (uri (git-reference - (url "https://github.com/TheBB/spaceline.git") + (url "https://github.com/TheBB/spaceline") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -18267,7 +18267,7 @@ (define-public emacs-ov (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ShingoFukuyama/ov.el.git") + (url "https://github.com/ShingoFukuyama/ov.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -18288,7 +18288,7 @@ (define-public emacs-matrix-client (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jgkamat/matrix-client-el.git") + (url "https://github.com/jgkamat/matrix-client-el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -18335,7 +18335,7 @@ (define-public emacs-sesman (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vspinu/sesman.git") + (url "https://github.com/vspinu/sesman") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -18369,7 +18369,7 @@ (define-public emacs-buttercup (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jorgenschaefer/emacs-buttercup.git") + (url "https://github.com/jorgenschaefer/emacs-buttercup") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -18427,7 +18427,7 @@ (define-public emacs-frame-purpose (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alphapapa/frame-purpose.el.git") + (url "https://github.com/alphapapa/frame-purpose.el") (commit version))) (sha256 (base32 @@ -18453,7 +18453,7 @@ (define-public emacs-arduino-mode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stardiviner/arduino-mode.git") + (url "https://github.com/stardiviner/arduino-mode") (commit commit))) (sha256 (base32 @@ -18489,7 +18489,7 @@ (define-public emacs-annalist (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/noctuid/annalist.el.git") + (url "https://github.com/noctuid/annalist.el") (commit commit))) (sha256 (base32 @@ -18526,7 +18526,7 @@ (define-public emacs-general (origin (method git-fetch) (uri (git-reference - (url "https://github.com/noctuid/general.el.git") + (url "https://github.com/noctuid/general.el") (commit commit))) (sha256 (base32 "0wn5rk3gkimdklip392mnjrmkymgrb7q9skifi03cbpjam1anzvv")) @@ -18773,7 +18773,7 @@ (define-public emacs-nix-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/NixOS/nix-mode.git") + (url "https://github.com/NixOS/nix-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -18846,7 +18846,7 @@ (define-public emacs-vterm (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/akermu/emacs-libvterm.git") + (url "https://github.com/akermu/emacs-libvterm") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -18911,7 +18911,7 @@ (define-public emacs-simple-mpc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jorenvo/simple-mpc.git") + (url "https://github.com/jorenvo/simple-mpc") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -18956,7 +18956,7 @@ (define-public emacs-cmake-font-lock (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Lindydancer/cmake-font-lock.git") + (url "https://github.com/Lindydancer/cmake-font-lock") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -19271,7 +19271,7 @@ (define-public emacs-dockerfile-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/spotify/dockerfile-mode.git") + (url "https://github.com/spotify/dockerfile-mode") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -19295,7 +19295,7 @@ (define-public emacs-lsp-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-lsp/lsp-mode.git") + (url "https://github.com/emacs-lsp/lsp-mode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -19325,7 +19325,7 @@ (define-public emacs-pfuture (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Alexander-Miller/pfuture.git") + (url "https://github.com/Alexander-Miller/pfuture") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -19346,7 +19346,7 @@ (define-public emacs-treemacs (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Alexander-Miller/treemacs.git") + (url "https://github.com/Alexander-Miller/treemacs") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -19499,7 +19499,7 @@ (define-public emacs-lsp-java (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-lsp/lsp-java.git") + (url "https://github.com/emacs-lsp/lsp-java") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -19526,7 +19526,7 @@ (define-public emacs-lsp-ui (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-lsp/lsp-ui.git") + (url "https://github.com/emacs-lsp/lsp-ui") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -19554,7 +19554,7 @@ (define-public emacs-lsp-lua-emmy (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/phenix3443/lsp-lua-emmy.git") + (url "https://github.com/phenix3443/lsp-lua-emmy") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -19578,7 +19578,7 @@ (define-public emacs-lsp-ivy (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-lsp/lsp-ivy.git") + (url "https://github.com/emacs-lsp/lsp-ivy") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -19605,7 +19605,7 @@ (define-public emacs-helm-lsp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-lsp/helm-lsp.git") + (url "https://github.com/emacs-lsp/helm-lsp") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -19725,7 +19725,7 @@ (define-public emacs-forge (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magit/forge.git") + (url "https://github.com/magit/forge") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -19771,7 +19771,7 @@ (define-public emacs-matcha (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jojojames/matcha.git") + (url "https://github.com/jojojames/matcha") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -20087,7 +20087,7 @@ (define-public emacs-vdiff (origin (method git-fetch) (uri (git-reference - (url "https://github.com/justbur/emacs-vdiff.git") + (url "https://github.com/justbur/emacs-vdiff") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -20465,7 +20465,7 @@ (define-public emacs-ivy-clipmenu (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wpcarro/ivy-clipmenu.el.git") + (url "https://github.com/wpcarro/ivy-clipmenu.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -20515,7 +20515,7 @@ (define-public emacs-dash-docs (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dash-docs-el/dash-docs.git") + (url "https://github.com/dash-docs-el/dash-docs") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -20562,7 +20562,7 @@ (define-public emacs-helm-dash (origin (method git-fetch) (uri (git-reference - (url "https://github.com/areina/helm-dash.git") + (url "https://github.com/areina/helm-dash") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -20588,7 +20588,7 @@ (define-public emacs-counsel-dash (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dash-docs-el/counsel-dash.git") + (url "https://github.com/dash-docs-el/counsel-dash") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -20611,7 +20611,7 @@ (define-public emacs-calibredb (origin (method git-fetch) (uri (git-reference - (url "https://github.com/chenyanming/calibredb.el.git") + (url "https://github.com/chenyanming/calibredb.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -20771,7 +20771,7 @@ (define-public emacs-tramp-auto-auth (origin (method git-fetch) (uri (git-reference - (url "https://github.com/oitofelix/tramp-auto-auth.git") + (url "https://github.com/oitofelix/tramp-auto-auth") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -20967,7 +20967,7 @@ (define-public emacs-rotate-text (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nschum/rotate-text.el.git") + (url "https://github.com/nschum/rotate-text.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -21016,7 +21016,7 @@ (define-public emacs-evil-cleverparens (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/luxbock/evil-cleverparens.git") + (url "https://github.com/luxbock/evil-cleverparens") (commit commit))) (sha256 (base32 "0lhnybpnk4n2yhlcnj9zxn0vi5hpjfaqfhvyfy7ckzz74g8v7iyw")) (file-name (git-file-name name version)))) @@ -21043,7 +21043,7 @@ (define-public emacs-evil-traces (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mamapanda/evil-traces.git") + (url "https://github.com/mamapanda/evil-traces") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -21125,7 +21125,7 @@ (define-public emacs-xterm-color (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/atomontage/xterm-color.git") + (url "https://github.com/atomontage/xterm-color") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -21146,7 +21146,7 @@ (define-public emacs-org-noter (origin (method git-fetch) (uri (git-reference - (url "https://github.com/weirdNox/org-noter.git") + (url "https://github.com/weirdNox/org-noter") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -21172,7 +21172,7 @@ (define-public emacs-org-redmine (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gongo/org-redmine.git") + (url "https://github.com/gongo/org-redmine") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -21195,7 +21195,7 @@ (define-public emacs-multi-term (origin (method git-fetch) (uri (git-reference - (url "https://github.com/manateelazycat/multi-term.git") + (url "https://github.com/manateelazycat/multi-term") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -21286,7 +21286,7 @@ (define-public emacs-gnus-alias (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hexmode/gnus-alias.git") + (url "https://github.com/hexmode/gnus-alias") (commit "9447d3ccb4c0e75d0468899cccff7aa249657bac"))) (file-name (git-file-name name version)) (sha256 @@ -21316,7 +21316,7 @@ (define-public emacs-ox-epub (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ofosos/ox-epub.git") + (url "https://github.com/ofosos/ox-epub") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -21340,7 +21340,7 @@ (define-public emacs-ox-hugo (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kaushalmodi/ox-hugo.git") + (url "https://github.com/kaushalmodi/ox-hugo") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -21362,7 +21362,7 @@ (define-public emacs-ox-pandoc (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kawabata/ox-pandoc.git") + (url "https://github.com/kawabata/ox-pandoc") (commit "aa37dc7e94213d4ebedb85c384c1ba35007da18e"))) (file-name (git-file-name name version)) (sha256 @@ -21387,7 +21387,7 @@ (define-public emacs-wc-mode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bnbeckwith/wc-mode.git") + (url "https://github.com/bnbeckwith/wc-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -21411,7 +21411,7 @@ (define-public emacs-mastodon (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jdenen/mastodon.el.git") + (url "https://github.com/jdenen/mastodon.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -21463,7 +21463,7 @@ (define-public emacs-refactor (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Wilfred/emacs-refactor.git") + (url "https://github.com/Wilfred/emacs-refactor") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -21491,7 +21491,7 @@ (define-public emacs-flyspell-correct (origin (method git-fetch) (uri (git-reference - (url "https://github.com/d12frosted/flyspell-correct.git") + (url "https://github.com/d12frosted/flyspell-correct") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -21549,7 +21549,7 @@ (define-public emacs-org-jira (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ahungry/org-jira.git") + (url "https://github.com/ahungry/org-jira") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -21575,7 +21575,7 @@ (define-public emacs-systemd-mode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/holomorph/systemd-mode.git") + (url "https://github.com/holomorph/systemd-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -21601,7 +21601,7 @@ (define-public emacs-ssh-config-mode (method git-fetch) (uri (git-reference - (url "https://github.com/jhgorrell/ssh-config-mode-el.git") + (url "https://github.com/jhgorrell/ssh-config-mode-el") (commit commit))) (file-name (git-file-name name commit)) (sha256 @@ -21625,7 +21625,7 @@ (define-public emacs-ssh-agency (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/magit/ssh-agency.git") + (url "https://github.com/magit/ssh-agency") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -21656,7 +21656,7 @@ (define-public emacs-tao-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/11111000000/tao-theme-emacs.git") + (url "https://github.com/11111000000/tao-theme-emacs") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -21685,7 +21685,7 @@ (define-public emacs-almost-mono-themes (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cryon/almost-mono-themes.git") + (url "https://github.com/cryon/almost-mono-themes") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -21709,7 +21709,7 @@ (define-public emacs-quasi-monochrome (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lbolla/emacs-quasi-monochrome.git") + (url "https://github.com/lbolla/emacs-quasi-monochrome") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -21733,7 +21733,7 @@ (define-public emacs-doom-themes (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hlissner/emacs-doom-themes.git") + (url "https://github.com/hlissner/emacs-doom-themes") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -21844,7 +21844,7 @@ (define-public emacs-punpun-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wasamasa/punpun-theme.git") + (url "https://github.com/wasamasa/punpun-theme") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -21868,7 +21868,7 @@ (define-public emacs-spacemacs-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nashamri/spacemacs-theme.git") + (url "https://github.com/nashamri/spacemacs-theme") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -21891,7 +21891,7 @@ (define-public emacs-elixir-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/elixir-editors/emacs-elixir.git") + (url "https://github.com/elixir-editors/emacs-elixir") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -21915,7 +21915,7 @@ (define-public emacs-dimmer (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gonewest818/dimmer.el.git") + (url "https://github.com/gonewest818/dimmer.el") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -22124,7 +22124,7 @@ (define-public emacs-telega (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zevlg/telega.el.git") + (url "https://github.com/zevlg/telega.el") (commit commit))) (sha256 (base32 @@ -22242,7 +22242,7 @@ (define-public emacs-doom-modeline (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/seagle0128/doom-modeline.git") + (url "https://github.com/seagle0128/doom-modeline") (commit (string-append "v" version)))) (sha256 (base32 @@ -22296,7 +22296,7 @@ (define-public emacs-org-present (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rlister/org-present.git") + (url "https://github.com/rlister/org-present") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -22319,7 +22319,7 @@ (define-public emacs-fullframe (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tomterl/fullframe.git") + (url "https://github.com/tomterl/fullframe") (commit version))) (sha256 (base32 @@ -22342,7 +22342,7 @@ (define-public emacs-eshell-toggle (origin (method git-fetch) (uri (git-reference - (url "https://github.com/4DA/eshell-toggle.git") + (url "https://github.com/4DA/eshell-toggle") (commit commit))) (sha256 (base32 @@ -22365,7 +22365,7 @@ (define-public emacs-repl-toggle (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tomterl/repl-toggle.git") + (url "https://github.com/tomterl/repl-toggle") (commit version))) (sha256 (base32 @@ -22388,7 +22388,7 @@ (define-public emacs-rime (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DogLooksGood/emacs-rime.git") + (url "https://github.com/DogLooksGood/emacs-rime") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -22437,7 +22437,7 @@ (define-public emacs-blackout (origin (method git-fetch) (uri (git-reference - (url "https://github.com/raxod502/blackout.git") + (url "https://github.com/raxod502/blackout") (commit commit))) (sha256 (base32 @@ -22460,7 +22460,7 @@ (define-public emacs-ivy-omni-org (origin (method git-fetch) (uri (git-reference - (url "https://github.com/akirak/ivy-omni-org.git") + (url "https://github.com/akirak/ivy-omni-org") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -22485,7 +22485,7 @@ (define-public emacs-ivy-posframe (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tumashu/ivy-posframe.git") + (url "https://github.com/tumashu/ivy-posframe") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -22512,7 +22512,7 @@ (define-public emacs-shackle (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wasamasa/shackle.git") + (url "https://github.com/wasamasa/shackle") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -22535,7 +22535,7 @@ (define-public emacs-helm-lacarte (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacs-helm/helm-lacarte.git") + (url "https://github.com/emacs-helm/helm-lacarte") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -22562,7 +22562,7 @@ (define-public emacs-esh-help (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tom-tan/esh-help.git") + (url "https://github.com/tom-tan/esh-help") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -22587,7 +22587,7 @@ (define-public emacs-isearch-dabbrev (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Dewdrops/isearch-dabbrev.git") + (url "https://github.com/Dewdrops/isearch-dabbrev") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -22610,7 +22610,7 @@ (define-public emacs-helm-linux-disks (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Akirak/helm-linux-disks.git") + (url "https://github.com/Akirak/helm-linux-disks") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -22635,7 +22635,7 @@ (define-public emacs-psession (origin (method git-fetch) (uri (git-reference - (url "https://github.com/thierryvolpiatto/psession.git") + (url "https://github.com/thierryvolpiatto/psession") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -22658,7 +22658,7 @@ (define-public emacs-parseedn (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clojure-emacs/parseedn.git") + (url "https://github.com/clojure-emacs/parseedn") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -22683,7 +22683,7 @@ (define-public emacs-parseclj (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clojure-emacs/parseclj.git") + (url "https://github.com/clojure-emacs/parseclj") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -22706,7 +22706,7 @@ (define-public emacs-hide-mode-line (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hlissner/emacs-hide-mode-line.git") + (url "https://github.com/hlissner/emacs-hide-mode-line") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -22890,7 +22890,7 @@ (define-public emacs-metal-mercury-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ahungry/metal-mercury-mode.git") + (url "https://github.com/ahungry/metal-mercury-mode") (commit commit))) (sha256 (base32 @@ -22917,7 +22917,7 @@ (define-public emacs-boxquote (origin (method git-fetch) (uri (git-reference - (url "https://github.com/davep/boxquote.el.git") + (url "https://github.com/davep/boxquote.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -22939,7 +22939,7 @@ (define-public emacs-buffer-move (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lukhas/buffer-move.git") + (url "https://github.com/lukhas/buffer-move") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -22987,7 +22987,7 @@ (define-public emacs-mwim (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alezost/mwim.el.git") + (url "https://github.com/alezost/mwim.el") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -23031,7 +23031,7 @@ (define-public emacs-unkillable-scratch (origin (method git-fetch) (uri (git-reference - (url "https://github.com/EricCrosson/unkillable-scratch.git") + (url "https://github.com/EricCrosson/unkillable-scratch") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -23051,7 +23051,7 @@ (define-public emacs-switch-buffer-functions (origin (method git-fetch) (uri (git-reference - (url "https://github.com/10sr/switch-buffer-functions-el.git") + (url "https://github.com/10sr/switch-buffer-functions-el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -23099,7 +23099,7 @@ (define-public emacs-dmenu (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lujun9972/el-dmenu.git") + (url "https://github.com/lujun9972/el-dmenu") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -23120,7 +23120,7 @@ (define-public emacs-no-littering (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacscollective/no-littering.git") + (url "https://github.com/emacscollective/no-littering") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -23144,7 +23144,7 @@ (define-public emacs-meson-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wentasah/meson-mode.git") + (url "https://github.com/wentasah/meson-mode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -23169,7 +23169,7 @@ (define-public emacs-message-x (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emacsmirror/message-x.git") + (url "https://github.com/emacsmirror/message-x") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -23221,7 +23221,7 @@ (define-public emacs-gnus-harvest (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jwiegley/gnus-harvest.git") + (url "https://github.com/jwiegley/gnus-harvest") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -23407,7 +23407,7 @@ (define-public emacs-org-journal (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bastibe/org-journal.git") + (url "https://github.com/bastibe/org-journal") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -23562,7 +23562,7 @@ (define-public emacs-org-roam (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jethrokuan/org-roam.git") + (url "https://github.com/jethrokuan/org-roam") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -23596,7 +23596,7 @@ (define-public emacs-uml-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ianxm/emacs-uml.git") + (url "https://github.com/ianxm/emacs-uml") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -23691,7 +23691,7 @@ (define-public emacs-shell-pop (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kyagi/shell-pop-el.git") + (url "https://github.com/kyagi/shell-pop-el") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm index 9be1065de2..e3a9017ba5 100644 --- a/gnu/packages/embedded.scm +++ b/gnu/packages/embedded.scm @@ -596,7 +596,7 @@ (define propeller-binutils (source (origin (inherit (package-source xbinutils)) (method git-fetch) (uri (git-reference - (url "https://github.com/parallaxinc/propgcc.git") + (url "https://github.com/parallaxinc/propgcc") (commit commit))) (file-name (string-append name "-" commit "-checkout")) (sha256 @@ -632,7 +632,7 @@ (define-public propeller-gcc-6 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/totalspectrum/gcc-propeller.git") + (url "https://github.com/totalspectrum/gcc-propeller") (commit commit))) (file-name (string-append name "-" commit "-checkout")) (sha256 @@ -667,7 +667,7 @@ (define-public propeller-gcc-4 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/parallaxinc/propgcc.git") + (url "https://github.com/parallaxinc/propgcc") (commit commit))) (file-name (string-append name "-" commit "-checkout")) (sha256 @@ -709,7 +709,7 @@ (define-public proplib (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/parallaxinc/propgcc.git") + (url "https://github.com/parallaxinc/propgcc") (commit commit))) (file-name (string-append name "-" commit "-checkout")) (sha256 @@ -828,7 +828,7 @@ (define-public propeller-load (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/parallaxinc/propgcc.git") + (url "https://github.com/parallaxinc/propgcc") (commit commit))) (file-name (string-append name "-" commit "-checkout")) (sha256 @@ -913,7 +913,7 @@ (define-public spinsim (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/parallaxinc/spinsim.git") + (url "https://github.com/parallaxinc/spinsim") (commit commit))) (file-name (string-append name "-" commit "-checkout")) (sha256 @@ -969,7 +969,7 @@ (define-public binutils-vc4 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/puppeh/binutils-vc4.git") + (url "https://github.com/puppeh/binutils-vc4") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -997,7 +997,7 @@ (define-public binutils-vc4 ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/puppeh/cgen.git") + (url "https://github.com/puppeh/cgen") (commit "d8e2a9eb70425f180fdd5bfd032884b0855f2032"))) (sha256 (base32 @@ -1021,7 +1021,7 @@ (define-public gcc-vc4 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/puppeh/gcc-vc4.git") + (url "https://github.com/puppeh/gcc-vc4") (commit commit))) (file-name (string-append name "-" @@ -1045,7 +1045,7 @@ (define-public python-libmpsse (origin (method git-fetch) (uri (git-reference - (url "https://github.com/daym/libmpsse.git") + (url "https://github.com/daym/libmpsse") (commit (string-append "v" version)))) (file-name "libmpsse-checkout") (sha256 diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 35f236dbfe..3d1fb6c905 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -140,7 +140,7 @@ (define-public dolphin-emu (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dolphin-emu/dolphin.git") + (url "https://github.com/dolphin-emu/dolphin") (commit commit))) (file-name (git-file-name name version)) (modules '((guix build utils))) @@ -289,7 +289,7 @@ (define-public emulation-station (source (origin (method git-fetch) ; no tarball available (uri (git-reference - (url "https://github.com/Aloshi/EmulationStation.git") + (url "https://github.com/Aloshi/EmulationStation") (commit commit))) ; no version tag (file-name (git-file-name name version)) (sha256 @@ -323,7 +323,7 @@ (define-public higan (origin (method git-fetch) (uri (git-reference - (url "https://github.com/higan-emu/higan.git") + (url "https://github.com/higan-emu/higan") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -484,7 +484,7 @@ (define-public mgba (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mgba-emu/mgba.git") + (url "https://github.com/mgba-emu/mgba") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -540,7 +540,7 @@ (define-public sameboy (origin (method git-fetch) (uri (git-reference - (url "https://github.com/LIJI32/SameBoy.git") + (url "https://github.com/LIJI32/SameBoy") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -587,7 +587,7 @@ (define-public mupen64plus-core (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-core.git") + (url "https://github.com/mupen64plus/mupen64plus-core") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -636,7 +636,7 @@ (define-public mupen64plus-audio-sdl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-audio-sdl.git") + (url "https://github.com/mupen64plus/mupen64plus-audio-sdl") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -682,7 +682,7 @@ (define-public mupen64plus-input-sdl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-input-sdl.git") + (url "https://github.com/mupen64plus/mupen64plus-input-sdl") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -727,7 +727,7 @@ (define-public mupen64plus-rsp-hle (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-rsp-hle.git") + (url "https://github.com/mupen64plus/mupen64plus-rsp-hle") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -769,7 +769,7 @@ (define-public mupen64plus-rsp-z64 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-rsp-z64.git") + (url "https://github.com/mupen64plus/mupen64plus-rsp-z64") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -811,7 +811,7 @@ (define-public mupen64plus-video-arachnoid (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-video-arachnoid.git") + (url "https://github.com/mupen64plus/mupen64plus-video-arachnoid") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -857,7 +857,7 @@ (define-public mupen64plus-video-glide64 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-video-glide64.git") + (url "https://github.com/mupen64plus/mupen64plus-video-glide64") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -911,7 +911,7 @@ (define-public mupen64plus-video-glide64mk2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-video-glide64mk2.git") + (url "https://github.com/mupen64plus/mupen64plus-video-glide64mk2") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -961,7 +961,7 @@ (define-public mupen64plus-video-rice (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-video-rice.git") + (url "https://github.com/mupen64plus/mupen64plus-video-rice") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1009,7 +1009,7 @@ (define-public mupen64plus-video-z64 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-video-z64.git") + (url "https://github.com/mupen64plus/mupen64plus-video-z64") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1064,7 +1064,7 @@ (define-public mupen64plus-ui-console (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mupen64plus/mupen64plus-ui-console.git") + (url "https://github.com/mupen64plus/mupen64plus-ui-console") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1129,7 +1129,7 @@ (define-public nestopia-ue (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rdanbrook/nestopia.git") + (url "https://github.com/rdanbrook/nestopia") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1180,7 +1180,7 @@ (define-public retroarch (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libretro/RetroArch.git") + (url "https://github.com/libretro/RetroArch") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1344,7 +1344,7 @@ (define-public mame (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mamedev/mame.git") + (url "https://github.com/mamedev/mame") (commit (apply string-append "mame" (string-split version #\.))))) (file-name (git-file-name name version)) (sha256 @@ -1849,7 +1849,7 @@ (define-public ppsspp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hrydgard/ppsspp.git") + (url "https://github.com/hrydgard/ppsspp") (commit (string-append "v" version)))) (sha256 (base32 "02yx1w0ygclnmdl0imsvgj24lkzi55wvxkf47q617j0jgrqhy8yl")) @@ -1949,7 +1949,7 @@ (define-public ppsspp ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/hrydgard/ppsspp-lang.git") + (url "https://github.com/hrydgard/ppsspp-lang") (commit "d184ba2b607a03435be579406b816c90add334e6"))) (sha256 (base32 "0s003x6247nx09qd6a1jz1l2hsk5d6k1zmh8mg3m6hjjhvbvd9j9")))) @@ -1957,7 +1957,7 @@ (define-public ppsspp ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/hrydgard/pspautotests.git") + (url "https://github.com/hrydgard/pspautotests") (commit "328b839c7243e7f733f9eae88d059485e3d808e7"))) (sha256 (base32 "1gj1kr5ijxrqwvz7c41phskjr70ndp8iz0gr8c3xxsd8p9z5gdvm")))))) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index f2d32e663f..5262b296e8 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -606,7 +606,7 @@ (define-public fritzing (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fritzing/fritzing-app.git") + (url "https://github.com/fritzing/fritzing-app") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -655,7 +655,7 @@ (define-public fritzing ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/fritzing/fritzing-parts.git") + (url "https://github.com/fritzing/fritzing-parts") (commit version))) (file-name (git-file-name "fritzing-parts" version)) (sha256 @@ -713,7 +713,7 @@ (define-public translate2geda (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/erichVK5/translate2geda.git") + (url "https://github.com/erichVK5/translate2geda") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -933,7 +933,7 @@ (define-public kicad-symbols (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/KiCad/kicad-symbols.git") + (url "https://github.com/KiCad/kicad-symbols") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -962,7 +962,7 @@ (define-public kicad-footprints (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/KiCad/kicad-footprints.git") + (url "https://github.com/KiCad/kicad-footprints") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -979,7 +979,7 @@ (define-public kicad-packages3d (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/KiCad/kicad-packages3d.git") + (url "https://github.com/KiCad/kicad-packages3d") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -996,7 +996,7 @@ (define-public kicad-templates (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/KiCad/kicad-templates.git") + (url "https://github.com/KiCad/kicad-templates") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2109,7 +2109,7 @@ (define-public gpx (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/markwal/GPX.git") + (url "https://github.com/markwal/GPX") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2230,7 +2230,7 @@ (define-public lib3mf (source (origin (method git-fetch) - (uri (git-reference (url "https://github.com/3MFConsortium/lib3mf.git") + (uri (git-reference (url "https://github.com/3MFConsortium/lib3mf") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2335,7 +2335,7 @@ (define-public freecad (origin (method git-fetch) (uri (git-reference - (url "https://github.com/FreeCAD/FreeCAD.git") + (url "https://github.com/FreeCAD/FreeCAD") (commit version))) (modules '((guix build utils))) (snippet @@ -2478,7 +2478,7 @@ (define-public libarea (source (origin (method git-fetch) - (uri (git-reference (url "https://github.com/Heeks/libarea.git") + (uri (git-reference (url "https://github.com/Heeks/libarea") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2519,7 +2519,7 @@ (define-public libspnav (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/FreeSpacenav/libspnav.git") + (url "https://github.com/FreeSpacenav/libspnav") (commit (string-append "libspnav-" version)))) (sha256 (base32 diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm index 4b6c0cf105..93569f3560 100644 --- a/gnu/packages/erlang.scm +++ b/gnu/packages/erlang.scm @@ -47,7 +47,7 @@ (define-public erlang ;; pre-compiled files, so we use this snapshot of the source ;; repository. (uri (git-reference - (url "https://github.com/erlang/otp.git") + (url "https://github.com/erlang/otp") (commit (string-append "OTP-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/fabric-management.scm b/gnu/packages/fabric-management.scm index c31ee6e217..0e8b388cd1 100644 --- a/gnu/packages/fabric-management.scm +++ b/gnu/packages/fabric-management.scm @@ -185,7 +185,7 @@ (define-public ucx (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/openucx/ucx.git") + (url "https://github.com/openucx/ucx") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index f986acc9d4..9236d34f9f 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -147,7 +147,7 @@ (define-public fsarchiver (method git-fetch) (uri (git-reference - (url "https://github.com/fdupoux/fsarchiver.git") + (url "https://github.com/fdupoux/fsarchiver") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -574,7 +574,7 @@ (define-public libnfs (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sahlberg/libnfs.git") + (url "https://github.com/sahlberg/libnfs") (commit (string-append "libnfs-" version)))) (file-name (git-file-name name version)) (sha256 @@ -821,7 +821,7 @@ (define-public mergerfs-tools (origin (method git-fetch) (uri (git-reference - (url "https://github.com/trapexit/mergerfs-tools.git") + (url "https://github.com/trapexit/mergerfs-tools") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index edace82db5..dc825efc8e 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -206,7 +206,7 @@ (define-public ledger (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ledger/ledger.git") + (url "https://github.com/ledger/ledger") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -304,7 +304,7 @@ (define-public emacs-ledger-mode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ledger/ledger-mode.git") + (url "https://github.com/ledger/ledger-mode") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -378,7 +378,7 @@ (define-public geierlein (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stesie/geierlein.git") + (url "https://github.com/stesie/geierlein") (commit (string-append "V" version)))) (file-name (git-file-name name version)) (sha256 @@ -481,7 +481,7 @@ (define-public electron-cash (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Electron-Cash/Electron-Cash.git") + (url "https://github.com/Electron-Cash/Electron-Cash") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -553,7 +553,7 @@ (define-public monero (origin (method git-fetch) (uri (git-reference - (url "https://github.com/monero-project/monero.git") + (url "https://github.com/monero-project/monero") (commit (string-append "v" version)) (recursive? #t))) (file-name (git-file-name name version)) @@ -672,7 +672,7 @@ (define-public monero-gui (origin (method git-fetch) (uri (git-reference - (url "https://github.com/monero-project/monero-gui.git") + (url "https://github.com/monero-project/monero-gui") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -787,7 +787,7 @@ (define-public python-trezor-agent (origin (method git-fetch) (uri (git-reference - (url "https://github.com/romanz/trezor-agent.git") + (url "https://github.com/romanz/trezor-agent") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1197,7 +1197,7 @@ (define-public trezord-udev-rules (origin (method git-fetch) (uri (git-reference - (url "https://github.com/trezor/trezor-common.git") + (url "https://github.com/trezor/trezor-common") (commit commit))) (sha256 (base32 @@ -1222,7 +1222,7 @@ (define-public trezord (origin (method git-fetch) (uri (git-reference - (url "https://github.com/trezor/trezord-go.git") + (url "https://github.com/trezor/trezord-go") (commit (string-append "v" version)))) (sha256 (base32 @@ -1405,7 +1405,7 @@ (define-public bitcoin-unlimited (origin (method git-fetch) (uri (git-reference - (url "https://github.com/BitcoinUnlimited/BitcoinUnlimited.git") + (url "https://github.com/BitcoinUnlimited/BitcoinUnlimited") (commit (string-append "BCHunlimited" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm index 91136ab174..15a6725c67 100644 --- a/gnu/packages/firmware.scm +++ b/gnu/packages/firmware.scm @@ -50,7 +50,7 @@ (define-public ath9k-htc-firmware (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/qca/open-ath9k-htc-firmware.git") + (url "https://github.com/qca/open-ath9k-htc-firmware") (commit version))) (sha256 (base32 @@ -197,7 +197,7 @@ (define* (make-opensbi-package platform name #:optional (arch "riscv64")) (origin (method git-fetch) (uri (git-reference - (url "https://github.com/riscv/opensbi.git") + (url "https://github.com/riscv/opensbi") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm index 8e36da22ed..ed844430cd 100644 --- a/gnu/packages/flashing-tools.scm +++ b/gnu/packages/flashing-tools.scm @@ -98,7 +98,7 @@ (define-public 0xffff (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pali/0xffff.git") + (url "https://github.com/pali/0xffff") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -216,7 +216,7 @@ (define-public teensy-loader-cli (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PaulStoffregen/teensy_loader_cli.git") + (url "https://github.com/PaulStoffregen/teensy_loader_cli") (commit commit))) (sha256 (base32 "0sssim56pwsxp5cp5dlf6mi9h5fx2592m6j1g7abnm0s09b0lpdx")) (file-name (git-file-name name version)) @@ -266,7 +266,7 @@ (define-public rkflashtool (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linux-rockchip/rkflashtool.git") + (url "https://github.com/linux-rockchip/rkflashtool") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -345,7 +345,7 @@ (define-public ifdtool (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/coreboot/coreboot.git") + (url "https://github.com/coreboot/coreboot") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -419,7 +419,7 @@ (define-public me-cleaner (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/corna/me_cleaner.git") + (url "https://github.com/corna/me_cleaner") (commit (string-append "v" version)))) (sha256 (base32 @@ -451,7 +451,7 @@ (define-public uefitool (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/LongSoft/UEFITool.git") + (url "https://github.com/LongSoft/UEFITool") (commit version))) (sha256 (base32 diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index e8ce8a2ab1..00048862c6 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -461,7 +461,7 @@ (define-public font-adobe-source-han-sans (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/adobe-fonts/source-han-sans.git") + (url "https://github.com/adobe-fonts/source-han-sans") (commit (string-append version "R")))) (file-name (git-file-name name version)) (sha256 @@ -847,7 +847,7 @@ (define-public font-fantasque-sans (origin (method git-fetch) (uri (git-reference - (url "https://github.com/belluzj/fantasque-sans.git") + (url "https://github.com/belluzj/fantasque-sans") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -930,7 +930,7 @@ (define-public font-adobe-source-code-pro (origin (method git-fetch) (uri (git-reference - (url "https://github.com/adobe-fonts/source-code-pro.git") + (url "https://github.com/adobe-fonts/source-code-pro") (commit (regexp-substitute/global ;; The upstream tag uses "/" between the roman and italic ;; versions, so substitute our "-" separator here. @@ -955,7 +955,7 @@ (define-public font-adobe-source-sans-pro (origin (method git-fetch) (uri (git-reference - (url "https://github.com/adobe-fonts/source-sans-pro.git") + (url "https://github.com/adobe-fonts/source-sans-pro") (commit (regexp-substitute/global ;; The upstream tag uses "/" between the roman and italic ;; versions, so substitute our "-" separator here. @@ -980,7 +980,7 @@ (define-public font-adobe-source-serif-pro (origin (method git-fetch) (uri (git-reference - (url "https://github.com/adobe-fonts/source-serif-pro.git") + (url "https://github.com/adobe-fonts/source-serif-pro") (commit (regexp-substitute/global ;; The upstream tag uses "/" between the roman and italic ;; versions, so substitute our "-" separator here. @@ -1023,7 +1023,7 @@ (define-public font-fira-sans (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mozilla/Fira.git") + (url "https://github.com/mozilla/Fira") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1068,7 +1068,7 @@ (define-public font-awesome (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/FortAwesome/Font-Awesome.git") + (url "https://github.com/FortAwesome/Font-Awesome") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1105,7 +1105,7 @@ (define-public font-tamzen (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sunaku/tamzen-font.git") + (url "https://github.com/sunaku/tamzen-font") (commit (string-append "Tamzen-" version)))) (file-name (git-file-name name version)) (sha256 @@ -1388,7 +1388,7 @@ (define-public font-google-material-design-icons (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/material-design-icons.git") + (url "https://github.com/google/material-design-icons") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1658,7 +1658,7 @@ (define-public font-public-sans (origin (method git-fetch) (uri (git-reference - (url "https://github.com/uswds/public-sans.git") + (url "https://github.com/uswds/public-sans") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 3336a84001..46279301d6 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -177,7 +177,7 @@ (define-public ttf2eot (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wget/ttf2eot.git") + (url "https://github.com/wget/ttf2eot") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -266,7 +266,7 @@ (define-public woff2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/woff2.git") + (url "https://github.com/google/woff2") (commit (string-append "v" version)))) (file-name (string-append name "-" version ".git")) (sha256 diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index fda5de60c7..b2717d2233 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -127,7 +127,7 @@ (define-public yosys (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cliffordwolf/yosys.git") + (url "https://github.com/cliffordwolf/yosys") (commit (string-append "yosys-" version)) (recursive? #t))) ; for the ‘iverilog’ submodule (sha256 @@ -223,7 +223,7 @@ (define-public icestorm (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cliffordwolf/icestorm.git") + (url "https://github.com/cliffordwolf/icestorm") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -304,7 +304,7 @@ (define-public arachne-pnr (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/YosysHQ/arachne-pnr.git") + (url "https://github.com/YosysHQ/arachne-pnr") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 871189933c..e45980e7a0 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -456,7 +456,7 @@ (define-public tiled (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bjorn/tiled.git") + (url "https://github.com/bjorn/tiled") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -503,7 +503,7 @@ (define-public sfml ;; http://mirror0.sfml-dev.org/files/ because files there seem ;; to be changed in place. (uri (git-reference - (url "https://github.com/SFML/SFML.git") + (url "https://github.com/SFML/SFML") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -593,7 +593,7 @@ (define-public surgescript (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alemart/surgescript.git") + (url "https://github.com/alemart/surgescript") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1403,7 +1403,7 @@ (define-public ois (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wgois/OIS.git") + (url "https://github.com/wgois/OIS") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1933,7 +1933,7 @@ (define-public ioquake3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ioquake/ioq3.git") + (url "https://github.com/ioquake/ioq3") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2051,7 +2051,7 @@ (define-public fna (origin (method git-fetch) (uri (git-reference - (url "https://github.com/FNA-XNA/FNA.git") + (url "https://github.com/FNA-XNA/FNA") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2103,7 +2103,7 @@ (define-public libccd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/danfis/libccd.git") + (url "https://github.com/danfis/libccd") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2179,7 +2179,7 @@ (define-public chipmunk (origin (method git-fetch) (uri (git-reference - (url "https://github.com/slembcke/Chipmunk2D.git") + (url "https://github.com/slembcke/Chipmunk2D") (commit (string-append "Chipmunk-" version)))) (file-name (git-file-name name version)) (sha256 @@ -2206,7 +2206,7 @@ (define-public libtcod (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libtcod/libtcod.git") + (url "https://github.com/libtcod/libtcod") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 5a38e2066a..902c3d0cc1 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -345,7 +345,7 @@ (define-public alex4 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/carstene1ns/alex4.git") + (url "https://github.com/carstene1ns/alex4") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -416,7 +416,7 @@ (define-public astromenace (origin (method git-fetch) (uri (git-reference - (url "https://github.com/viewizard/astromenace.git") + (url "https://github.com/viewizard/astromenace") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -476,7 +476,7 @@ (define-public bastet (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fph/bastet.git") + (url "https://github.com/fph/bastet") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -655,7 +655,7 @@ (define-public cataclysm-dda (origin (method git-fetch) (uri (git-reference - (url "https://github.com/CleverRaven/Cataclysm-DDA.git") + (url "https://github.com/CleverRaven/Cataclysm-DDA") (commit version))) (sha256 (base32 "15l6w6lxays7qmsv0ci2ry53asb9an9dh7l7fc13256k085qcg68")) @@ -720,7 +720,7 @@ (define-public corsix-th (origin (method git-fetch) (uri (git-reference - (url "https://github.com/CorsixTH/CorsixTH.git") + (url "https://github.com/CorsixTH/CorsixTH") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -775,7 +775,7 @@ (define-public cowsay (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tnalpgge/rank-amateur-cowsay.git") + (url "https://github.com/tnalpgge/rank-amateur-cowsay") (commit (string-append name "-" version)))) (file-name (git-file-name name version)) (sha256 @@ -818,7 +818,7 @@ (define-public lolcat (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jaseg/lolcat.git") + (url "https://github.com/jaseg/lolcat") (commit commit))) (sha256 (base32 @@ -986,7 +986,7 @@ (define-public freedoom (origin (method git-fetch) (uri (git-reference - (url "https://github.com/freedoom/freedoom.git") + (url "https://github.com/freedoom/freedoom") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1184,7 +1184,7 @@ (define-public julius (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bvschaik/julius.git") + (url "https://github.com/bvschaik/julius") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1291,7 +1291,7 @@ (define-public opensurge (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alemart/opensurge.git") + (url "https://github.com/alemart/opensurge") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1980,7 +1980,7 @@ (define-public seahorse-adventures (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dulsi/seahorse-adventures.git") + (url "https://github.com/dulsi/seahorse-adventures") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 @@ -2092,7 +2092,7 @@ (define-public superstarfighter (origin (method git-fetch) (uri (git-reference - (url "https://github.com/notapixelstudio/superstarfighter.git") + (url "https://github.com/notapixelstudio/superstarfighter") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2437,7 +2437,7 @@ (define-public abbaye (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nevat/abbayedesmorts-gpl.git") + (url "https://github.com/nevat/abbayedesmorts-gpl") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2668,7 +2668,7 @@ (define-public cmatrix (origin (method git-fetch) (uri (git-reference - (url "https://github.com/abishekvashok/cmatrix.git") + (url "https://github.com/abishekvashok/cmatrix") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2985,7 +2985,7 @@ (define-public mars (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/thelaui/M.A.R.S..git") + (url "https://github.com/thelaui/M.A.R.S.") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4065,7 +4065,7 @@ (define-public openrct2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/OpenRCT2/OpenRCT2.git") + (url "https://github.com/OpenRCT2/OpenRCT2") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4273,7 +4273,7 @@ (define-public red-eclipse (origin (method git-fetch) (uri (git-reference - (url "https://github.com/redeclipse/base.git") + (url "https://github.com/redeclipse/base") (commit (string-append "v" release)) (recursive? #t))) ; for game data (file-name (git-file-name name version)) @@ -5087,7 +5087,7 @@ (define-public laby (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sgimenez/laby.git") + (url "https://github.com/sgimenez/laby") (commit (string-append name "-" version)))) (file-name (git-file-name name version)) (sha256 @@ -5430,7 +5430,7 @@ (define-public no-more-secrets (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bartobri/no-more-secrets.git") + (url "https://github.com/bartobri/no-more-secrets") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5545,7 +5545,7 @@ (define-public freegish (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/freegish/freegish.git") + (url "https://github.com/freegish/freegish") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5602,7 +5602,7 @@ (define-public cdogs-sdl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cxong/cdogs-sdl.git") + (url "https://github.com/cxong/cdogs-sdl") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5739,7 +5739,7 @@ (define-public teeworlds (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/teeworlds/teeworlds.git") + (url "https://github.com/teeworlds/teeworlds") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6581,7 +6581,7 @@ (define-public vkquake (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Novum/vkQuake.git") + (url "https://github.com/Novum/vkQuake") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6716,7 +6716,7 @@ (define-public the-butterfly-effect (origin (method git-fetch) (uri (git-reference - (url "https://github.com/the-butterfly-effect/tbe.git") + (url "https://github.com/the-butterfly-effect/tbe") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6768,7 +6768,7 @@ (define-public pioneer (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pioneerspacesim/pioneer.git") + (url "https://github.com/pioneerspacesim/pioneer") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6815,7 +6815,7 @@ (define-public badass (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/umayr/badass.git") + (url "https://github.com/umayr/badass") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6840,7 +6840,7 @@ (define-public colobot (origin (method git-fetch) (uri (git-reference - (url "https://github.com/colobot/colobot.git") + (url "https://github.com/colobot/colobot") (commit (string-append "colobot-gold-" version)) (recursive? #t))) ;for "data/" subdir (file-name (git-file-name name version)) @@ -6915,7 +6915,7 @@ (define-public gzdoom (origin (method git-fetch) (uri (git-reference - (url "https://github.com/coelckers/gzdoom.git") + (url "https://github.com/coelckers/gzdoom") (commit (string-append "g" version)))) (file-name (git-file-name name version)) (sha256 @@ -7077,7 +7077,7 @@ (define-public crispy-doom (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fabiangreffrath/crispy-doom.git") + (url "https://github.com/fabiangreffrath/crispy-doom") (commit (string-append "crispy-doom-" version)))) (file-name (git-file-name name version)) (sha256 @@ -7119,7 +7119,7 @@ (define-public rinutils (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/shlomif/rinutils.git") + (url "https://github.com/shlomif/rinutils") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -7642,7 +7642,7 @@ (define-public frozen-bubble (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kthakore/frozen-bubble.git") + (url "https://github.com/kthakore/frozen-bubble") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7871,7 +7871,7 @@ (define-public stepmania (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stepmania/stepmania.git") + (url "https://github.com/stepmania/stepmania") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -8106,7 +8106,7 @@ (define-public slingshot (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ryanakca/slingshot.git") + (url "https://github.com/ryanakca/slingshot") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -8409,7 +8409,7 @@ (define-public flare-engine (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/flareteam/flare-engine.git") + (url "https://github.com/flareteam/flare-engine") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -8437,7 +8437,7 @@ (define-public flare-game (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/flareteam/flare-game.git") + (url "https://github.com/flareteam/flare-game") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -8563,7 +8563,7 @@ (define-public marble-marcher (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/HackerPoet/MarbleMarcher.git") + (url "https://github.com/HackerPoet/MarbleMarcher") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9501,7 +9501,7 @@ (define-public leela-zero (origin (method git-fetch) (uri (git-reference - (url "https://github.com/leela-zero/leela-zero.git") + (url "https://github.com/leela-zero/leela-zero") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -9549,7 +9549,7 @@ (define-public q5go (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bernds/q5Go.git") + (url "https://github.com/bernds/q5Go") (commit (string-append "q5go-" version)))) (file-name (git-file-name name version)) (sha256 @@ -11165,7 +11165,7 @@ (define-public xmoto (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xmoto/xmoto.git") + (url "https://github.com/xmoto/xmoto") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11257,7 +11257,7 @@ (define-public eboard (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fbergo/eboard.git") + (url "https://github.com/fbergo/eboard") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -11359,7 +11359,7 @@ (define-public stockfish (origin (method git-fetch) (uri (git-reference - (url "https://github.com/official-stockfish/Stockfish.git") + (url "https://github.com/official-stockfish/Stockfish") (commit (string-append "sf_" version)))) (file-name (git-file-name name version)) (sha256 @@ -11491,7 +11491,7 @@ (define-public neverball (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Neverball/neverball.git") + (url "https://github.com/Neverball/neverball") (commit commit))) (sha256 (base32 diff --git a/gnu/packages/genealogy.scm b/gnu/packages/genealogy.scm index 79b24ed048..dde0fddc25 100644 --- a/gnu/packages/genealogy.scm +++ b/gnu/packages/genealogy.scm @@ -44,7 +44,7 @@ (define-public gramps (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gramps-project/gramps.git") + (url "https://github.com/gramps-project/gramps") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/genimage.scm b/gnu/packages/genimage.scm index 27f55a398a..7ad710082c 100644 --- a/gnu/packages/genimage.scm +++ b/gnu/packages/genimage.scm @@ -45,7 +45,7 @@ (define-public genimage (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pengutronix/genimage.git") + (url "https://github.com/pengutronix/genimage") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 0834add7d1..879132c43a 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -859,7 +859,7 @@ (define-public libosmium (origin (method git-fetch) (uri (git-reference - (url "https://github.com/osmcode/libosmium.git") + (url "https://github.com/osmcode/libosmium") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -892,7 +892,7 @@ (define-public osm2pgsql (origin (method git-fetch) (uri (git-reference - (url "https://github.com/openstreetmap/osm2pgsql.git") + (url "https://github.com/openstreetmap/osm2pgsql") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -941,7 +941,7 @@ (define-public tippecanoe (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mapbox/tippecanoe.git") + (url "https://github.com/mapbox/tippecanoe") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1032,7 +1032,7 @@ (define-public xygrib (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/opengribs/XyGrib.git") + (url "https://github.com/opengribs/XyGrib") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1468,7 +1468,7 @@ (define-public qmapshack (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Maproom/qmapshack.git") + (url "https://github.com/Maproom/qmapshack") (commit (string-append "V_" version)))) (file-name (git-file-name name version)) (sha256 @@ -1620,7 +1620,7 @@ (define-public opencpn (origin (method git-fetch) (uri (git-reference - (url "https://github.com/OpenCPN/OpenCPN.git") + (url "https://github.com/OpenCPN/OpenCPN") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm index c52dc7a4d1..c2fca073e3 100644 --- a/gnu/packages/gimp.scm +++ b/gnu/packages/gimp.scm @@ -311,7 +311,7 @@ (define-public mypaint-brushes (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mypaint/mypaint-brushes.git") + (url "https://github.com/mypaint/mypaint-brushes") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -337,7 +337,7 @@ (define-public mypaint-brushes-1.3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mypaint/mypaint-brushes.git") + (url "https://github.com/mypaint/mypaint-brushes") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index d7a6082189..fb33bd7f6d 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -193,7 +193,7 @@ (define-public s2tc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/divVerent/s2tc.git") + (url "https://github.com/divVerent/s2tc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -833,7 +833,7 @@ (define-public nanovg-for-extempore (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/extemporelang/nanovg.git") + (url "https://github.com/extemporelang/nanovg") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -893,7 +893,7 @@ (define-public virtualgl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/VirtualGL/virtualgl.git") + (url "https://github.com/VirtualGL/virtualgl") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 53be103495..83e0fc785e 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -98,7 +98,7 @@ (define-public delft-icon-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/madmaxms/iconpack-delft.git") + (url "https://github.com/madmaxms/iconpack-delft") (commit (string-append "v" version)))) (sha256 (base32 @@ -244,7 +244,7 @@ (define-public gnome-shell-extension-dash-to-dock (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/micheleg/dash-to-dock.git") + (url "https://github.com/micheleg/dash-to-dock") (commit (string-append "extensions.gnome.org-v" version)))) (sha256 @@ -423,7 +423,7 @@ (define-public gnome-shell-extension-dash-to-panel (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/home-sweet-gnome/dash-to-panel.git") + (url "https://github.com/home-sweet-gnome/dash-to-panel") (commit (string-append "v" version)))) (sha256 (base32 @@ -462,7 +462,7 @@ (define-public gnome-shell-extension-noannoyance (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/BjoernDaase/noannoyance.git") + (url "https://github.com/BjoernDaase/noannoyance") (commit "e37b5b3c31f577b4698bc6659bc9fec5ea9ac5d4"))) (sha256 (base32 @@ -485,7 +485,7 @@ (define-public gnome-shell-extension-paperwm (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/paperwm/PaperWM.git") + (url "https://github.com/paperwm/PaperWM") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -522,7 +522,7 @@ (define-public numix-gtk-theme (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/numixproject/numix-gtk-theme.git") + (url "https://github.com/numixproject/numix-gtk-theme") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -564,7 +564,7 @@ (define-public papirus-icon-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PapirusDevelopmentTeam/papirus-icon-theme.git") + (url "https://github.com/PapirusDevelopmentTeam/papirus-icon-theme") (commit tag))) (sha256 (base32 @@ -597,7 +597,7 @@ (define-public vala-language-server (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/benwaffle/vala-language-server.git") + (url "https://github.com/benwaffle/vala-language-server") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 2f390c6955..78609b571b 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5384,7 +5384,7 @@ (define-public gusb (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hughsie/libgusb.git") + (url "https://github.com/hughsie/libgusb") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -8446,7 +8446,7 @@ (define-public arc-theme (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/NicoHood/arc-theme.git") + (url "https://github.com/NicoHood/arc-theme") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -8489,7 +8489,7 @@ (define-public faba-icon-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/snwh/faba-icon-theme.git") + (url "https://github.com/snwh/faba-icon-theme") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -8522,7 +8522,7 @@ (define-public moka-icon-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/snwh/moka-icon-theme.git") + (url "https://github.com/snwh/moka-icon-theme") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -8545,7 +8545,7 @@ (define-public arc-icon-theme (origin (method git-fetch) (uri (git-reference - (url "https://github.com/horst3180/arc-icon-theme.git") + (url "https://github.com/horst3180/arc-icon-theme") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -9416,7 +9416,7 @@ (define-public workrave (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rcaelers/workrave.git") + (url "https://github.com/rcaelers/workrave") (commit (string-append "v" (string-map (match-lambda (#\. #\_) (chr chr)) version))))) @@ -10204,7 +10204,7 @@ (define-public libratbag (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libratbag/libratbag.git") + (url "https://github.com/libratbag/libratbag") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -10271,7 +10271,7 @@ (define-public piper (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libratbag/piper.git") + (url "https://github.com/libratbag/piper") (commit version))) (sha256 (base32 "00vrcsbsv2477l1ncpyzc61lhxgac84dsgr3sjs8qxw3nh1gaasv")) @@ -10338,7 +10338,7 @@ (define-public parlatype (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gkarsay/parlatype.git") + (url "https://github.com/gkarsay/parlatype") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index fa430837f9..5da18a22b5 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -1465,7 +1465,7 @@ (define-public firefox-decrypt (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Unode/firefox_decrypt.git") + (url "https://github.com/Unode/firefox_decrypt") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 58d6b00fc4..2c31632db6 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -227,7 +227,7 @@ (define-public go-1.14 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/golang/go.git") + (url "https://github.com/golang/go") (commit (string-append "go" version)))) (file-name (git-file-name name version)) (sha256 @@ -433,7 +433,7 @@ (define-public go-github-com-alsm-ioprogress (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alsm/ioprogress.git") + (url "https://github.com/alsm/ioprogress") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -459,7 +459,7 @@ (define-public go-github-com-aki237-nscjar (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/aki237/nscjar.git") + (url "https://github.com/aki237/nscjar") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -509,7 +509,7 @@ (define-public go-gopkg.in-tomb.v2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/go-tomb/tomb.git") + (url "https://github.com/go-tomb/tomb") (commit commit))) (file-name (string-append name "-" version ".tar.gz")) (sha256 @@ -862,7 +862,7 @@ (define-public go-github-com-burntsushi-toml (origin (method git-fetch) (uri (git-reference - (url "https://github.com/BurntSushi/toml.git") + (url "https://github.com/BurntSushi/toml") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -887,7 +887,7 @@ (define-public go-github-com-getsentry-raven-go (origin (method git-fetch) (uri (git-reference - (url "https://github.com/getsentry/raven-go.git") + (url "https://github.com/getsentry/raven-go") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -916,7 +916,7 @@ (define-public go-github-com-hashicorp-go-version (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hashicorp/go-version.git") + (url "https://github.com/hashicorp/go-version") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -946,7 +946,7 @@ (define-public go-github-com-jpillora-backoff (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jpillora/backoff.git") + (url "https://github.com/jpillora/backoff") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -969,7 +969,7 @@ (define-public go-github-com-stretchr-objx (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stretchr/objx.git") + (url "https://github.com/stretchr/objx") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -992,7 +992,7 @@ (define-public go-github-com-stretchr-testify (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stretchr/testify.git") + (url "https://github.com/stretchr/testify") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1031,7 +1031,7 @@ (define-public go-github-com-tevino-abool (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tevino/abool.git") + (url "https://github.com/tevino/abool") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1056,7 +1056,7 @@ (define-public go-github-com-blang-semver (origin (method git-fetch) (uri (git-reference - (url "https://github.com/blang/semver.git") + (url "https://github.com/blang/semver") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1080,7 +1080,7 @@ (define-public go-github-com-emicklei-go-restful (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emicklei/go-restful.git") + (url "https://github.com/emicklei/go-restful") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1106,7 +1106,7 @@ (define-public go-github-com-google-cadvisor (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/cadvisor.git") + (url "https://github.com/google/cadvisor") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1132,7 +1132,7 @@ (define-public go-github-com-google-gofuzz (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/gofuzz.git") + (url "https://github.com/google/gofuzz") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1157,7 +1157,7 @@ (define-public go-github-com-gorilla-context (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gorilla/context.git") + (url "https://github.com/gorilla/context") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1181,7 +1181,7 @@ (define-public go-github-com-gorilla-mux (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gorilla/mux.git") + (url "https://github.com/gorilla/mux") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1207,7 +1207,7 @@ (define-public go-github-com-jonboulle-clockwork (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jonboulle/clockwork.git") + (url "https://github.com/jonboulle/clockwork") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1329,7 +1329,7 @@ (define-public go-github-com-spf13-pflag (origin (method git-fetch) (uri (git-reference - (url "https://github.com/spf13/pflag.git") + (url "https://github.com/spf13/pflag") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1356,7 +1356,7 @@ (define-public go-github-com-spf13-viper (origin (method git-fetch) (uri (git-reference - (url "https://github.com/spf13/viper.git") + (url "https://github.com/spf13/viper") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1493,7 +1493,7 @@ (define-public go-github-com-sirupsen-logrus (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sirupsen/logrus.git") + (url "https://github.com/sirupsen/logrus") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1522,7 +1522,7 @@ (define-public go-github-com-rifflock-lfshook (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rifflock/lfshook.git") + (url "https://github.com/rifflock/lfshook") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1655,7 +1655,7 @@ (define-public go-github-com-docker-go-connections (origin (method git-fetch) (uri (git-reference - (url "https://github.com/docker/go-connections.git") + (url "https://github.com/docker/go-connections") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1682,7 +1682,7 @@ (define-public go-github-com-docker-machine (origin (method git-fetch) (uri (git-reference - (url "https://github.com/docker/machine.git") + (url "https://github.com/docker/machine") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1709,7 +1709,7 @@ (define-public go-github-com-gorhill-cronexpr (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gorhill/cronexpr.git") + (url "https://github.com/gorhill/cronexpr") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2242,7 +2242,7 @@ (define-public go-github-com-libp2p-go-flow-metrics (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libp2p/go-flow-metrics.git") + (url "https://github.com/libp2p/go-flow-metrics") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2268,7 +2268,7 @@ (define-public go-github-com-davecgh-go-spew (origin (method git-fetch) (uri (git-reference - (url "https://github.com/davecgh/go-spew.git") + (url "https://github.com/davecgh/go-spew") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2308,7 +2308,7 @@ (define-public go-github-com-btcsuite-btclog (origin (method git-fetch) (uri (git-reference - (url "https://github.com/btcsuite/btclog.git") + (url "https://github.com/btcsuite/btclog") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2334,7 +2334,7 @@ (define-public go-github-com-btcsuite-btcd-btcec (origin (method git-fetch) (uri (git-reference - (url "https://github.com/btcsuite/btcd.git") + (url "https://github.com/btcsuite/btcd") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2370,7 +2370,7 @@ (define-public go-github-com-minio-sha256-simd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/minio/sha256-simd.git") + (url "https://github.com/minio/sha256-simd") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2406,7 +2406,7 @@ (define-public go-github-com-libp2p-go-libp2p-crypto (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libp2p/go-libp2p-crypto.git") + (url "https://github.com/libp2p/go-libp2p-crypto") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2436,7 +2436,7 @@ (define-public go-github-com-mr-tron-base58 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mr-tron/base58.git") + (url "https://github.com/mr-tron/base58") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2463,7 +2463,7 @@ (define-public go-github-com-gxed-hashland-keccakpg (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gxed/hashland.git") + (url "https://github.com/gxed/hashland") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2489,7 +2489,7 @@ (define-public go-github-com-minio-blake2b-simd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/minio/blake2b-simd.git") + (url "https://github.com/minio/blake2b-simd") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2519,7 +2519,7 @@ (define-public go-github-com-spaolacci-murmur3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/spaolacci/murmur3.git") + (url "https://github.com/spaolacci/murmur3") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2545,7 +2545,7 @@ (define-public go-github-com-twmb-murmur3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/twmb/murmur3.git") + (url "https://github.com/twmb/murmur3") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2573,7 +2573,7 @@ (define-public go-github-com-multiformats-go-multihash (origin (method git-fetch) (uri (git-reference - (url "https://github.com/multiformats/go-multihash.git") + (url "https://github.com/multiformats/go-multihash") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2604,7 +2604,7 @@ (define-public go-github-com-libp2p-go-libp2p-peer (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libp2p/go-libp2p-peer.git") + (url "https://github.com/libp2p/go-libp2p-peer") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2639,7 +2639,7 @@ (define-public go-github-com-libp2p-go-libp2p-protocol (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libp2p/go-libp2p-protocol.git") + (url "https://github.com/libp2p/go-libp2p-protocol") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2664,7 +2664,7 @@ (define-public go-github-com-libp2p-go-libp2p-metrics (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libp2p/go-libp2p-metrics.git") + (url "https://github.com/libp2p/go-libp2p-metrics") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2703,7 +2703,7 @@ (define-public go-github-com-mitchellh-go-homedir (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mitchellh/go-homedir.git") + (url "https://github.com/mitchellh/go-homedir") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2764,7 +2764,7 @@ (define-public go-github-com-multiformats-go-multiaddr (origin (method git-fetch) (uri (git-reference - (url "https://github.com/multiformats/go-multiaddr.git") + (url "https://github.com/multiformats/go-multiaddr") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2806,7 +2806,7 @@ (define-public go-github-com-multiformats-go-multiaddr-net (origin (method git-fetch) (uri (git-reference - (url "https://github.com/multiformats/go-multiaddr-net.git") + (url "https://github.com/multiformats/go-multiaddr-net") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2844,7 +2844,7 @@ (define-public go-github-com-whyrusleeping-tar-utils (origin (method git-fetch) (uri (git-reference - (url "https://github.com/whyrusleeping/tar-utils.git") + (url "https://github.com/whyrusleeping/tar-utils") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2869,7 +2869,7 @@ (define-public go-github-com-cheekybits-is (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cheekybits/is.git") + (url "https://github.com/cheekybits/is") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2901,7 +2901,7 @@ (define-public go-github-com-sabhiram-go-gitignore (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sabhiram/go-gitignore.git") + (url "https://github.com/sabhiram/go-gitignore") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2926,7 +2926,7 @@ (define-public go-github-com-urfave-cli (origin (method git-fetch) (uri (git-reference - (url "https://github.com/urfave/cli.git") + (url "https://github.com/urfave/cli") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3055,7 +3055,7 @@ (define-public go-github-com-whyrusleeping-json-filter (origin (method git-fetch) (uri (git-reference - (url "https://github.com/whyrusleeping/json-filter.git") + (url "https://github.com/whyrusleeping/json-filter") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3081,7 +3081,7 @@ (define-public go-github-com-whyrusleeping-progmeter (origin (method git-fetch) (uri (git-reference - (url "https://github.com/whyrusleeping/progmeter.git") + (url "https://github.com/whyrusleeping/progmeter") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3106,7 +3106,7 @@ (define-public go-github-com-whyrusleeping-stump (origin (method git-fetch) (uri (git-reference - (url "https://github.com/whyrusleeping/stump.git") + (url "https://github.com/whyrusleeping/stump") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3131,7 +3131,7 @@ (define-public go-github-com-kr-fs (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kr/fs.git") + (url "https://github.com/kr/fs") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3178,7 +3178,7 @@ (define-public go-github-com-kr-pretty (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kr/pretty.git") + (url "https://github.com/kr/pretty") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3201,7 +3201,7 @@ (define-public go-github-com-kr-text (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kr/text.git") + (url "https://github.com/kr/text") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3546,7 +3546,7 @@ (define-public go-github-com-pkg-errors (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pkg/errors.git") + (url "https://github.com/pkg/errors") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3768,7 +3768,7 @@ (define-public go-github-com-fatih-color (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fatih/color.git") + (url "https://github.com/fatih/color") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3790,7 +3790,7 @@ (define-public go-github-com-google-go-cmp-cmp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/go-cmp.git") + (url "https://github.com/google/go-cmp") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3838,7 +3838,7 @@ (define (go-gotest-tools-source version sha256-base32-hash) (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools.git") + (url "https://github.com/gotestyourself/gotest.tools") (commit (string-append "v" version)))) (file-name (git-file-name "go-gotest-tools" version)) (sha256 @@ -3914,7 +3914,7 @@ (define-public gotestsum (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gotestyourself/gotestsum.git") + (url "https://github.com/gotestyourself/gotestsum") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3961,7 +3961,7 @@ (define-public go-github-com-golang-protobuf-proto (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/golang/protobuf.git") + (url "https://github.com/golang/protobuf") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3986,7 +3986,7 @@ (define-public go-github-com-mattn-go-zglob (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mattn/go-zglob.git") + (url "https://github.com/mattn/go-zglob") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm index 6963da9dff..734599483b 100644 --- a/gnu/packages/gpodder.scm +++ b/gnu/packages/gpodder.scm @@ -43,7 +43,7 @@ (define-public gpodder (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gpodder/gpodder.git") + (url "https://github.com/gpodder/gpodder") (commit version))) (sha256 (base32 diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 762ee30632..93460bb38e 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -216,7 +216,7 @@ (define-public r-rbiofabric (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wjrl/RBioFabric.git") + (url "https://github.com/wjrl/RBioFabric") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -240,7 +240,7 @@ (define-public python-plotly (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/plotly/plotly.py.git") + (url "https://github.com/plotly/plotly.py") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -318,7 +318,7 @@ (define-public python-louvain (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vtraag/louvain-igraph.git") + (url "https://github.com/vtraag/louvain-igraph") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -351,7 +351,7 @@ (define-public faiss (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/facebookresearch/faiss.git") + (url "https://github.com/facebookresearch/faiss") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index e8bff9b86a..5b18d14893 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -160,7 +160,7 @@ (define-public autotrace (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/autotrace/autotrace.git") + (url "https://github.com/autotrace/autotrace") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -301,7 +301,7 @@ (define-public assimp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/assimp/assimp.git") + (url "https://github.com/assimp/assimp") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -511,7 +511,7 @@ (define-public ogre (origin (method git-fetch) (uri (git-reference - (url "https://github.com/OGRECave/ogre.git") + (url "https://github.com/OGRECave/ogre") (commit (string-append "v" version)) (recursive? #t))) ;for Dear ImGui submodule (file-name (git-file-name name version)) @@ -628,7 +628,7 @@ (define-public openimageio (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/OpenImageIO/oiio.git") + (url "https://github.com/OpenImageIO/oiio") (commit (string-append "Release-" version)))) (file-name (git-file-name name version)) (sha256 @@ -948,7 +948,7 @@ (define-public brdf-explorer (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wdas/brdf.git") + (url "https://github.com/wdas/brdf") (commit commit))) (sha256 (base32 @@ -1217,7 +1217,7 @@ (define-public opencsg (origin (method git-fetch) (uri (git-reference - (url "https://github.com/floriankirsch/OpenCSG.git") + (url "https://github.com/floriankirsch/OpenCSG") (commit (string-append "opencsg-" (string-map dot-to-dash version) "-release")))) diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm index 815a35a974..0f2afb99de 100644 --- a/gnu/packages/graphviz.scm +++ b/gnu/packages/graphviz.scm @@ -211,7 +211,7 @@ (define-public python-pygraphviz (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pygraphviz/pygraphviz.git") + (url "https://github.com/pygraphviz/pygraphviz") (commit (string-append "pygraphviz-" version)))) (file-name (string-append "pygraphviz-" version "-checkout")) (sha256 diff --git a/gnu/packages/groff.scm b/gnu/packages/groff.scm index 5fe353a901..ae896cf9fd 100644 --- a/gnu/packages/groff.scm +++ b/gnu/packages/groff.scm @@ -177,7 +177,7 @@ (define-public roffit (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bagder/roffit.git") + (url "https://github.com/bagder/roffit") (commit commit))) (file-name (string-append "roffit-" commit "-checkout")) (sha256 diff --git a/gnu/packages/groovy.scm b/gnu/packages/groovy.scm index f5d0416f36..e21c4e3775 100644 --- a/gnu/packages/groovy.scm +++ b/gnu/packages/groovy.scm @@ -36,7 +36,7 @@ (define java-groovy-bootstrap (origin (method git-fetch) (uri (git-reference - (url "https://github.com/apache/groovy.git") + (url "https://github.com/apache/groovy") (commit (string-append "GROOVY_" (string-map (lambda (x) (if (eq? x #\.) #\_ x)) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 3cadccd25c..e3c097943f 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1741,7 +1741,7 @@ (define-public clipit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/CristianHenzel/ClipIt.git") + (url "https://github.com/CristianHenzel/ClipIt") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1856,7 +1856,7 @@ (define-public yad (origin (method git-fetch) (uri (git-reference - (url "https://github.com/v1cont/yad.git") + (url "https://github.com/v1cont/yad") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 160bf63a48..59266a045b 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -234,7 +234,7 @@ (define-public guildhall (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ijp/guildhall.git") + (url "https://github.com/ijp/guildhall") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -1350,7 +1350,7 @@ (define-public guile-dbd-postgresql (origin (method git-fetch) (uri (git-reference - (url "https://github.com/opencog/guile-dbi.git") + (url "https://github.com/opencog/guile-dbi") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1850,7 +1850,7 @@ (define-public guile-miniadapton (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fisherdj/miniAdapton.git") + (url "https://github.com/fisherdj/miniAdapton") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -2047,7 +2047,7 @@ (define-public guile-minikanren (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ijp/minikanren.git") + (url "https://github.com/ijp/minikanren") (commit "e844d85512f8c055d3f96143ee506007389a25e3"))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3104,7 +3104,7 @@ (define-public guile-ffi-fftw (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lloda/guile-ffi-fftw.git") + (url "https://github.com/lloda/guile-ffi-fftw") (commit commit))) (file-name (git-file-name "guile-ffi-fftw" version)) (sha256 @@ -3540,7 +3540,7 @@ (define-public guile-irc (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rekado/guile-irc.git") + (url "https://github.com/rekado/guile-irc") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index a32bd33293..6430633694 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -596,7 +596,7 @@ (define-public guile-gdbm-ffi (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ijp/guile-gdbm.git") + (url "https://github.com/ijp/guile-gdbm") (commit "fa1d5b6231d0e4d096687b378c025f2148c5f246"))) (file-name (string-append name "-" version "-checkout")) (patches (search-patches diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index 6a2e2c695b..211a5a34ac 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -294,7 +294,7 @@ (define-public wavemon (origin (method git-fetch) (uri (git-reference - (url "https://github.com/uoaerg/wavemon.git") + (url "https://github.com/uoaerg/wavemon") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -338,7 +338,7 @@ (define-public rkdeveloptool (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rockchip-linux/rkdeveloptool.git") + (url "https://github.com/rockchip-linux/rkdeveloptool") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm index 5b6f0401e4..0197046453 100644 --- a/gnu/packages/haskell-apps.scm +++ b/gnu/packages/haskell-apps.scm @@ -149,7 +149,7 @@ (define-public corrode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jameysharp/corrode.git") + (url "https://github.com/jameysharp/corrode") (commit "b6699fb2fa552a07c6091276285a44133e5c9789"))) (file-name (git-file-name name version)) (sha256 @@ -624,7 +624,7 @@ (define-public kmonad (origin (method git-fetch) (uri (git-reference - (url "https://github.com/david-janssen/kmonad.git") + (url "https://github.com/david-janssen/kmonad") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 0508916ead..2387dfb190 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -5129,7 +5129,7 @@ (define ghc-haddock-test (origin (method git-fetch) (uri (git-reference - (url "https://github.com/haskell/haddock.git") + (url "https://github.com/haskell/haddock") (commit (string-append "haddock-" version "-release")))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/hexedit.scm b/gnu/packages/hexedit.scm index e1a029167a..c2c6228548 100644 --- a/gnu/packages/hexedit.scm +++ b/gnu/packages/hexedit.scm @@ -38,7 +38,7 @@ (define-public hexedit (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pixel/hexedit.git") + (url "https://github.com/pixel/hexedit") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/i2p.scm b/gnu/packages/i2p.scm index 0061701304..537aeaf76c 100644 --- a/gnu/packages/i2p.scm +++ b/gnu/packages/i2p.scm @@ -35,7 +35,7 @@ (define-public i2pd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PurpleI2P/i2pd.git") + (url "https://github.com/PurpleI2P/i2pd") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/ibus.scm b/gnu/packages/ibus.scm index b31d60f06c..b48f21b551 100644 --- a/gnu/packages/ibus.scm +++ b/gnu/packages/ibus.scm @@ -305,7 +305,7 @@ (define-public librime (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/librime.git") + (url "https://github.com/rime/librime") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -356,7 +356,7 @@ (define-public rime-data (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/plum.git") + (url "https://github.com/rime/plum") (commit "397d601dd22cfc857613973724724b8f44db9f9c"))) (file-name "plum-checkout") (sha256 @@ -403,7 +403,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-array.git") + (url "https://github.com/rime/rime-array") (commit "93cc99238f120606a076220ec4ddcad164f6396a"))) (file-name "rime-array-checkout") (sha256 @@ -413,7 +413,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-bopomofo.git") + (url "https://github.com/rime/rime-bopomofo") (commit "ed25098386f5efd3d70b08650f0d1b70c41c11a3"))) (file-name "rime-bopomofo-checkout") (sha256 @@ -423,7 +423,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-cangjie.git") + (url "https://github.com/rime/rime-cangjie") (commit "5fd8ce6f64039e505ca02655a621f2e830b97c19"))) (file-name "rime-cangjie-checkout") (sha256 @@ -433,7 +433,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-cantonese.git") + (url "https://github.com/rime/rime-cantonese") (commit "e06fe8e79d7d64db2f2b6339aabc004d8cbc1f67"))) (file-name "rime-cantonese-checkout") (sha256 @@ -443,7 +443,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-combo-pinyin.git") + (url "https://github.com/rime/rime-combo-pinyin") (commit "67b29cdc786928ea46b43a9c660dee3db8f1adff"))) (file-name "rime-combo-pinyin-checkout") (sha256 @@ -453,7 +453,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-double-pinyin.git") + (url "https://github.com/rime/rime-double-pinyin") (commit "69bf85d4dfe8bac139c36abbd68d530b8b6622ea"))) (file-name "rime-double-pinyin-checkout") (sha256 @@ -463,7 +463,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-emoji.git") + (url "https://github.com/rime/rime-emoji") (commit "c99d34e4a837349e4679a110bb4b94f71fe015ae"))) (file-name "rime-emoji-checkout") (sha256 @@ -473,7 +473,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-essay.git") + (url "https://github.com/rime/rime-essay") (commit "88055afa3752e4582fa887765d962a30e02bb1fa"))) (file-name "rime-essay-checkout") (sha256 @@ -483,7 +483,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-ipa.git") + (url "https://github.com/rime/rime-ipa") (commit "22b71710e029bcb412e9197192a638ab11bc2abf"))) (file-name "rime-ipa-checkout") (sha256 @@ -493,7 +493,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-jyutping.git") + (url "https://github.com/rime/rime-jyutping") (commit "6fe0d727b3178feabd0f01e6cd82599202764735"))) (file-name "rime-jyutping-checkout") (sha256 @@ -503,7 +503,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-luna-pinyin.git") + (url "https://github.com/rime/rime-luna-pinyin") (commit "f1268e192ca88b9526467ce04ac3e47c837891ad"))) (file-name "rime-luna-pinyin-checkout") (sha256 @@ -513,7 +513,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-middle-chinese.git") + (url "https://github.com/rime/rime-middle-chinese") (commit "ed6d44f8d0bedf6e0c1c3183a270f8f01a211a40"))) (file-name "rime-middle-chinese-checkout") (sha256 @@ -523,7 +523,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-pinyin-simp.git") + (url "https://github.com/rime/rime-pinyin-simp") (commit "b73df7fc0994912ce785462b3be569ae81258ac2"))) (file-name "rime-pinyin-simp-checkout") (sha256 @@ -533,7 +533,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-prelude.git") + (url "https://github.com/rime/rime-prelude") (commit "8a52b4f86a59f3eb602f9a4cf6a680a67c15df8c"))) (file-name "rime-prelude-checkout") (sha256 @@ -543,7 +543,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-quick.git") + (url "https://github.com/rime/rime-quick") (commit "3fe5911ba608cb2df1b6301b76ad1573bd482a76"))) (file-name "rime-quick-checkout") (sha256 @@ -553,7 +553,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-scj.git") + (url "https://github.com/rime/rime-scj") (commit "cab5a0858765eff0553dd685a2d61d5536e9149c"))) (file-name "rime-scj-checkout") (sha256 @@ -563,7 +563,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-soutzoe.git") + (url "https://github.com/rime/rime-soutzoe") (commit "beeaeca72d8e17dfd1e9af58680439e9012987dc"))) (file-name "rime-soutzoe-checkout") (sha256 @@ -573,7 +573,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-stenotype.git") + (url "https://github.com/rime/rime-stenotype") (commit "f3e9189d5ce33c55d3936cc58e39d0c88b3f0c88"))) (file-name "rime-stenotype-checkout") (sha256 @@ -583,7 +583,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-stroke.git") + (url "https://github.com/rime/rime-stroke") (commit "ea8576d1accd6fda339e96b415caadb56e2a07d1"))) (file-name "rime-stroke-checkout") (sha256 @@ -593,7 +593,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-terra-pinyin.git") + (url "https://github.com/rime/rime-terra-pinyin") (commit "492aaf914f9de37cc9d26b846dc693116de70ae8"))) (file-name "rime-terra-pinyin-checkout") (sha256 @@ -603,7 +603,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-wubi.git") + (url "https://github.com/rime/rime-wubi") (commit "dd052ee158a38cb791755318b1aef9b4a3ed0316"))) (file-name "rime-wubi-checkout") (sha256 @@ -613,7 +613,7 @@ (define-public rime-data ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/rime-wugniu.git") + (url "https://github.com/rime/rime-wugniu") (commit "abd1ee98efbf170258fcf43875c21a4259e00b61"))) (file-name "rime-wugniu-checkout") (sha256 @@ -633,7 +633,7 @@ (define-public ibus-rime (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rime/ibus-rime.git") + (url "https://github.com/rime/ibus-rime") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm index a11b1b89d3..ea6380167d 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -587,7 +587,7 @@ (define-public vxl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vxl/vxl.git") + (url "https://github.com/vxl/vxl") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -629,7 +629,7 @@ (define-public vxl-1 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vxl/vxl.git") + (url "https://github.com/vxl/vxl") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -850,7 +850,7 @@ (define-public itk-snap (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pyushkevich/c3d.git") + (url "https://github.com/pyushkevich/c3d") (commit commit))) (file-name (git-file-name "c3d" version)) (sha256 @@ -865,7 +865,7 @@ (define-public itk-snap (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pyushkevich/greedy.git") + (url "https://github.com/pyushkevich/greedy") (commit commit))) (file-name (git-file-name "greedy" version)) (sha256 diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index 8303ba38f9..610a3d77bf 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -191,7 +191,7 @@ (define-public sxiv (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/muennich/sxiv.git") + (url "https://github.com/muennich/sxiv") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -237,7 +237,7 @@ (define-public viewnior (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hellosiyan/Viewnior.git") + (url "https://github.com/hellosiyan/Viewnior") (commit (string-append name "-" version)))) (file-name (git-file-name name version)) (sha256 @@ -289,7 +289,7 @@ (define-public catimg (origin (method git-fetch) (uri (git-reference - (url "https://github.com/posva/catimg.git") + (url "https://github.com/posva/catimg") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -488,7 +488,7 @@ (define-public qview (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jurplel/qView.git") + (url "https://github.com/jurplel/qView") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 75b24ec0a0..3fdc6db8a1 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -309,7 +309,7 @@ (define-public libimagequant (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ImageOptim/libimagequant.git") + (url "https://github.com/ImageOptim/libimagequant") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -333,7 +333,7 @@ (define-public pngquant (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kornelski/pngquant.git") + (url "https://github.com/kornelski/pngquant") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -589,7 +589,7 @@ (define-public leptonica (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DanBloomberg/leptonica.git") + (url "https://github.com/DanBloomberg/leptonica") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1357,7 +1357,7 @@ (define-public jasper (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mdadams/jasper.git") + (url "https://github.com/mdadams/jasper") (commit (string-append "version-" version)))) (file-name (git-file-name name version)) (sha256 @@ -1380,7 +1380,7 @@ (define-public zimg (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sekrit-twc/zimg.git") + (url "https://github.com/sekrit-twc/zimg") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 @@ -1408,7 +1408,7 @@ (define-public perceptualdiff (origin (method git-fetch) (uri (git-reference - (url "https://github.com/myint/perceptualdiff.git") + (url "https://github.com/myint/perceptualdiff") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1482,7 +1482,7 @@ (define-public stb-image-for-extempore (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/extemporelang/stb.git") + (url "https://github.com/extemporelang/stb") (commit commit))) (sha256 (base32 @@ -1688,7 +1688,7 @@ (define-public gpick (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/thezbyg/gpick.git") + (url "https://github.com/thezbyg/gpick") (commit (string-append name "-" version)))) (file-name (git-file-name name version)) (sha256 @@ -1751,7 +1751,7 @@ (define-public flameshot (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lupoDharkael/flameshot.git") + (url "https://github.com/lupoDharkael/flameshot") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1864,7 +1864,7 @@ (define-public grim (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emersion/grim.git") + (url "https://github.com/emersion/grim") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1890,7 +1890,7 @@ (define-public slurp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emersion/slurp.git") + (url "https://github.com/emersion/slurp") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 15f174f8b6..ba3c71d964 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -37,7 +37,7 @@ (define-public go-github-com-ipfs-go-ipfs-cmdkit-files (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ipfs/go-ipfs-cmdkit.git") + (url "https://github.com/ipfs/go-ipfs-cmdkit") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -65,7 +65,7 @@ (define-public go-github-com-ipfs-go-ipfs-api (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ipfs/go-ipfs-api.git") + (url "https://github.com/ipfs/go-ipfs-api") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -110,7 +110,7 @@ (define-public gx (origin (method git-fetch) (uri (git-reference - (url "https://github.com/whyrusleeping/gx.git") + (url "https://github.com/whyrusleeping/gx") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/java-graphics.scm b/gnu/packages/java-graphics.scm index bc9972eb0a..f7a89021cd 100644 --- a/gnu/packages/java-graphics.scm +++ b/gnu/packages/java-graphics.scm @@ -96,7 +96,7 @@ (define-public java-marlin-renderer (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bourgesl/marlin-renderer.git") + (url "https://github.com/bourgesl/marlin-renderer") (commit (string-append "v" (string-map (match-lambda (#\. #\_) (c c)) diff --git a/gnu/packages/java-maths.scm b/gnu/packages/java-maths.scm index 748ae67b58..97343e0a16 100644 --- a/gnu/packages/java-maths.scm +++ b/gnu/packages/java-maths.scm @@ -37,7 +37,7 @@ (define-public java-jblas (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mikiobraun/jblas.git") + (url "https://github.com/mikiobraun/jblas") (commit (string-append "jblas-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 170936a0ff..289bdd74d4 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -2654,7 +2654,7 @@ (define-public javacc-4 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/javacc/javacc.git") + (url "https://github.com/javacc/javacc") (commit "release_41"))) (file-name (string-append "javacc-" version "-checkout")) (sha256 @@ -2703,7 +2703,7 @@ (define-public javacc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/javacc/javacc.git") + (url "https://github.com/javacc/javacc") (commit version))) (file-name (git-file-name "javacc" version)) (sha256 @@ -3329,7 +3329,7 @@ (define-public java-javaee-servletapi (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/javaee/servlet-spec.git") + (url "https://github.com/javaee/servlet-spec") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4598,7 +4598,7 @@ (define-public java-cglib (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cglib/cglib.git") + (url "https://github.com/cglib/cglib") (commit (string-append "RELEASE_" (string-map (lambda (c) (if (char=? c #\.) #\_ c)) @@ -8984,7 +8984,7 @@ (define-public java-cofoja (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nhatminhle/cofoja.git") + (url "https://github.com/nhatminhle/cofoja") (commit (string-append "v" version)))) (file-name (string-append "java-cofoja-" version "-checkout")) (sha256 @@ -9386,7 +9386,7 @@ (define-public java-testng (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cbeust/testng.git") + (url "https://github.com/cbeust/testng") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -9464,7 +9464,7 @@ (define-public java-jnacl (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/neilalexander/jnacl.git") + (url "https://github.com/neilalexander/jnacl") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10047,7 +10047,7 @@ (define-public java-jeromq (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zeromq/jeromq.git") + (url "https://github.com/zeromq/jeromq") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -10834,7 +10834,7 @@ (define-public java-xmlunit ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/xmlunit/test-resources.git") + (url "https://github.com/xmlunit/test-resources") (commit "a590d2ae865c3e0455691d76ba8eefccc2215aec"))) (file-name "java-xmlunit-test-resources") (sha256 @@ -11439,7 +11439,7 @@ (define-public java-eclipse-sisu-plexus (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/eclipse/sisu.plexus.git") + (url "https://github.com/eclipse/sisu.plexus") (commit (string-append "releases/" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/javascript.scm b/gnu/packages/javascript.scm index 97c3a571a1..d5ff5bffee 100644 --- a/gnu/packages/javascript.scm +++ b/gnu/packages/javascript.scm @@ -188,7 +188,7 @@ (define-public js-json2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/douglascrockford/JSON-js.git") + (url "https://github.com/douglascrockford/JSON-js") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -303,7 +303,7 @@ (define-public js-requirejs (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/requirejs/requirejs.git") + (url "https://github.com/requirejs/requirejs") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/jrnl.scm b/gnu/packages/jrnl.scm index 5b57cc7c9b..85d3863e05 100644 --- a/gnu/packages/jrnl.scm +++ b/gnu/packages/jrnl.scm @@ -38,7 +38,7 @@ (define-public jrnl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/maebert/jrnl.git") + (url "https://github.com/maebert/jrnl") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/julia.scm b/gnu/packages/julia.scm index 8db5e66131..78488a4e99 100644 --- a/gnu/packages/julia.scm +++ b/gnu/packages/julia.scm @@ -61,7 +61,7 @@ (define libuv-julia (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/JuliaLang/libuv.git") + (url "https://github.com/JuliaLang/libuv") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -196,7 +196,7 @@ (define-public libwhich (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vtjnash/libwhich.git") + (url "https://github.com/vtjnash/libwhich") ;; fixes linux-vdso.so related tests (commit "87cffe10080c98e7b5786c5166e420bf1ada1d41"))) (file-name (string-append name "-" version "-checkout")) diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm index 3f16bc27f1..f826ebd171 100644 --- a/gnu/packages/jupyter.scm +++ b/gnu/packages/jupyter.scm @@ -145,7 +145,7 @@ (define-public xeus (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/QuantStack/xeus.git") + (url "https://github.com/QuantStack/xeus") (commit version))) (sha256 (base32 diff --git a/gnu/packages/kodi.scm b/gnu/packages/kodi.scm index 742172a969..556dd6b4e5 100644 --- a/gnu/packages/kodi.scm +++ b/gnu/packages/kodi.scm @@ -90,7 +90,7 @@ (define-public crossguid (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/graeme-hill/crossguid.git") + (url "https://github.com/graeme-hill/crossguid") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -140,7 +140,7 @@ (define libdvdnav/kodi (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xbmc/libdvdnav.git") + (url "https://github.com/xbmc/libdvdnav") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -175,7 +175,7 @@ (define libdvdread/kodi (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xbmc/libdvdread.git") + (url "https://github.com/xbmc/libdvdread") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -210,7 +210,7 @@ (define libdvdcss/kodi (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xbmc/libdvdcss.git") + (url "https://github.com/xbmc/libdvdcss") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -273,7 +273,7 @@ (define-public kodi (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xbmc/xbmc.git") + (url "https://github.com/xbmc/xbmc") (commit (string-append version "-Leia")))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/language.scm b/gnu/packages/language.scm index c66718aa1e..366ea2c8e6 100644 --- a/gnu/packages/language.scm +++ b/gnu/packages/language.scm @@ -613,7 +613,7 @@ (define-public python2-tegaki-recognize ;; 'tegaki-recognize.in' are missing in the tarball. (method git-fetch) (uri (git-reference - (url "https://github.com/tegaki/tegaki.git") + (url "https://github.com/tegaki/tegaki") (commit commit))) (sha256 (base32 diff --git a/gnu/packages/lego.scm b/gnu/packages/lego.scm index 396b37ddd9..2067e45dd1 100644 --- a/gnu/packages/lego.scm +++ b/gnu/packages/lego.scm @@ -78,7 +78,7 @@ (define-public leocad (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/leozide/leocad.git") + (url "https://github.com/leozide/leocad") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/less.scm b/gnu/packages/less.scm index d449e0729e..f6ee355b68 100644 --- a/gnu/packages/less.scm +++ b/gnu/packages/less.scm @@ -63,7 +63,7 @@ (define-public lesspipe (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wofr06/lesspipe.git") + (url "https://github.com/wofr06/lesspipe") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm index ce958d86dc..7b13d98d95 100644 --- a/gnu/packages/libusb.scm +++ b/gnu/packages/libusb.scm @@ -128,7 +128,7 @@ (define-public libusb4java (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/usb4java/libusb4java.git") + (url "https://github.com/usb4java/libusb4java") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -356,7 +356,7 @@ (define-public libplist (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libimobiledevice/libplist.git") + (url "https://github.com/libimobiledevice/libplist") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -596,7 +596,7 @@ (define-public hidapi (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libusb/hidapi.git") + (url "https://github.com/libusb/hidapi") (commit (string-append "hidapi-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index e47bc80f6e..9fa7d0cd54 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1005,7 +1005,7 @@ (define-public acpi-call-linux-module (origin (method git-fetch) (uri (git-reference - (url "https://github.com/teleshoes/acpi_call.git") + (url "https://github.com/teleshoes/acpi_call") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1048,7 +1048,7 @@ (define-public rtl8812au-aircrack-ng-linux-module (origin (method git-fetch) (uri (git-reference - (url "https://github.com/aircrack-ng/rtl8812au.git") + (url "https://github.com/aircrack-ng/rtl8812au") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1094,7 +1094,7 @@ (define-public rtl8821ce-linux-module (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tomaspinho/rtl8821ce.git") + (url "https://github.com/tomaspinho/rtl8821ce") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1217,7 +1217,7 @@ (define-public v4l2loopback-linux-module (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/umlaeute/v4l2loopback.git") + (url "https://github.com/umlaeute/v4l2loopback") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3038,7 +3038,7 @@ (define-public inotify-tools (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rvoicilas/inotify-tools.git") + (url "https://github.com/rvoicilas/inotify-tools") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3117,7 +3117,7 @@ (define-public earlyoom (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rfjakob/earlyoom.git") + (url "https://github.com/rfjakob/earlyoom") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3413,7 +3413,7 @@ (define-public thin-provisioning-tools (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jthornber/thin-provisioning-tools.git") + (url "https://github.com/jthornber/thin-provisioning-tools") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3652,7 +3652,7 @@ (define-public lm-sensors (origin (method git-fetch) (uri (git-reference - (url "https://github.com/groeck/lm-sensors.git") + (url "https://github.com/groeck/lm-sensors") (commit (string-append "V" (string-join (string-split version #\.) "-"))))) (file-name (git-file-name name version)) @@ -5056,7 +5056,7 @@ (define-public thinkfan (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vmatare/thinkfan.git") + (url "https://github.com/vmatare/thinkfan") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5114,7 +5114,7 @@ (define-public tpacpi-bat (origin (method git-fetch) (uri (git-reference - (url "https://github.com/teleshoes/tpacpi-bat.git") + (url "https://github.com/teleshoes/tpacpi-bat") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5456,7 +5456,7 @@ (define-public haveged (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jirka-h/haveged.git") + (url "https://github.com/jirka-h/haveged") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5733,7 +5733,7 @@ (define-public radeontop (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clbr/radeontop.git") + (url "https://github.com/clbr/radeontop") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5887,7 +5887,7 @@ (define-public light (origin (method git-fetch) (uri (git-reference - (url "https://github.com/haikarainen/light.git") + (url "https://github.com/haikarainen/light") (commit (string-append "v" version)))) (sha256 (base32 "1a70zcf88ifsnwll486aicjnh48zisdf8f7vi34ihw61kdadsq9s")) @@ -5975,7 +5975,7 @@ (define-public tlp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linrunner/TLP.git") + (url "https://github.com/linrunner/TLP") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -6207,7 +6207,7 @@ (define-public proot (origin (method git-fetch) (uri (git-reference - (url "https://github.com/proot-me/PRoot.git") + (url "https://github.com/proot-me/PRoot") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6650,7 +6650,7 @@ (define-public mbpfan (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dgraziotin/mbpfan.git") + (url "https://github.com/dgraziotin/mbpfan") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6685,7 +6685,7 @@ (define-public psm2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/intel/opa-psm2.git") + (url "https://github.com/intel/opa-psm2") (commit (string-append "PSM2_" version)))) (file-name (git-file-name name version)) (sha256 @@ -6803,7 +6803,7 @@ (define-public go-netlink (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vishvananda/netlink.git") + (url "https://github.com/vishvananda/netlink") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6875,7 +6875,7 @@ (define-public genext2fs (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jeremie-koenig/genext2fs.git") + (url "https://github.com/jeremie-koenig/genext2fs") ;; 1.4.1-3 had a VCS tag but 1.4.1-4 doesn't. (commit "9ee43894634998b0b2b309d636f25c64314c9421"))) (file-name (git-file-name name version)) @@ -7028,7 +7028,7 @@ (define-public inputattach (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linuxwacom/input-wacom.git") + (url "https://github.com/linuxwacom/input-wacom") (commit (string-append "input-wacom-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/lirc.scm b/gnu/packages/lirc.scm index 510bc032f8..7b11f198e5 100644 --- a/gnu/packages/lirc.scm +++ b/gnu/packages/lirc.scm @@ -114,7 +114,7 @@ (define-public python-lirc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tompreston/python-lirc.git") + (url "https://github.com/tompreston/python-lirc") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 13c065c535..04c7c3e9ca 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -146,7 +146,7 @@ (define-public sbcl-fiveam (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sionescu/fiveam.git") + (url "https://github.com/sionescu/fiveam") (commit (string-append "v" version)))) (file-name (git-file-name "fiveam" version)) (sha256 @@ -176,7 +176,7 @@ (define-public sbcl-bordeaux-threads (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sionescu/bordeaux-threads.git") + (url "https://github.com/sionescu/bordeaux-threads") (commit (string-append "v" version)))) (sha256 (base32 "19i443fz3488v1pbbr9x24y8h8vlyhny9vj6c9jk5prm702awrp6")) @@ -209,7 +209,7 @@ (define-public sbcl-trivial-gray-streams (method git-fetch) (uri (git-reference - (url "https://github.com/trivial-gray-streams/trivial-gray-streams.git") + (url "https://github.com/trivial-gray-streams/trivial-gray-streams") (commit commit))) (sha256 (base32 "0b1pxlccmnagk9cbh4cy8s5k66g3x0gwib5shjwr24xvrji6lp94")) @@ -240,7 +240,7 @@ (define-public sbcl-fiasco (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joaotavora/fiasco.git") + (url "https://github.com/joaotavora/fiasco") (commit commit))) (file-name (git-file-name "fiasco" version)) (sha256 @@ -274,7 +274,7 @@ (define-public sbcl-flexi-streams (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edicl/flexi-streams.git") + (url "https://github.com/edicl/flexi-streams") (commit (string-append "v" version)))) (file-name (git-file-name "flexi-streams" version)) (sha256 @@ -311,7 +311,7 @@ (define-public sbcl-cl-ppcre (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edicl/cl-ppcre.git") + (url "https://github.com/edicl/cl-ppcre") (commit (string-append "v" version)))) (file-name (git-file-name "cl-ppcre" version)) (sha256 @@ -338,7 +338,7 @@ (define sbcl-cl-unicode-base (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edicl/cl-unicode.git") + (url "https://github.com/edicl/cl-unicode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -382,7 +382,7 @@ (define-public sbcl-zpb-ttf (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xach/zpb-ttf.git") + (url "https://github.com/xach/zpb-ttf") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 @@ -495,7 +495,7 @@ (define-public sbcl-spatial-trees (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rpav/spatial-trees.git") + (url "https://github.com/rpav/spatial-trees") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -532,7 +532,7 @@ (define-public sbcl-flexichain (origin (method git-fetch) (uri (git-reference - (url "https://github.com/robert-strandh/Flexichain.git") + (url "https://github.com/robert-strandh/Flexichain") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -564,7 +564,7 @@ (define-public sbcl-cl-pdf (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mbattyani/cl-pdf.git") + (url "https://github.com/mbattyani/cl-pdf") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -596,7 +596,7 @@ (define-public sbcl-clx (method git-fetch) (uri (git-reference - (url "https://github.com/sharplispers/clx.git") + (url "https://github.com/sharplispers/clx") (commit version))) (sha256 (base32 @@ -685,7 +685,7 @@ (define sbcl-slynk-boot0 (method git-fetch) (uri (git-reference - (url "https://github.com/joaotavora/sly.git") + (url "https://github.com/joaotavora/sly") (commit commit))) (sha256 (base32 "0wbpg9p9yg2hd62l15pvy50fk3hndq5zzyqlyyf04g368s895144")) @@ -1043,7 +1043,7 @@ (define-public sbcl-cl-uglify-js (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mishoo/cl-uglify-js.git") + (url "https://github.com/mishoo/cl-uglify-js") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1164,7 +1164,7 @@ (define-public sbcl-trivial-features (origin (method git-fetch) (uri (git-reference - (url "https://github.com/trivial-features/trivial-features.git") + (url "https://github.com/trivial-features/trivial-features") (commit commit))) (file-name (git-file-name "trivial-features" version)) (sha256 @@ -1250,7 +1250,7 @@ (define-public sbcl-babel (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cl-babel/babel.git") + (url "https://github.com/cl-babel/babel") (commit commit))) (file-name (git-file-name "babel" version)) (sha256 @@ -1754,7 +1754,7 @@ (define-public sbcl-named-readtables (origin (method git-fetch) (uri (git-reference - (url "https://github.com/melisgl/named-readtables.git") + (url "https://github.com/melisgl/named-readtables") (commit commit))) (sha256 (base32 "01l4831m7k84qvhzyx0qgdl50isr4zmp40qf6dfq2iqcaj8y4h3n")) @@ -2520,7 +2520,7 @@ (define sbcl-cffi-bootstrap (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cffi/cffi.git") + (url "https://github.com/cffi/cffi") (commit (string-append "v" version)))) (file-name (git-file-name "cffi-bootstrap" version)) (sha256 @@ -2805,7 +2805,7 @@ (define-public sbcl-trivial-garbage (origin (method git-fetch) (uri (git-reference - (url "https://github.com/trivial-garbage/trivial-garbage.git") + (url "https://github.com/trivial-garbage/trivial-garbage") (commit (string-append "v" version)))) (file-name (git-file-name "trivial-garbage" version)) (sha256 @@ -3521,7 +3521,7 @@ (define-public sbcl-trivial-backtrace (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gwkkwg/trivial-backtrace.git") + (url "https://github.com/gwkkwg/trivial-backtrace") (commit commit))) (file-name (git-file-name "trivial-backtrace" version)) (sha256 @@ -3566,7 +3566,7 @@ (define-public sbcl-rfc2388 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jdz/rfc2388.git") + (url "https://github.com/jdz/rfc2388") (commit commit))) (file-name (git-file-name "rfc2388" version)) (sha256 @@ -3618,7 +3618,7 @@ (define-public sbcl-cl+ssl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cl-plus-ssl/cl-plus-ssl.git") + (url "https://github.com/cl-plus-ssl/cl-plus-ssl") (commit commit))) (file-name (git-file-name "cl+ssl" version)) (sha256 @@ -3727,7 +3727,7 @@ (define-public sbcl-chunga (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edicl/chunga.git") + (url "https://github.com/edicl/chunga") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3756,7 +3756,7 @@ (define-public sbcl-cl-who (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edicl/cl-who.git") + (url "https://github.com/edicl/cl-who") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3788,7 +3788,7 @@ (define-public sbcl-chipz (origin (method git-fetch) (uri (git-reference - (url "https://github.com/froydnj/chipz.git") + (url "https://github.com/froydnj/chipz") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3820,7 +3820,7 @@ (define-public sbcl-drakma (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edicl/drakma.git") + (url "https://github.com/edicl/drakma") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3860,7 +3860,7 @@ (define-public sbcl-hunchentoot (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edicl/hunchentoot.git") + (url "https://github.com/edicl/hunchentoot") (commit (string-append "v" version)))) (file-name (git-file-name "hunchentoot" version)) (sha256 @@ -3900,7 +3900,7 @@ (define-public sbcl-trivial-types (origin (method git-fetch) (uri (git-reference - (url "https://github.com/m2ym/trivial-types.git") + (url "https://github.com/m2ym/trivial-types") (commit "ee869f2b7504d8aa9a74403641a5b42b16f47d88"))) (file-name (git-file-name name version)) (sha256 @@ -3924,7 +3924,7 @@ (define-public sbcl-cl-syntax (origin (method git-fetch) (uri (git-reference - (url "https://github.com/m2ym/cl-syntax.git") + (url "https://github.com/m2ym/cl-syntax") (commit "03f0c329bbd55b8622c37161e6278366525e2ccc"))) (file-name (git-file-name "cl-syntax" version)) (sha256 @@ -3954,7 +3954,7 @@ (define-public sbcl-cl-annot (origin (method git-fetch) (uri (git-reference - (url "https://github.com/m2ym/cl-annot.git") + (url "https://github.com/m2ym/cl-annot") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4087,7 +4087,7 @@ (define-public sbcl-quri (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/quri.git") + (url "https://github.com/fukamachi/quri") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4123,7 +4123,7 @@ (define-public sbcl-myway (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/myway.git") + (url "https://github.com/fukamachi/myway") (commit commit))) (file-name (git-file-name "myway" version)) (sha256 @@ -4266,7 +4266,7 @@ (define-public sbcl-static-vectors (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sionescu/static-vectors.git") + (url "https://github.com/sionescu/static-vectors") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4300,7 +4300,7 @@ (define-public sbcl-marshal (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wlbr/cl-marshal.git") + (url "https://github.com/wlbr/cl-marshal") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4327,7 +4327,7 @@ (define-public sbcl-checkl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rpav/CheckL.git") + (url "https://github.com/rpav/CheckL") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4365,7 +4365,7 @@ (define-public sbcl-fast-io (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rpav/fast-io.git") + (url "https://github.com/rpav/fast-io") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4404,7 +4404,7 @@ (define-public sbcl-jonathan (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Rudolph-Miller/jonathan.git") + (url "https://github.com/Rudolph-Miller/jonathan") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4516,7 +4516,7 @@ (define-public sbcl-lack-request (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/lack.git") + (url "https://github.com/fukamachi/lack") (commit commit))) (file-name (git-file-name "lack-request" version)) (sha256 @@ -4557,7 +4557,7 @@ (define-public sbcl-local-time (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dlowe-net/local-time.git") + (url "https://github.com/dlowe-net/local-time") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4592,7 +4592,7 @@ (define-public sbcl-lack-response (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/lack.git") + (url "https://github.com/fukamachi/lack") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4633,7 +4633,7 @@ (define-public sbcl-lack-component (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/lack.git") + (url "https://github.com/fukamachi/lack") (commit commit))) (file-name (git-file-name "lack-component" version)) (sha256 @@ -4669,7 +4669,7 @@ (define-public sbcl-lack-util (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/lack.git") + (url "https://github.com/fukamachi/lack") (commit commit))) (file-name (git-file-name "lack-util" version)) (sha256 @@ -4707,7 +4707,7 @@ (define-public sbcl-lack-middleware-backtrace (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/lack.git") + (url "https://github.com/fukamachi/lack") (commit commit))) (file-name (git-file-name "lack-middleware-backtrace" version)) (sha256 @@ -4743,7 +4743,7 @@ (define-public sbcl-trivial-mimes (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Shinmera/trivial-mimes.git") + (url "https://github.com/Shinmera/trivial-mimes") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4790,7 +4790,7 @@ (define-public sbcl-lack-middleware-static (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/lack.git") + (url "https://github.com/fukamachi/lack") (commit commit))) (file-name (git-file-name "lack-middleware-static" version)) (sha256 @@ -4830,7 +4830,7 @@ (define-public sbcl-lack (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/lack.git") + (url "https://github.com/fukamachi/lack") (commit commit))) (file-name (git-file-name "lack" version)) (sha256 @@ -4867,7 +4867,7 @@ (define-public sbcl-ningle (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/ningle.git") + (url "https://github.com/fukamachi/ningle") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -4930,7 +4930,7 @@ (define-public sbcl-clack (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/clack.git") + (url "https://github.com/fukamachi/clack") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5026,7 +5026,7 @@ (define-public sbcl-clunit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tgutu/clunit.git") + (url "https://github.com/tgutu/clunit") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5059,7 +5059,7 @@ (define-public sbcl-py4cl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bendudson/py4cl.git") + (url "https://github.com/bendudson/py4cl") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5158,7 +5158,7 @@ (define-public sbcl-cl-quickcheck (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mcandre/cl-quickcheck.git") + (url "https://github.com/mcandre/cl-quickcheck") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5189,7 +5189,7 @@ (define-public sbcl-burgled-batteries3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/snmsts/burgled-batteries3.git") + (url "https://github.com/snmsts/burgled-batteries3") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5254,7 +5254,7 @@ (define-public sbcl-metabang-bind (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gwkkwg/metabang-bind.git") + (url "https://github.com/gwkkwg/metabang-bind") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6633,7 +6633,7 @@ (define-public sbcl-periods (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jwiegley/periods.git") + (url "https://github.com/jwiegley/periods") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6686,7 +6686,7 @@ (define-public sbcl-metatilities-base (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gwkkwg/metatilities-base.git") + (url "https://github.com/gwkkwg/metatilities-base") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6718,7 +6718,7 @@ (define-public sbcl-cl-containers (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gwkkwg/cl-containers.git") + (url "https://github.com/gwkkwg/cl-containers") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6807,7 +6807,7 @@ (define-public sbcl-fprog (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jwiegley/cambl.git") + (url "https://github.com/jwiegley/cambl") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6865,7 +6865,7 @@ (define-public sbcl-cl-ledger (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ledger/cl-ledger.git") + (url "https://github.com/ledger/cl-ledger") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6910,7 +6910,7 @@ (define-public sbcl-bst (origin (method git-fetch) (uri (git-reference - (url "https://github.com/glv2/bst.git") + (url "https://github.com/glv2/bst") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6941,7 +6941,7 @@ (define-public sbcl-cl-octet-streams (origin (method git-fetch) (uri (git-reference - (url "https://github.com/glv2/cl-octet-streams.git") + (url "https://github.com/glv2/cl-octet-streams") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6976,7 +6976,7 @@ (define-public sbcl-lzlib (origin (method git-fetch) (uri (git-reference - (url "https://github.com/glv2/cl-lzlib.git") + (url "https://github.com/glv2/cl-lzlib") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7021,7 +7021,7 @@ (define-public sbcl-chanl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zkat/chanl.git") + (url "https://github.com/zkat/chanl") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7056,7 +7056,7 @@ (define-public sbcl-cl-store (origin (method git-fetch) (uri (git-reference - (url "https://github.com/skypher/cl-store.git") + (url "https://github.com/skypher/cl-store") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7365,7 +7365,7 @@ (define-public sbcl-simple-parallel-tasks (origin (method git-fetch) (uri (git-reference - (url "https://github.com/glv2/simple-parallel-tasks.git") + (url "https://github.com/glv2/simple-parallel-tasks") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7429,7 +7429,7 @@ (define-public sbcl-curry-compose-reader-macros (method git-fetch) (uri (git-reference - (url "https://github.com/eschulte/curry-compose-reader-macros.git") + (url "https://github.com/eschulte/curry-compose-reader-macros") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7460,7 +7460,7 @@ (define-public sbcl-yason (origin (method git-fetch) (uri (git-reference - (url "https://github.com/phmarek/yason.git") + (url "https://github.com/phmarek/yason") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -7537,7 +7537,7 @@ (define-public sbcl-graph (method git-fetch) (uri (git-reference - (url "https://github.com/eschulte/graph.git") + (url "https://github.com/eschulte/graph") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7640,7 +7640,7 @@ (define-public sbcl-documentation-utils (method git-fetch) (uri (git-reference - (url "https://github.com/Shinmera/documentation-utils.git") + (url "https://github.com/Shinmera/documentation-utils") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -7978,7 +7978,7 @@ (define-public sbcl-cl-interpol (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edicl/cl-interpol.git") + (url "https://github.com/edicl/cl-interpol") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8018,7 +8018,7 @@ (define sbcl-symbol-munger-boot0 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AccelerationNet/symbol-munger.git") + (url "https://github.com/AccelerationNet/symbol-munger") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8057,7 +8057,7 @@ (define sbcl-lisp-unit2-boot0 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AccelerationNet/lisp-unit2.git") + (url "https://github.com/AccelerationNet/lisp-unit2") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8090,7 +8090,7 @@ (define-public sbcl-symbol-munger (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AccelerationNet/symbol-munger.git") + (url "https://github.com/AccelerationNet/symbol-munger") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8146,7 +8146,7 @@ (define-public sbcl-cl-csv (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AccelerationNet/cl-csv.git") + (url "https://github.com/AccelerationNet/cl-csv") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8185,7 +8185,7 @@ (define-public sbcl-external-program (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sellout/external-program.git") + (url "https://github.com/sellout/external-program") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -8221,7 +8221,7 @@ (define sbcl-cl-ana-boot0 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ghollisjr/cl-ana.git") + (url "https://github.com/ghollisjr/cl-ana") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9302,7 +9302,7 @@ (define-public sbcl-archive (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sharplispers/archive.git") + (url "https://github.com/sharplispers/archive") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9470,7 +9470,7 @@ (define-public sbcl-cl-coroutine (origin (method git-fetch) (uri (git-reference - (url "https://github.com/takagi/cl-coroutine.git") + (url "https://github.com/takagi/cl-coroutine") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9517,7 +9517,7 @@ (define-public sbcl-vom (origin (method git-fetch) (uri (git-reference - (url "https://github.com/orthecreedence/vom.git") + (url "https://github.com/orthecreedence/vom") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9548,7 +9548,7 @@ (define-public sbcl-cl-libuv (origin (method git-fetch) (uri (git-reference - (url "https://github.com/orthecreedence/cl-libuv.git") + (url "https://github.com/orthecreedence/cl-libuv") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9598,7 +9598,7 @@ (define-public sbcl-cl-async-base (origin (method git-fetch) (uri (git-reference - (url "https://github.com/orthecreedence/cl-async.git") + (url "https://github.com/orthecreedence/cl-async") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9726,7 +9726,7 @@ (define-public sbcl-blackbird (origin (method git-fetch) (uri (git-reference - (url "https://github.com/orthecreedence/blackbird.git") + (url "https://github.com/orthecreedence/blackbird") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9761,7 +9761,7 @@ (define-public sbcl-cl-async-future (origin (method git-fetch) (uri (git-reference - (url "https://github.com/orthecreedence/cl-async-future.git") + (url "https://github.com/orthecreedence/cl-async-future") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9796,7 +9796,7 @@ (define-public sbcl-green-threads (origin (method git-fetch) (uri (git-reference - (url "https://github.com/thezerobit/green-threads.git") + (url "https://github.com/thezerobit/green-threads") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9844,7 +9844,7 @@ (define-public sbcl-cl-base32 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hargettp/cl-base32.git") + (url "https://github.com/hargettp/cl-base32") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9875,7 +9875,7 @@ (define-public sbcl-cl-z85 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/glv2/cl-z85.git") + (url "https://github.com/glv2/cl-z85") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -9906,7 +9906,7 @@ (define-public sbcl-ltk (origin (method git-fetch) (uri (git-reference - (url "https://github.com/herth/ltk.git") + (url "https://github.com/herth/ltk") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -9992,7 +9992,7 @@ (define-public sbcl-cl-lex (origin (method git-fetch) (uri (git-reference - (url "https://github.com/djr7C4/cl-lex.git") + (url "https://github.com/djr7C4/cl-lex") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10094,7 +10094,7 @@ (define-public sbcl-cl-jpeg (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sharplispers/cl-jpeg.git") + (url "https://github.com/sharplispers/cl-jpeg") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10174,7 +10174,7 @@ (define-public sbcl-salza2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xach/salza2.git") + (url "https://github.com/xach/salza2") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 @@ -10204,7 +10204,7 @@ (define-public sbcl-png-read (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Ramarren/png-read.git") + (url "https://github.com/Ramarren/png-read") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10233,7 +10233,7 @@ (define-public sbcl-zpng (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xach/zpng.git") + (url "https://github.com/xach/zpng") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 @@ -10260,7 +10260,7 @@ (define-public sbcl-cl-qrencode (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jnjcc/cl-qrencode.git") + (url "https://github.com/jnjcc/cl-qrencode") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -10293,7 +10293,7 @@ (define-public sbcl-hdf5-cffi (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hdfgroup/hdf5-cffi.git") + (url "https://github.com/hdfgroup/hdf5-cffi") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10354,7 +10354,7 @@ (define-public sbcl-cl-randist (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lvaruzza/cl-randist.git") + (url "https://github.com/lvaruzza/cl-randist") (commit "f088a54b540a7adefab7c04094a6103f9edda3d0"))) (file-name (git-file-name name version)) (sha256 @@ -10386,7 +10386,7 @@ (define-public sbcl-float-features (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Shinmera/float-features.git") + (url "https://github.com/Shinmera/float-features") (commit "d3ef60181635b0849aa28cfc238053b7ca4644b0"))) (file-name (git-file-name name version)) (sha256 @@ -10420,7 +10420,7 @@ (define-public sbcl-function-cache (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AccelerationNet/function-cache.git") + (url "https://github.com/AccelerationNet/function-cache") (commit "6a5ada401e57da2c8abf046f582029926e61fce8"))) (file-name (git-file-name name version)) (sha256 @@ -10462,7 +10462,7 @@ (define-public sbcl-type-r (origin (method git-fetch) (uri (git-reference - (url "https://github.com/guicho271828/type-r.git") + (url "https://github.com/guicho271828/type-r") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10499,7 +10499,7 @@ (define-public sbcl-trivialib-type-unify (origin (method git-fetch) (uri (git-reference - (url "https://github.com/guicho271828/trivialib.type-unify.git") + (url "https://github.com/guicho271828/trivialib.type-unify") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10538,7 +10538,7 @@ (define-public sbcl-specialized-function (origin (method git-fetch) (uri (git-reference - (url "https://github.com/numcl/specialized-function.git") + (url "https://github.com/numcl/specialized-function") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10580,7 +10580,7 @@ (define-public sbcl-constantfold (origin (method git-fetch) (uri (git-reference - (url "https://github.com/numcl/constantfold.git") + (url "https://github.com/numcl/constantfold") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10618,7 +10618,7 @@ (define-public sbcl-gtype (origin (method git-fetch) (uri (git-reference - (url "https://github.com/numcl/gtype.git") + (url "https://github.com/numcl/gtype") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10658,7 +10658,7 @@ (define-public sbcl-numcl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/numcl/numcl.git") + (url "https://github.com/numcl/numcl") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10705,7 +10705,7 @@ (define-public sbcl-pzmq (origin (method git-fetch) (uri (git-reference - (url "https://github.com/orivej/pzmq.git") + (url "https://github.com/orivej/pzmq") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10752,7 +10752,7 @@ (define-public sbcl-clss (method git-fetch) (uri (git-reference - (url "https://github.com/Shinmera/clss.git") + (url "https://github.com/Shinmera/clss") (commit commit))) (sha256 (base32 "0la4dbcda78x29szanylccrsljqrn9d1mhh569sqkyp44ni5fv91")) @@ -10784,7 +10784,7 @@ (define-public sbcl-lquery (method git-fetch) (uri (git-reference - (url "https://github.com/Shinmera/lquery.git") + (url "https://github.com/Shinmera/lquery") (commit commit))) (sha256 (base32 "0520mcpxc2d6fdm8z61arpgd2z38kan7cf06qs373n5r64rakz6w")) @@ -10823,7 +10823,7 @@ (define-public sbcl-cl-mysql (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hackinghat/cl-mysql.git") + (url "https://github.com/hackinghat/cl-mysql") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10865,7 +10865,7 @@ (define-public sbcl-simple-date (origin (method git-fetch) (uri (git-reference - (url "https://github.com/marijnh/Postmodern.git") + (url "https://github.com/marijnh/Postmodern") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -10984,7 +10984,7 @@ (define-public sbcl-dbi (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/cl-dbi.git") + (url "https://github.com/fukamachi/cl-dbi") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -11505,7 +11505,7 @@ (define-public sbcl-clx-xembed (origin (method git-fetch) (uri (git-reference - (url "https://github.com/laynor/clx-xembed.git") + (url "https://github.com/laynor/clx-xembed") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11568,7 +11568,7 @@ (define-public sbcl-prometheus (origin (method git-fetch) (uri (git-reference - (url "https://github.com/deadtrickster/prometheus.cl.git") + (url "https://github.com/deadtrickster/prometheus.cl") (commit "7352b92296996ff383503e19bdd3bcea30409a15"))) (file-name (git-file-name name version)) (sha256 @@ -11680,7 +11680,7 @@ (define-public sbcl-uuid (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dardoria/uuid.git") + (url "https://github.com/dardoria/uuid") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11712,7 +11712,7 @@ (define-public sbcl-dissect (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Shinmera/dissect.git") + (url "https://github.com/Shinmera/dissect") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11746,7 +11746,7 @@ (define-public sbcl-rove (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/rove.git") + (url "https://github.com/fukamachi/rove") (commit "f3695db08203bf26f3b861dc22ac0f4257d3ec21"))) (file-name (git-file-name name version)) (sha256 @@ -11780,7 +11780,7 @@ (define-public sbcl-exponential-backoff (origin (method git-fetch) (uri (git-reference - (url "https://github.com/death/exponential-backoff.git") + (url "https://github.com/death/exponential-backoff") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11810,7 +11810,7 @@ (define-public sbcl-sxql (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fukamachi/sxql.git") + (url "https://github.com/fukamachi/sxql") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11849,7 +11849,7 @@ (define-public sbcl-1am (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lmj/1am.git") + (url "https://github.com/lmj/1am") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11879,7 +11879,7 @@ (define-public sbcl-cl-ascii-table (origin (method git-fetch) (uri (git-reference - (url "https://github.com/telephil/cl-ascii-table.git") + (url "https://github.com/telephil/cl-ascii-table") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11906,7 +11906,7 @@ (define-public sbcl-cl-rdkafka (origin (method git-fetch) (uri (git-reference - (url "https://github.com/SahilKang/cl-rdkafka.git") + (url "https://github.com/SahilKang/cl-rdkafka") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -12133,7 +12133,7 @@ (define-public sbcl-cl-libsvm-format (origin (method git-fetch) (uri (git-reference - (url "https://github.com/masatoi/cl-libsvm-format.git") + (url "https://github.com/masatoi/cl-libsvm-format") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -12168,7 +12168,7 @@ (define-public sbcl-cl-online-learning (origin (method git-fetch) (uri (git-reference - (url "https://github.com/masatoi/cl-online-learning.git") + (url "https://github.com/masatoi/cl-online-learning") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -12207,7 +12207,7 @@ (define-public sbcl-cl-random-forest (origin (method git-fetch) (uri (git-reference - (url "https://github.com/masatoi/cl-random-forest.git") + (url "https://github.com/masatoi/cl-random-forest") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -12249,7 +12249,7 @@ (define-public sbcl-bordeaux-fft (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ahefner/bordeaux-fft.git") + (url "https://github.com/ahefner/bordeaux-fft") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -12279,7 +12279,7 @@ (define-public sbcl-napa-fft3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pkhuong/Napa-FFT3.git") + (url "https://github.com/pkhuong/Napa-FFT3") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index aee32b0722..b7bc21ea6e 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -865,7 +865,7 @@ (define-public libclc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/llvm/llvm-project.git") + (url "https://github.com/llvm/llvm-project") (commit (string-append "llvmorg-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm index c95eadd377..789f32920d 100644 --- a/gnu/packages/logging.scm +++ b/gnu/packages/logging.scm @@ -196,7 +196,7 @@ (define-public spdlog (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gabime/spdlog.git") + (url "https://github.com/gabime/spdlog") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/lolcode.scm b/gnu/packages/lolcode.scm index 3f62c4d5a5..cdbff1f4b6 100644 --- a/gnu/packages/lolcode.scm +++ b/gnu/packages/lolcode.scm @@ -34,7 +34,7 @@ (define-public lci (origin (method git-fetch) (uri (git-reference - (url "https://github.com/justinmeza/lci.git") + (url "https://github.com/justinmeza/lci") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index 7babb281ec..5479b891bd 100644 --- a/gnu/packages/lua.scm +++ b/gnu/packages/lua.scm @@ -515,7 +515,7 @@ (define-public lua-penlight (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Tieske/Penlight.git") + (url "https://github.com/Tieske/Penlight") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -555,7 +555,7 @@ (define-public lua-ldoc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stevedonovan/LDoc.git") + (url "https://github.com/stevedonovan/LDoc") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -732,7 +732,7 @@ (define (make-lua-luv name lua) ;; not include the pkg-config files. (method git-fetch) (uri (git-reference - (url "https://github.com/luvit/luv.git") + (url "https://github.com/luvit/luv") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -765,7 +765,7 @@ (define (make-lua-luv name lua) ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/keplerproject/lua-compat-5.3.git") + (url "https://github.com/keplerproject/lua-compat-5.3") (commit "daebe77a2f498817713df37f0bb316db1d82222f"))) (file-name "lua-compat-5.3-checkout") (sha256 @@ -832,7 +832,7 @@ (define-public selene (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jeremyong/Selene.git") + (url "https://github.com/jeremyong/Selene") ;; The release is quite old. (commit "ffe1ade2568d4cff5894552be8f43e63e379a4c9"))) (file-name "Selene") diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index cad5282e1a..29f1a49317 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -270,7 +270,7 @@ (define-public spacefm (method git-fetch) (uri (git-reference - (url "https://github.com/IgnorantGuru/spacefm.git") + (url "https://github.com/IgnorantGuru/spacefm") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index 46128d2997..d0da753e42 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -77,7 +77,7 @@ (define-public libdbusmenu-qt ;; Download from github rather than launchpad because launchpad trunk ;; tarball hash is not deterministic. (uri (git-reference - (url "https://github.com/unity8-team/libdbusmenu-qt.git") + (url "https://github.com/unity8-team/libdbusmenu-qt") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index d6a1064683..18a4ac9ef2 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -93,7 +93,7 @@ (define-public fann (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libfann/fann.git") + (url "https://github.com/libfann/fann") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -315,7 +315,7 @@ (define-public ocaml-mcl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/fhcrc/mcl.git") + (url "https://github.com/fhcrc/mcl") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -584,7 +584,7 @@ (define-public rxcpp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ReactiveX/RxCpp.git") + (url "https://github.com/ReactiveX/RxCpp") (commit (string-append "v" version)))) (sha256 (base32 "1rdpa3jlc181jd08nk437aar085h28i45s6nzrv65apb3xyyz0ij")) @@ -803,7 +803,7 @@ (define-public python-scikit-learn (origin (method git-fetch) (uri (git-reference - (url "https://github.com/scikit-learn/scikit-learn.git") + (url "https://github.com/scikit-learn/scikit-learn") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -860,7 +860,7 @@ (define-public python2-scikit-learn (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/scikit-learn/scikit-learn.git") + (url "https://github.com/scikit-learn/scikit-learn") (commit version))) (file-name (git-file-name "python-scikit-learn" version)) (sha256 @@ -1064,7 +1064,7 @@ (define-public kaldi (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kaldi-asr/kaldi.git") + (url "https://github.com/kaldi-asr/kaldi") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1175,7 +1175,7 @@ (define-public gst-kaldi-nnet2-online (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alumae/gst-kaldi-nnet2-online.git") + (url "https://github.com/alumae/gst-kaldi-nnet2-online") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1247,7 +1247,7 @@ (define-public kaldi-gstreamer-server (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alumae/kaldi-gstreamer-server.git") + (url "https://github.com/alumae/kaldi-gstreamer-server") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1351,7 +1351,7 @@ (define-public tensorflow (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tensorflow/tensorflow.git") + (url "https://github.com/tensorflow/tensorflow") (commit (string-append "v" version)))) (file-name (string-append "tensorflow-" version "-checkout")) (sha256 @@ -1681,7 +1681,7 @@ (define-public tensorflow (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/double-conversion.git") + (url "https://github.com/google/double-conversion") (commit commit))) (file-name (git-file-name "double-conversion" @@ -1726,7 +1726,7 @@ (define-public tensorflow (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/highwayhash.git") + (url "https://github.com/google/highwayhash") (commit commit))) (file-name (string-append "highwayhash-0-" revision (string-take commit 7) @@ -1974,7 +1974,7 @@ (define-public gloo (origin (method git-fetch) (uri (git-reference - (url "https://github.com/facebookincubator/gloo.git") + (url "https://github.com/facebookincubator/gloo") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 646d437009..326173c180 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -473,7 +473,7 @@ (define-public neomutt (origin (method git-fetch) (uri (git-reference - (url "https://github.com/neomutt/neomutt.git") + (url "https://github.com/neomutt/neomutt") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -879,7 +879,7 @@ (define-public notifymuch (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kspi/notifymuch.git") + (url "https://github.com/kspi/notifymuch") (commit commit))) (sha256 (base32 @@ -999,7 +999,7 @@ (define-public notmuch-addrlookup-c (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/aperezdc/notmuch-addrlookup-c.git") + (url "https://github.com/aperezdc/notmuch-addrlookup-c") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -1838,7 +1838,7 @@ (define-public esmtp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/andywingo/esmtp.git") + (url "https://github.com/andywingo/esmtp") (commit "01bf9fc"))) (sha256 (base32 @@ -2931,7 +2931,7 @@ (define-public imapfilter (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lefcha/imapfilter.git") + (url "https://github.com/lefcha/imapfilter") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2991,7 +2991,7 @@ (define-public tnef (origin (method git-fetch) (uri (git-reference - (url "https://github.com/verdammelt/tnef.git") + (url "https://github.com/verdammelt/tnef") (commit version))) (sha256 (base32 "104g48mcm00bgiyzas2vf86331w7bnw7h3bc11ib4lp7rz6zqfck")) @@ -3077,7 +3077,7 @@ (define-public ytnef (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Yeraze/ytnef.git") + (url "https://github.com/Yeraze/ytnef") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm index 7ae73da8a5..56a920d873 100644 --- a/gnu/packages/markup.scm +++ b/gnu/packages/markup.scm @@ -43,7 +43,7 @@ (define-public hoedown (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hoedown/hoedown.git") + (url "https://github.com/hoedown/hoedown") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -201,7 +201,7 @@ (define-public cmark (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jgm/cmark.git") + (url "https://github.com/jgm/cmark") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -242,7 +242,7 @@ (define-public smu (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Gottox/smu.git") + (url "https://github.com/Gottox/smu") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index e5b336ac3b..b75fd25a23 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -263,7 +263,7 @@ (define-public python-cvxopt (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cvxopt/cvxopt.git") + (url "https://github.com/cvxopt/cvxopt") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -840,7 +840,7 @@ (define-public gctp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/OkoSanto/GCTP.git") + (url "https://github.com/OkoSanto/GCTP") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1340,7 +1340,7 @@ (define-public hdf5-blosc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Blosc/hdf5-blosc.git") + (url "https://github.com/Blosc/hdf5-blosc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1823,7 +1823,7 @@ (define-public opencascade-oce (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tpaviot/oce.git") + (url "https://github.com/tpaviot/oce") (commit (string-append "OCE-" version)))) (file-name (git-file-name name version)) (patches (search-patches "opencascade-oce-glibc-2.26.patch")) @@ -2023,7 +2023,7 @@ (define-public maxflow (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gerddie/maxflow.git") + (url "https://github.com/gerddie/maxflow") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2418,7 +2418,7 @@ (define-public metamath (origin (method git-fetch) (uri (git-reference - (url "https://github.com/metamath/metamath-exe.git") + (url "https://github.com/metamath/metamath-exe") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3218,7 +3218,7 @@ (define-public wxmaxima (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wxMaxima-developers/wxmaxima.git") + (url "https://github.com/wxMaxima-developers/wxmaxima") (commit (string-append "Version-" version)))) (file-name (git-file-name name version)) (sha256 @@ -3326,7 +3326,7 @@ (define-public muparser (origin (method git-fetch) (uri (git-reference - (url "https://github.com/beltoforion/muparser.git") + (url "https://github.com/beltoforion/muparser") (commit (string-append "v" upstream-version)))) (file-name (git-file-name name version)) (sha256 @@ -3527,7 +3527,7 @@ (define-public openlibm (origin (method git-fetch) (uri (git-reference - (url "https://github.com/JuliaLang/openlibm.git") + (url "https://github.com/JuliaLang/openlibm") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3566,7 +3566,7 @@ (define-public openspecfun (origin (method git-fetch) (uri (git-reference - (url "https://github.com/JuliaLang/openspecfun.git") + (url "https://github.com/JuliaLang/openspecfun") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3604,7 +3604,7 @@ (define-public suitesparse (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DrTimothyAldenDavis/SuiteSparse.git") + (url "https://github.com/DrTimothyAldenDavis/SuiteSparse") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4140,7 +4140,7 @@ (define-public hypre (origin (method git-fetch) (uri (git-reference - (url "https://github.com/LLNL/hypre.git") + (url "https://github.com/LLNL/hypre") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4596,7 +4596,7 @@ (define-public elemental (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/elemental/Elemental.git") + (url "https://github.com/elemental/Elemental") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5569,7 +5569,7 @@ (define-public minisat (origin (method git-fetch) (uri (git-reference - (url "https://github.com/niklasso/minisat.git") + (url "https://github.com/niklasso/minisat") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 66c6e3adfa..c4d2872cfe 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -85,7 +85,7 @@ (define-public maven-resolver-api (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/apache/maven-resolver.git") + (url "https://github.com/apache/maven-resolver") (commit (string-append "maven-resolver-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index 26704ecd58..9ffbe33ab7 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -296,7 +296,7 @@ (define-public m2-planet (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/oriansj/m2-planet.git") + (url "https://github.com/oriansj/m2-planet") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index eb1856ada4..3cdb4f2df3 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -235,7 +235,7 @@ (define-public bitlbee-discord (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sm00th/bitlbee-discord.git") + (url "https://github.com/sm00th/bitlbee-discord") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1005,7 +1005,7 @@ (define-public libtoxcore (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/irungentoo/toxcore.git") + (url "https://github.com/irungentoo/toxcore") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -1040,7 +1040,7 @@ (define-public c-toxcore (origin (method git-fetch) (uri (git-reference - (url "https://github.com/TokTok/c-toxcore.git") + (url "https://github.com/TokTok/c-toxcore") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1071,7 +1071,7 @@ (define-public utox (origin (method git-fetch) (uri (git-reference - (url "https://github.com/uTox/uTox.git") + (url "https://github.com/uTox/uTox") (commit (string-append "v" version)) (recursive? #t))) ;; Needed for 'minini' git submodule. (file-name (string-append name "-" version "-checkout")) @@ -1195,7 +1195,7 @@ (define-public pybitmessage (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Bitmessage/PyBitmessage.git") + (url "https://github.com/Bitmessage/PyBitmessage") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -1639,7 +1639,7 @@ (define-public libmesode (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/boothj5/libmesode.git") + (url "https://github.com/boothj5/libmesode") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1670,7 +1670,7 @@ (define-public libstrophe (origin (method git-fetch) (uri (git-reference - (url "https://github.com/strophe/libstrophe.git") + (url "https://github.com/strophe/libstrophe") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1778,7 +1778,7 @@ (define-public toxic (origin (method git-fetch) (uri (git-reference - (url "https://github.com/JFreegman/toxic.git") + (url "https://github.com/JFreegman/toxic") (commit (string-append "v" version)))) (sha256 (base32 "09l2j3lwvrq7bf3051vjsnml9w63790ly3iylgf26gkrmld6k31w")) @@ -1863,7 +1863,7 @@ (define-public mtxclient (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Nheko-Reborn/mtxclient.git") + (url "https://github.com/Nheko-Reborn/mtxclient") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1913,7 +1913,7 @@ (define-public nheko (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Nheko-Reborn/nheko.git") + (url "https://github.com/Nheko-Reborn/nheko") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2153,7 +2153,7 @@ (define-public tdlib (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tdlib/td.git") + (url "https://github.com/tdlib/td") (commit commit))) (sha256 (base32 diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index f6a1153548..429959531a 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -412,7 +412,7 @@ (define-public go-github-com-prometheus-node-exporter (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/prometheus/node_exporter.git") + (url "https://github.com/prometheus/node_exporter") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -434,7 +434,7 @@ (define-public fswatch (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emcrisostomo/fswatch.git") + (url "https://github.com/emcrisostomo/fswatch") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 653eec5b6a..3801eaeb6b 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -350,7 +350,7 @@ (define-public ashuffle (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/joshkunz/ashuffle.git") + (url "https://github.com/joshkunz/ashuffle") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 0e5ca65242..3089a22c7c 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -222,7 +222,7 @@ (define-public clementine (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/clementine-player/Clementine.git") + (url "https://github.com/clementine-player/Clementine") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -329,7 +329,7 @@ (define-public cmus (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cmus/cmus.git") + (url "https://github.com/cmus/cmus") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -463,7 +463,7 @@ (define-public dumb (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kode54/dumb.git") + (url "https://github.com/kode54/dumb") (commit version))) (sha256 (base32 "1cnq6rb14d4yllr0yi32p9jmcig8avs3f43bvdjrx4r1mpawspi6")) @@ -508,7 +508,7 @@ (define-public hydrogen (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hydrogen-music/hydrogen.git") + (url "https://github.com/hydrogen-music/hydrogen") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -631,7 +631,7 @@ (define-public extempore (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/digego/extempore.git") + (url "https://github.com/digego/extempore") (commit (string-append "v" version)))) (sha256 (base32 @@ -1136,7 +1136,7 @@ (define-public bsequencer (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sjaehn/BSEQuencer.git") + (url "https://github.com/sjaehn/BSEQuencer") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1172,7 +1172,7 @@ (define-public bchoppr (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sjaehn/BChoppr.git") + (url "https://github.com/sjaehn/BChoppr") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1277,7 +1277,7 @@ (define-public powertabeditor (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/powertab/powertabeditor.git") + (url "https://github.com/powertab/powertabeditor") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1315,7 +1315,7 @@ (define-public jalv-select (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brummer10/jalv_select.git") + (url "https://github.com/brummer10/jalv_select") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1860,7 +1860,7 @@ (define-public libpd (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libpd/libpd.git") + (url "https://github.com/libpd/libpd") (commit version) (recursive? #t))) ; for the 'pure-data' submodule (file-name (string-append name "-" version "-checkout")) @@ -1941,7 +1941,7 @@ (define-public portmidi-for-extempore (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/extemporelang/portmidi.git") + (url "https://github.com/extemporelang/portmidi") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2283,7 +2283,7 @@ (define-public jack-capture (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kmatheussen/jack_capture.git") + (url "https://github.com/kmatheussen/jack_capture") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -2474,7 +2474,7 @@ (define-public ams-lv2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/blablack/ams-lv2.git") + (url "https://github.com/blablack/ams-lv2") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2515,7 +2515,7 @@ (define-public gxtuner (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brummer10/gxtuner.git") + (url "https://github.com/brummer10/gxtuner") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2603,7 +2603,7 @@ (define-public curseradio (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/chronitis/curseradio.git") + (url "https://github.com/chronitis/curseradio") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2638,7 +2638,7 @@ (define-public pianobar (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PromyLOPh/pianobar.git") + (url "https://github.com/PromyLOPh/pianobar") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2860,7 +2860,7 @@ (define-public instantmusic (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/yask123/Instant-Music-Downloader.git") + (url "https://github.com/yask123/Instant-Music-Downloader") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2978,7 +2978,7 @@ (define-public milkytracker (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/milkytracker/MilkyTracker.git") + (url "https://github.com/milkytracker/MilkyTracker") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3023,7 +3023,7 @@ (define-public schismtracker (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/schismtracker/schismtracker.git") + (url "https://github.com/schismtracker/schismtracker") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3211,7 +3211,7 @@ (define-public gx-guvnor-lv2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brummer10/GxGuvnor.lv2.git") + (url "https://github.com/brummer10/GxGuvnor.lv2") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3335,7 +3335,7 @@ (define-public gx-suppa-tone-bender-lv2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brummer10/GxSuppaToneBender.lv2.git") + (url "https://github.com/brummer10/GxSuppaToneBender.lv2") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3374,7 +3374,7 @@ (define-public gx-hyperion-lv2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brummer10/GxHyperion.lv2.git") + (url "https://github.com/brummer10/GxHyperion.lv2") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3392,7 +3392,7 @@ (define-public gx-voodoo-fuzz-lv2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brummer10/GxVoodoFuzz.lv2.git") + (url "https://github.com/brummer10/GxVoodoFuzz.lv2") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3412,7 +3412,7 @@ (define-public gx-super-fuzz-lv2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brummer10/GxSuperFuzz.lv2.git") + (url "https://github.com/brummer10/GxSuperFuzz.lv2") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3432,7 +3432,7 @@ (define-public gx-vintage-fuzz-master-lv2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brummer10/GxVintageFuzzMaster.lv2.git") + (url "https://github.com/brummer10/GxVintageFuzzMaster.lv2") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3493,7 +3493,7 @@ (define-public rkrlv2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ssj71/rkrlv2.git") + (url "https://github.com/ssj71/rkrlv2") (commit commit))) (sha256 (base32 @@ -3523,7 +3523,7 @@ (define-public mod-utilities (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/moddevices/mod-utilities.git") + (url "https://github.com/moddevices/mod-utilities") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -3807,7 +3807,7 @@ (define-public lmms (origin (method git-fetch) (uri (git-reference - (url "https://github.com/LMMS/lmms.git") + (url "https://github.com/LMMS/lmms") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3859,7 +3859,7 @@ (define-public lmms ,(origin (method git-fetch) (uri (git-reference - (url "https://github.com/mjansson/rpmalloc.git") + (url "https://github.com/mjansson/rpmalloc") (commit "b5bdc18051bb74a22f0bde4bcc90b01cf590b496"))) (sha256 (base32 @@ -3896,7 +3896,7 @@ (define-public musescore (origin (method git-fetch) (uri (git-reference - (url "https://github.com/musescore/MuseScore.git") + (url "https://github.com/musescore/MuseScore") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3969,7 +3969,7 @@ (define-public muse-sequencer (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/muse-sequencer/muse.git") + (url "https://github.com/muse-sequencer/muse") (commit (string-append "muse_" (string-map (lambda (c) (if (char=? c #\.) @@ -4153,7 +4153,7 @@ (define-public patchmatrix (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/OpenMusicKontrollers/patchmatrix.git") + (url "https://github.com/OpenMusicKontrollers/patchmatrix") (commit version))) (file-name (git-file-name "patchmatrix" version)) (sha256 @@ -4224,7 +4224,7 @@ (define-public sonivox-eas (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pedrolcl/Linux-SonivoxEas.git") + (url "https://github.com/pedrolcl/Linux-SonivoxEas") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -4437,7 +4437,7 @@ (define-public clyrics (origin (method git-fetch) (uri (git-reference - (url "https://github.com/trizen/clyrics.git") + (url "https://github.com/trizen/clyrics") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4732,7 +4732,7 @@ (define-public playerctl (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/altdesktop/playerctl.git") + (url "https://github.com/altdesktop/playerctl") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4800,7 +4800,7 @@ (define-public lsp-plugins (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sadko4u/lsp-plugins.git") + (url "https://github.com/sadko4u/lsp-plugins") (commit (string-append "lsp-plugins-" version)))) (file-name (git-file-name name version)) (sha256 @@ -4871,7 +4871,7 @@ (define-public spectacle-analyzer (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jpcima/spectacle.git") + (url "https://github.com/jpcima/spectacle") (commit (string-append "v" version)) ;; Bundles a specific commit of the DISTRHO plugin framework. (recursive? #t))) @@ -4968,7 +4968,7 @@ (define-public zam-plugins (method git-fetch) (uri (git-reference - (url "https://github.com/zamaudio/zam-plugins.git") + (url "https://github.com/zamaudio/zam-plugins") (commit version) ;; Recursive to fetch the DISTRHO plugin framework. This ;; framework is intended to be included in the sources @@ -5060,7 +5060,7 @@ (define-public dpf-plugins (method git-fetch) (uri (git-reference - (url "https://github.com/DISTRHO/DPF-Plugins.git") + (url "https://github.com/DISTRHO/DPF-Plugins") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5107,7 +5107,7 @@ (define-public avldrums-lv2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/x42/avldrums.lv2.git") + (url "https://github.com/x42/avldrums.lv2") (commit (string-append "v" version)) ;; This plugin expects the robtk submodule's source files to be ;; there in order to build. @@ -5151,7 +5151,7 @@ (define-public helm (method git-fetch) (uri (git-reference - (url "https://github.com/mtytel/helm.git") + (url "https://github.com/mtytel/helm") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5269,7 +5269,7 @@ (define-public dragonfly-reverb (method git-fetch) (uri (git-reference - (url "https://github.com/michaelwillis/dragonfly-reverb.git") + (url "https://github.com/michaelwillis/dragonfly-reverb") (commit version) ;; Bundles a specific commit of the DISTRHO plugin framework. (recursive? #t))) @@ -5355,7 +5355,7 @@ (define-public vl1-emulator (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linuxmao-org/VL1-emulator.git") + (url "https://github.com/linuxmao-org/VL1-emulator") (commit (string-append "v" version)) ;; bundles a specific commit of the DISTRHO plugin framework (recursive? #t))) @@ -5395,7 +5395,7 @@ (define-public regrader (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linuxmao-org/regrader.git") + (url "https://github.com/linuxmao-org/regrader") (commit (string-append "v" version)) ;; bundles a specific commit of the DISTRHO plugin framework (recursive? #t))) @@ -5447,7 +5447,7 @@ (define-public tap-lv2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/moddevices/tap-lv2.git") + (url "https://github.com/moddevices/tap-lv2") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5487,7 +5487,7 @@ (define-public wolf-shaper (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pdesaulniers/wolf-shaper.git") + (url "https://github.com/pdesaulniers/wolf-shaper") (commit (string-append "v" version)) ;; Bundles a specific commit of the DISTRHO plugin framework. (recursive? #t))) @@ -5569,7 +5569,7 @@ (define-public shiru-lv2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linuxmao-org/shiru-plugins.git") + (url "https://github.com/linuxmao-org/shiru-plugins") (commit commit) ;; Bundles a specific commit of the DISTRHO plugin framework. (recursive? #t))) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 44f81c94d1..53599fe191 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -615,7 +615,7 @@ (define-public librdkafka (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edenhill/librdkafka.git") + (url "https://github.com/edenhill/librdkafka") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1064,7 +1064,7 @@ (define-public go-netns (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vishvananda/netns.git") + (url "https://github.com/vishvananda/netns") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1090,7 +1090,7 @@ (define-public go-sctp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ishidawataru/sctp.git") + (url "https://github.com/ishidawataru/sctp") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1221,7 +1221,7 @@ (define-public bwm-ng (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vgropp/bwm-ng.git") + (url "https://github.com/vgropp/bwm-ng") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1783,7 +1783,7 @@ (define-public sslh (origin (method git-fetch) (uri (git-reference - (url "https://github.com/yrutschle/sslh.git") + (url "https://github.com/yrutschle/sslh") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2194,7 +2194,7 @@ (define-public thc-ipv6 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vanhauser-thc/thc-ipv6.git") + (url "https://github.com/vanhauser-thc/thc-ipv6") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2505,7 +2505,7 @@ (define-public can-utils (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/linux-can/can-utils.git") + (url "https://github.com/linux-can/can-utils") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2686,7 +2686,7 @@ (define-public ubridge (origin (method git-fetch) (uri (git-reference - (url "https://github.com/GNS3/ubridge.git") + (url "https://github.com/GNS3/ubridge") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2725,7 +2725,7 @@ (define-public hcxtools (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ZerBea/hcxtools.git") + (url "https://github.com/ZerBea/hcxtools") (commit version))) (sha256 (base32 "0k2qlq9hz5zc21nyc6yrnfqzga7hydn5mm0x3rpl2fhkwl81lxcn")) @@ -2759,7 +2759,7 @@ (define-public hcxdumptool (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ZerBea/hcxdumptool.git") + (url "https://github.com/ZerBea/hcxdumptool") (commit version))) (sha256 (base32 "1b4d543y64ib92w9gcmiyjn5hz2vyjqmxk3f3yr1zk04fhw16gmf")) @@ -2873,7 +2873,7 @@ (define-public restinio (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Stiffstream/restinio.git") + (url "https://github.com/Stiffstream/restinio") (commit (string-append "v." version)))) (file-name (git-file-name name version)) (sha256 @@ -2915,7 +2915,7 @@ (define-public opendht (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/savoirfairelinux/opendht.git") + (url "https://github.com/savoirfairelinux/opendht") (commit version))) (file-name (git-file-name name version)) (patches (search-patches "opendht-fix-jami.patch")) @@ -3085,7 +3085,7 @@ (define-public pagekite (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pagekite/PyPagekite.git") + (url "https://github.com/pagekite/PyPagekite") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index 27cd5c18b7..b1d6d4ce59 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -253,7 +253,7 @@ (define-public node-semver (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/npm/node-semver.git") + (url "https://github.com/npm/node-semver") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 5792c1f465..1b40063ffb 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -238,7 +238,7 @@ (define-public ocamlbuild (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ocaml/ocamlbuild.git") + (url "https://github.com/ocaml/ocamlbuild") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -533,7 +533,7 @@ (define-public camlp5 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/camlp5/camlp5.git") + (url "https://github.com/camlp5/camlp5") (commit (string-append "rel" (string-delete #\. version))))) (file-name (git-file-name name version)) (sha256 @@ -620,7 +620,7 @@ (define-public ocaml-num (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ocaml/num.git") + (url "https://github.com/ocaml/num") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -666,7 +666,7 @@ (define-public emacs-tuareg (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ocaml/tuareg.git") + (url "https://github.com/ocaml/tuareg") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -843,7 +843,7 @@ (define-public unison (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bcpierce00/unison.git") + (url "https://github.com/bcpierce00/unison") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1156,7 +1156,7 @@ (define-public ocaml-qcheck (origin (method git-fetch) (uri (git-reference - (url "https://github.com/c-cube/qcheck.git") + (url "https://github.com/c-cube/qcheck") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1683,7 +1683,7 @@ (define-public ocaml4.07-ppx-tools (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alainfrisch/ppx_tools.git") + (url "https://github.com/alainfrisch/ppx_tools") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 @@ -1738,7 +1738,7 @@ (define-public ocaml-ssl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/savonet/ocaml-ssl.git") + (url "https://github.com/savonet/ocaml-ssl") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 @@ -2575,7 +2575,7 @@ (define-public ocaml-seq (origin (method git-fetch) (uri (git-reference - (url "https://github.com/c-cube/seq.git") + (url "https://github.com/c-cube/seq") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2613,7 +2613,7 @@ (define-public ocaml-re (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ocaml/ocaml-re.git") + (url "https://github.com/ocaml/ocaml-re") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2722,7 +2722,7 @@ (define-public ocaml4.07-ezjsonm (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mirage/ezjsonm.git") + (url "https://github.com/mirage/ezjsonm") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2755,7 +2755,7 @@ (define-public ocaml4.07-uri (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mirage/ocaml-uri.git") + (url "https://github.com/mirage/ocaml-uri") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2822,7 +2822,7 @@ (define-public ocaml4.07-piqilib (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alavrik/piqi.git") + (url "https://github.com/alavrik/piqi") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3120,7 +3120,7 @@ (define-public ocaml4.07-zed (origin (method git-fetch) (uri (git-reference - (url "https://github.com/diml/zed.git") + (url "https://github.com/diml/zed") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3150,7 +3150,7 @@ (define-public ocaml4.07-lambda-term (origin (method git-fetch) (uri (git-reference - (url "https://github.com/diml/lambda-term.git") + (url "https://github.com/diml/lambda-term") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3186,7 +3186,7 @@ (define-public ocaml4.07-utop (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ocaml-community/utop.git") + (url "https://github.com/ocaml-community/utop") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3377,7 +3377,7 @@ (define-public dedukti (origin (method git-fetch) (uri (git-reference - (url "https://github.com/deducteam/dedukti.git") + (url "https://github.com/deducteam/dedukti") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3522,7 +3522,7 @@ (define-public ocaml-bindlib (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rlepigre/ocaml-bindlib.git") + (url "https://github.com/rlepigre/ocaml-bindlib") (commit (string-append "ocaml-bindlib_" version)))) (file-name (git-file-name name version)) (sha256 @@ -3730,7 +3730,7 @@ (define-public ocaml4.07-merlin (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ocaml/merlin.git") + (url "https://github.com/ocaml/merlin") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4174,7 +4174,7 @@ (define-public ocaml4.07-ppx-compare (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/ppx_compare.git") + (url "https://github.com/janestreet/ppx_compare") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4299,7 +4299,7 @@ (define-public ocaml4.07-ppx-sexp-conv (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/ppx_sexp_conv.git") + (url "https://github.com/janestreet/ppx_sexp_conv") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4328,7 +4328,7 @@ (define-public ocaml4.07-ppx-variants-conv (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/ppx_variants_conv.git") + (url "https://github.com/janestreet/ppx_variants_conv") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4457,7 +4457,7 @@ (define-public ocaml4.07-ppx-hash (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/ppx_hash.git") + (url "https://github.com/janestreet/ppx_hash") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4488,7 +4488,7 @@ (define-public ocaml4.07-ppx-enumerate (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/ppx_enumerate.git") + (url "https://github.com/janestreet/ppx_enumerate") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4839,7 +4839,7 @@ (define-public ocaml4.07-ppx-expect (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/ppx_expect.git") + (url "https://github.com/janestreet/ppx_expect") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4914,7 +4914,7 @@ (define-public ocaml4.07-ppx-typerep-conv (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/ppx_typerep_conv.git") + (url "https://github.com/janestreet/ppx_typerep_conv") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4980,7 +4980,7 @@ (define-public ocaml4.07-ppx-bin-prot (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/ppx_bin_prot.git") + (url "https://github.com/janestreet/ppx_bin_prot") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5149,7 +5149,7 @@ (define-public ocaml4.07-spawn (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/spawn.git") + (url "https://github.com/janestreet/spawn") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5197,7 +5197,7 @@ (define-public ocaml4.07-core (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/core.git") + (url "https://github.com/janestreet/core") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5237,7 +5237,7 @@ (define-public ocaml4.07-core-kernel (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/janestreet/core_kernel.git") + (url "https://github.com/janestreet/core_kernel") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5340,7 +5340,7 @@ (define-public ocaml-tyxml (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ocsigen/tyxml.git") + (url "https://github.com/ocsigen/tyxml") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5375,7 +5375,7 @@ (define-public ocaml-bisect-ppx (origin (method git-fetch) (uri (git-reference - (url "https://github.com/aantron/bisect_ppx.git") + (url "https://github.com/aantron/bisect_ppx") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5460,7 +5460,7 @@ (define-public ocaml4.07-fftw3 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Chris00/fftw-ocaml.git") + (url "https://github.com/Chris00/fftw-ocaml") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5496,7 +5496,7 @@ (define-public ocaml4.07-lacaml (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mmottl/lacaml.git") + (url "https://github.com/mmottl/lacaml") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5529,7 +5529,7 @@ (define-public ocaml-cairo2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Chris00/ocaml-cairo.git") + (url "https://github.com/Chris00/ocaml-cairo") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5559,7 +5559,7 @@ (define-public lablgtk3 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/garrigue/lablgtk.git") + (url "https://github.com/garrigue/lablgtk") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/ocr.scm b/gnu/packages/ocr.scm index dc690f3cef..dc4930918a 100644 --- a/gnu/packages/ocr.scm +++ b/gnu/packages/ocr.scm @@ -93,7 +93,7 @@ (define-public zinnia (origin (method git-fetch) (uri (git-reference - (url "https://github.com/taku910/zinnia.git") + (url "https://github.com/taku910/zinnia") (commit commit))) (sha256 (base32 diff --git a/gnu/packages/onc-rpc.scm b/gnu/packages/onc-rpc.scm index cd31dfd910..8d0480622e 100644 --- a/gnu/packages/onc-rpc.scm +++ b/gnu/packages/onc-rpc.scm @@ -147,7 +147,7 @@ (define-public libnsl (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/thkukuk/libnsl.git") + (url "https://github.com/thkukuk/libnsl") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/opencl.scm b/gnu/packages/opencl.scm index f14d5df130..593b9044df 100644 --- a/gnu/packages/opencl.scm +++ b/gnu/packages/opencl.scm @@ -58,7 +58,7 @@ (define (make-opencl-headers major-version subversion) (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/KhronosGroup/OpenCL-Headers.git") + (url "https://github.com/KhronosGroup/OpenCL-Headers") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -109,7 +109,7 @@ (define-public opencl-clhpp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/KhronosGroup/OpenCL-CLHPP.git") + (url "https://github.com/KhronosGroup/OpenCL-CLHPP") (commit (string-append "v" version)))) (sha256 (base32 "0h5kpg5cl8wzfnqmv6i26aig2apv06ffm9p3rh35938n9r8rladm")) @@ -181,7 +181,7 @@ (define-public clinfo (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Oblomov/clinfo.git") + (url "https://github.com/Oblomov/clinfo") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -223,7 +223,7 @@ (define-public beignet (origin (method git-fetch) (uri (git-reference - (url "https://github.com/intel/beignet.git") + (url "https://github.com/intel/beignet") (commit (string-append "Release_v" version)))) (file-name (git-file-name name version)) (sha256 @@ -303,7 +303,7 @@ (define-public pocl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pocl/pocl.git") + (url "https://github.com/pocl/pocl") (commit (string-append "v" version)))) (sha256 (base32 "1c4y69zks6hkq5fqh9waxgb8g4ka7y6h3vacmsm720kba0h57g8a")) diff --git a/gnu/packages/opencog.scm b/gnu/packages/opencog.scm index 18aba64aec..cca0b37ead 100644 --- a/gnu/packages/opencog.scm +++ b/gnu/packages/opencog.scm @@ -44,7 +44,7 @@ (define-public cogutil (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/opencog/cogutil.git") + (url "https://github.com/opencog/cogutil") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -76,7 +76,7 @@ (define-public atomspace (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/opencog/atomspace.git") + (url "https://github.com/opencog/atomspace") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -122,7 +122,7 @@ (define-public cogserver (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/opencog/cogserver.git") + (url "https://github.com/opencog/cogserver") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -164,7 +164,7 @@ (define-public attention (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/opencog/attention.git") + (url "https://github.com/opencog/attention") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -209,7 +209,7 @@ (define-public opencog (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/opencog/opencog.git") + (url "https://github.com/opencog/opencog") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -260,7 +260,7 @@ (define-public agi-bio (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/opencog/agi-bio.git") + (url "https://github.com/opencog/agi-bio") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/pantheon.scm b/gnu/packages/pantheon.scm index 036050d1bf..aa7074827e 100644 --- a/gnu/packages/pantheon.scm +++ b/gnu/packages/pantheon.scm @@ -41,7 +41,7 @@ (define-public granite (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/elementary/granite.git") + (url "https://github.com/elementary/granite") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -79,7 +79,7 @@ (define-public pantheon-calculator (origin (method git-fetch) (uri (git-reference - (url "https://github.com/elementary/calculator.git") + (url "https://github.com/elementary/calculator") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -120,7 +120,7 @@ (define-public sideload (origin (method git-fetch) (uri (git-reference - (url "https://github.com/elementary/sideload.git") + (url "https://github.com/elementary/sideload") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index b7f9689862..0dffffd036 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -203,7 +203,7 @@ (define-public pwsafe (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pwsafe/pwsafe.git") + (url "https://github.com/pwsafe/pwsafe") (commit version))) (sha256 (base32 "1ka7xsl63v0559fzf3pwc1iqr37gwr4vq5iaxa2hzar2g28hsxvh")) @@ -587,7 +587,7 @@ (define-public qtpass (origin (method git-fetch) (uri (git-reference - (url "https://github.com/IJHack/QtPass.git") + (url "https://github.com/IJHack/QtPass") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -711,7 +711,7 @@ (define-public browserpass-native (origin (method git-fetch) (uri (git-reference - (url "https://github.com/browserpass/browserpass-native.git") + (url "https://github.com/browserpass/browserpass-native") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm index 0d58c21eee..c26977be1f 100644 --- a/gnu/packages/patchutils.scm +++ b/gnu/packages/patchutils.scm @@ -325,7 +325,7 @@ (define-public patchwork (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/getpatchwork/patchwork.git") + (url "https://github.com/getpatchwork/patchwork") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 0ad1263812..5cf93ad724 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -312,7 +312,7 @@ (define-public libharu (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libharu/libharu.git") + (url "https://github.com/libharu/libharu") (commit (string-append "RELEASE_" (string-join (string-split version #\.) "_"))))) @@ -827,7 +827,7 @@ (define-public xournalpp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/xournalpp/xournalpp.git") + (url "https://github.com/xournalpp/xournalpp") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1064,7 +1064,7 @@ (define-public pdf2svg (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dawbarton/pdf2svg.git") + (url "https://github.com/dawbarton/pdf2svg") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1161,7 +1161,7 @@ (define-public pdfarranger (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jeromerobert/pdfarranger.git") + (url "https://github.com/jeromerobert/pdfarranger") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1261,7 +1261,7 @@ (define-public pdfpc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pdfpc/pdfpc.git") + (url "https://github.com/pdfpc/pdfpc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/perl6.scm b/gnu/packages/perl6.scm index 04e37a3b85..e02dd757e5 100644 --- a/gnu/packages/perl6.scm +++ b/gnu/packages/perl6.scm @@ -268,7 +268,7 @@ (define-public perl6-grammar-profiler-simple (origin (method git-fetch) (uri (git-reference - (url "https://github.com/perlpilot/Grammar-Profiler-Simple.git") + (url "https://github.com/perlpilot/Grammar-Profiler-Simple") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -315,7 +315,7 @@ (define-public perl6-json-class (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jonathanstowe/JSON-Class.git") + (url "https://github.com/jonathanstowe/JSON-Class") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -347,7 +347,7 @@ (define-public perl6-json-fast (origin (method git-fetch) (uri (git-reference - (url "https://github.com/timo/json_fast.git") + (url "https://github.com/timo/json_fast") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -370,7 +370,7 @@ (define-public perl6-json-marshal (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jonathanstowe/JSON-Marshal.git") + (url "https://github.com/jonathanstowe/JSON-Marshal") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -397,7 +397,7 @@ (define-public perl6-json-name (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jonathanstowe/JSON-Name.git") + (url "https://github.com/jonathanstowe/JSON-Name") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -426,7 +426,7 @@ (define-public perl6-json-unmarshal (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tadzik/JSON-Unmarshal.git") + (url "https://github.com/tadzik/JSON-Unmarshal") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -475,7 +475,7 @@ (define-public perl6-meta6 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jonathanstowe/META6.git") + (url "https://github.com/jonathanstowe/META6") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -612,7 +612,7 @@ (define-public perl6-tap-harness (origin (method git-fetch) (uri (git-reference - (url "https://github.com/perl6/tap-harness6.git") + (url "https://github.com/perl6/tap-harness6") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -642,7 +642,7 @@ (define-public perl6-terminal-ansicolor (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tadzik/Terminal-ANSIColor.git") + (url "https://github.com/tadzik/Terminal-ANSIColor") ;; The commit where 0.5 was "tagged" (commit "edded4a7116ce11cbc9fb5a83669c7ba119d0212"))) (file-name (git-file-name name version)) @@ -715,7 +715,7 @@ (define-public perl6-uri (origin (method git-fetch) (uri (git-reference - (url "https://github.com/perl6-community-modules/uri.git") + (url "https://github.com/perl6-community-modules/uri") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -763,7 +763,7 @@ (define-public perl6-zef (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ugexe/zef.git") + (url "https://github.com/ugexe/zef") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/phabricator.scm b/gnu/packages/phabricator.scm index 6c94a13114..e4a4f79942 100644 --- a/gnu/packages/phabricator.scm +++ b/gnu/packages/phabricator.scm @@ -33,7 +33,7 @@ (define-public libphutil (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/phacility/libphutil.git") + (url "https://github.com/phacility/libphutil") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -72,7 +72,7 @@ (define-public arcanist (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/phacility/arcanist.git") + (url "https://github.com/phacility/arcanist") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/popt.scm b/gnu/packages/popt.scm index 95a9ea9211..df80f12077 100644 --- a/gnu/packages/popt.scm +++ b/gnu/packages/popt.scm @@ -107,7 +107,7 @@ (define-public gflags (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gflags/gflags.git") + (url "https://github.com/gflags/gflags") (commit (string-append "v" version)))) (sha256 (base32 "147i3md3nxkjlrccqg4mq1kyzc7yrhvqv5902iibc7znkvzdvlp0")) diff --git a/gnu/packages/printers.scm b/gnu/packages/printers.scm index 7b2c2429dd..bbf98ee653 100644 --- a/gnu/packages/printers.scm +++ b/gnu/packages/printers.scm @@ -42,7 +42,7 @@ (define-public robocut (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Timmmm/robocut.git") + (url "https://github.com/Timmmm/robocut") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -81,7 +81,7 @@ (define-public brlaser (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pdewacht/brlaser.git") + (url "https://github.com/pdewacht/brlaser") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/prolog.scm b/gnu/packages/prolog.scm index bf992f6bd6..3c96576ba9 100644 --- a/gnu/packages/prolog.scm +++ b/gnu/packages/prolog.scm @@ -90,7 +90,7 @@ (define-public swi-prolog (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/SWI-Prolog/swipl-devel.git") + (url "https://github.com/SWI-Prolog/swipl-devel") (recursive? #t) ; TODO: Determine if this can be split out. (commit (string-append "V" version)))) (file-name (git-file-name name version)) diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm index 556bca6042..49abb21358 100644 --- a/gnu/packages/protobuf.scm +++ b/gnu/packages/protobuf.scm @@ -188,7 +188,7 @@ (define-public protozero (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mapbox/protozero.git") + (url "https://github.com/mapbox/protozero") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -265,7 +265,7 @@ (define-public ruby-protobuf (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ruby-protobuf/protobuf.git") + (url "https://github.com/ruby-protobuf/protobuf") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/pulseaudio.scm b/gnu/packages/pulseaudio.scm index b4a8d981a2..58c7e5bd7d 100644 --- a/gnu/packages/pulseaudio.scm +++ b/gnu/packages/pulseaudio.scm @@ -354,7 +354,7 @@ (define-public pulseaudio-dlna (origin (method git-fetch) (uri (git-reference - (url "https://github.com/masmu/pulseaudio-dlna.git") + (url "https://github.com/masmu/pulseaudio-dlna") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -403,7 +403,7 @@ (define-public pamixer (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cdemoulins/pamixer.git") + (url "https://github.com/cdemoulins/pamixer") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -438,7 +438,7 @@ (define-public pasystray (origin (method git-fetch) (uri (git-reference - (url "https://github.com/christophgysin/pasystray.git") + (url "https://github.com/christophgysin/pasystray") (commit (string-append name "-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 5c9c251c01..aed7dfc943 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -719,7 +719,7 @@ (define-public python-asn1crypto (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wbond/asn1crypto.git") + (url "https://github.com/wbond/asn1crypto") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index c3016c8d95..6f78adb254 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -2532,7 +2532,7 @@ (define-public python-flask-login (origin (method git-fetch) (uri (git-reference - (url "https://github.com/maxcountryman/flask-login.git") + (url "https://github.com/maxcountryman/flask-login") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2764,7 +2764,7 @@ (define-public python-genshi (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edgewall/genshi.git") + (url "https://github.com/edgewall/genshi") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 074ea394e1..109a14b0ae 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1309,7 +1309,7 @@ (define-public python-cantools ;; not included with the PyPI archive. (method git-fetch) (uri (git-reference - (url "https://github.com/eerimoq/cantools.git") + (url "https://github.com/eerimoq/cantools") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2049,7 +2049,7 @@ (define-public scons (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/SCons/scons.git") + (url "https://github.com/SCons/scons") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2401,7 +2401,7 @@ (define-public python-cli-helpers ;; There's no source tarball on PyPI. (method git-fetch) (uri (git-reference - (url "https://github.com/dbcli/cli_helpers.git") + (url "https://github.com/dbcli/cli_helpers") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3428,7 +3428,7 @@ (define-public python-deprecated (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tantale/deprecated.git") + (url "https://github.com/tantale/deprecated") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3464,7 +3464,7 @@ (define-public python-pygithub (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PyGithub/PyGithub.git") + (url "https://github.com/PyGithub/PyGithub") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3531,7 +3531,7 @@ (define-public python-robotframework (origin (method git-fetch) (uri (git-reference - (url "https://github.com/robotframework/robotframework.git") + (url "https://github.com/robotframework/robotframework") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3580,7 +3580,7 @@ (define-public python-robotframework-lint (origin (method git-fetch) (uri (git-reference - (url "https://github.com/boakley/robotframework-lint.git") + (url "https://github.com/boakley/robotframework-lint") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3611,7 +3611,7 @@ (define-public python-robotframework-sshlibrary (origin (method git-fetch) (uri (git-reference - (url "https://github.com/robotframework/SSHLibrary.git") + (url "https://github.com/robotframework/SSHLibrary") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4016,7 +4016,7 @@ (define-public mallard-ducktype ;; git-reference because tests are not included in pypi source tarball ;; https://issues.guix.gnu.org/issue/36755#2 (uri (git-reference - (url "https://github.com/projectmallard/mallard-ducktype.git") + (url "https://github.com/projectmallard/mallard-ducktype") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4422,7 +4422,7 @@ (define-public python-numpy-documentation ,(origin ; The build script expects scipy-sphinx-theme as a git submodule (method git-fetch) (uri (git-reference - (url "https://github.com/scipy/scipy-sphinx-theme.git") + (url "https://github.com/scipy/scipy-sphinx-theme") (commit "c466764e2231ba132c09826b5b138fffa1cfcec3"))) (sha256 (base32 @@ -4669,7 +4669,7 @@ (define-public python-colorspacious (origin (method git-fetch) (uri (git-reference - (url "https://github.com/njsmith/colorspacious.git") + (url "https://github.com/njsmith/colorspacious") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5063,7 +5063,7 @@ (define-public python-socksipychain (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pagekite/PySocksipyChain.git") + (url "https://github.com/pagekite/PySocksipyChain") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5286,7 +5286,7 @@ (define-public python2-elib.intl ;; source from a (semi-arbitrary, i.e. latest as of now) git commit. (method git-fetch) (uri (git-reference - (url "https://github.com/dieterv/elib.intl.git") + (url "https://github.com/dieterv/elib.intl") (commit "d09997cfef"))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -5850,7 +5850,7 @@ (define-public python-gridmap (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pygridtools/gridmap.git") + (url "https://github.com/pygridtools/gridmap") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5881,7 +5881,7 @@ (define-public python-honcho (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nickstenning/honcho.git") + (url "https://github.com/nickstenning/honcho") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -7468,7 +7468,7 @@ (define-public python-xlib (origin (method git-fetch) (uri (git-reference - (url "https://github.com/python-xlib/python-xlib.git") + (url "https://github.com/python-xlib/python-xlib") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -8801,7 +8801,7 @@ (define-public python-tlsh (origin (method git-fetch) (uri (git-reference - (url "https://github.com/trendmicro/tlsh.git") + (url "https://github.com/trendmicro/tlsh") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -12893,7 +12893,7 @@ (define-public python-schematics (origin (method git-fetch) (uri (git-reference - (url "https://github.com/schematics/schematics.git") + (url "https://github.com/schematics/schematics") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -15284,7 +15284,7 @@ (define-public python-flasgger (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rochacbruno/flasgger.git") + (url "https://github.com/rochacbruno/flasgger") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -15817,7 +15817,7 @@ (define-public python-dukpy (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kovidgoyal/dukpy.git") + (url "https://github.com/kovidgoyal/dukpy") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -16284,7 +16284,7 @@ (define-public python-send2trash (origin (method git-fetch) ;; Source tarball on PyPI doesn't include tests. (uri (git-reference - (url "https://github.com/hsoft/send2trash.git") + (url "https://github.com/hsoft/send2trash") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -16413,7 +16413,7 @@ (define-public python-funcy (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Suor/funcy.git") + (url "https://github.com/Suor/funcy") (commit version))) (sha256 (base32 "1s98vkjnq3zq71737hn8xa15kssvmy1sfzsll3vrlv53902418mw")) @@ -16532,7 +16532,7 @@ (define-public python-typed-ast (origin (method git-fetch) (uri (git-reference - (url "https://github.com/python/typed_ast.git") + (url "https://github.com/python/typed_ast") (commit version))) (sha256 (base32 "0l0hz809f7i356kmqkvfsaswiidb98j9hs9rrjnfawzqcbffzgyb")) @@ -16973,7 +16973,7 @@ (define-public python-glob2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/miracle2k/python-glob2.git") + (url "https://github.com/miracle2k/python-glob2") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -17163,7 +17163,7 @@ (define-public pybind11 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pybind/pybind11.git") + (url "https://github.com/pybind/pybind11") (commit (string-append "v" version)))) (sha256 (base32 @@ -18061,7 +18061,7 @@ (define-public python-retrying (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rholder/retrying.git") + (url "https://github.com/rholder/retrying") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -18858,7 +18858,7 @@ (define-public python-iocapture (origin (method git-fetch) (uri (git-reference - (url "https://github.com/oinume/iocapture.git") + (url "https://github.com/oinume/iocapture") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -18898,7 +18898,7 @@ (define-public python-argh (origin (method git-fetch) (uri (git-reference - (url "https://github.com/neithere/argh.git") + (url "https://github.com/neithere/argh") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -19788,7 +19788,7 @@ (define-public python-json5 ;; sample.json5 is missing from PyPi source tarball (method git-fetch) (uri (git-reference - (url "https://github.com/dpranke/pyjson5.git") + (url "https://github.com/dpranke/pyjson5") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -19830,7 +19830,7 @@ (define-public python-unpaddedbase64 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/matrix-org/python-unpaddedbase64.git") + (url "https://github.com/matrix-org/python-unpaddedbase64") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 4d95563403..7e9036c4b4 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -106,7 +106,7 @@ (define-public grantlee (origin (method git-fetch) (uri (git-reference - (url "https://github.com/steveire/grantlee.git") + (url "https://github.com/steveire/grantlee") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 890c6f63fd..812aa310c4 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -82,7 +82,7 @@ (define-public liquid-dsp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jgaeddert/liquid-dsp.git") + (url "https://github.com/jgaeddert/liquid-dsp") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -548,7 +548,7 @@ (define-public gqrx (origin (method git-fetch) (uri (git-reference - (url "https://github.com/csete/gqrx.git") + (url "https://github.com/csete/gqrx") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -712,7 +712,7 @@ (define-public hackrf (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mossmann/hackrf.git") + (url "https://github.com/mossmann/hackrf") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1025,7 +1025,7 @@ (define-public dump1090 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/flightaware/dump1090.git") + (url "https://github.com/flightaware/dump1090") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1067,7 +1067,7 @@ (define-public rtl-433 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/merbanan/rtl_433.git") + (url "https://github.com/merbanan/rtl_433") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1093,7 +1093,7 @@ (define-public multimon-ng (origin (method git-fetch) (uri (git-reference - (url "https://github.com/EliasOenal/multimon-ng.git") + (url "https://github.com/EliasOenal/multimon-ng") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/rails.scm b/gnu/packages/rails.scm index 2fc7f0a113..42cc240f1c 100644 --- a/gnu/packages/rails.scm +++ b/gnu/packages/rails.scm @@ -290,7 +290,7 @@ (define-public ruby-rails-dom-testing (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rails/rails-dom-testing.git") + (url "https://github.com/rails/rails-dom-testing") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -533,7 +533,7 @@ (define-public ruby-web-console ;; Download from GitHub as test files are not provided in the gem. (method git-fetch) (uri (git-reference - (url "https://github.com/rails/web-console.git") + (url "https://github.com/rails/web-console") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm index 999c1e10f0..3471cb604a 100644 --- a/gnu/packages/rdf.scm +++ b/gnu/packages/rdf.scm @@ -160,7 +160,7 @@ (define-public lrdf (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/swh/LRDF.git") + (url "https://github.com/swh/LRDF") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/rednotebook.scm b/gnu/packages/rednotebook.scm index e5b1b2c7bf..c7ece525e9 100644 --- a/gnu/packages/rednotebook.scm +++ b/gnu/packages/rednotebook.scm @@ -35,7 +35,7 @@ (define-public rednotebook (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jendrikseipp/rednotebook.git") + (url "https://github.com/jendrikseipp/rednotebook") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/rpc.scm b/gnu/packages/rpc.scm index de7d08ae4d..e26170942b 100644 --- a/gnu/packages/rpc.scm +++ b/gnu/packages/rpc.scm @@ -48,7 +48,7 @@ (define-public grpc (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/grpc/grpc.git") + (url "https://github.com/grpc/grpc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -124,7 +124,7 @@ (define-public grpc-1.16.1 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/grpc/grpc.git") + (url "https://github.com/grpc/grpc") (commit (string-append "v" version)))) (file-name (git-file-name "grpc" version)) (sha256 @@ -207,7 +207,7 @@ (define-public apache-thrift (origin (method git-fetch) (uri (git-reference - (url "https://github.com/apache/thrift.git") + (url "https://github.com/apache/thrift") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/rsync.scm b/gnu/packages/rsync.scm index 0d8217ee20..214095aa61 100644 --- a/gnu/packages/rsync.scm +++ b/gnu/packages/rsync.scm @@ -74,7 +74,7 @@ (define-public librsync (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/librsync/librsync.git") + (url "https://github.com/librsync/librsync") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 1ade88a624..8f48c3eba8 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -224,7 +224,7 @@ (define-public mruby (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mruby/mruby.git") + (url "https://github.com/mruby/mruby") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -632,7 +632,7 @@ (define-public ruby-rspec-its (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rspec/rspec-its.git") + (url "https://github.com/rspec/rspec-its") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -993,7 +993,7 @@ (define-public ruby-pandoc-ruby (origin (method git-fetch) ;the gem lacks many test files (uri (git-reference - (url "https://github.com/xwmx/pandoc-ruby.git") + (url "https://github.com/xwmx/pandoc-ruby") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1102,7 +1102,7 @@ (define-public ruby-asciidoctor (origin (method git-fetch) ;the gem release lacks a Rakefile (uri (git-reference - (url "https://github.com/asciidoctor/asciidoctor.git") + (url "https://github.com/asciidoctor/asciidoctor") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1206,7 +1206,7 @@ (define-public ruby-sporkmonger-rack-mount (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sporkmonger/rack-mount.git") + (url "https://github.com/sporkmonger/rack-mount") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1662,7 +1662,7 @@ (define-public ruby-execjs ;; fetch from github as the gem does not contain testing code (method git-fetch) (uri (git-reference - (url "https://github.com/rails/execjs.git") + (url "https://github.com/rails/execjs") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2195,7 +2195,7 @@ (define-public ruby-fuubar ;; the tests. (method git-fetch) (uri (git-reference - (url "https://github.com/thekompanee/fuubar.git") + (url "https://github.com/thekompanee/fuubar") (commit (string-append "releases/v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3108,7 +3108,7 @@ (define-public ruby-mysql2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/brianmario/mysql2.git") + (url "https://github.com/brianmario/mysql2") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3533,7 +3533,7 @@ (define-public ruby-net-scp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/net-ssh/net-scp.git") + (url "https://github.com/net-ssh/net-scp") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3705,7 +3705,7 @@ (define-public ruby-minitest-pretty-diff (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/adammck/minitest-pretty_diff.git") + (url "https://github.com/adammck/minitest-pretty_diff") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -4215,7 +4215,7 @@ (define-public ruby-minitar (origin (method git-fetch) (uri (git-reference - (url "https://github.com/halostatue/minitar.git") + (url "https://github.com/halostatue/minitar") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -4790,7 +4790,7 @@ (define-public ruby-tilt (origin (method git-fetch) ;the distributed gem lacks tests (uri (git-reference - (url "https://github.com/rtomayko/tilt.git") + (url "https://github.com/rtomayko/tilt") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5378,7 +5378,7 @@ (define-public ruby-listen ;; repository. (method git-fetch) (uri (git-reference - (url "https://github.com/guard/listen.git") + (url "https://github.com/guard/listen") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5518,7 +5518,7 @@ (define-public ruby-nokogumbo ;; published gem and the tarball on Github is outdated. (method git-fetch) (uri (git-reference - (url "https://github.com/rubys/nokogumbo.git") + (url "https://github.com/rubys/nokogumbo") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -5720,7 +5720,7 @@ (define-public ruby-byebug-11 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/deivid-rodriguez/byebug.git") + (url "https://github.com/deivid-rodriguez/byebug") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5836,7 +5836,7 @@ (define-public ruby-tdiff (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/postmodern/tdiff.git") + (url "https://github.com/postmodern/tdiff") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -5863,7 +5863,7 @@ (define-public ruby-nokogiri-diff (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/postmodern/nokogiri-diff.git") + (url "https://github.com/postmodern/nokogiri-diff") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -6409,7 +6409,7 @@ (define-public ruby-pry-byebug (origin (method git-fetch) (uri (git-reference - (url "https://github.com/deivid-rodriguez/pry-byebug.git") + (url "https://github.com/deivid-rodriguez/pry-byebug") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6564,7 +6564,7 @@ (define-public ruby-cucumber-messages (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cucumber/messages-ruby.git") + (url "https://github.com/cucumber/messages-ruby") (commit "12cd07eac87bce7843fd1bb0bf64bc4da09f097c"))) (file-name (git-file-name name version)) (sha256 @@ -6822,7 +6822,7 @@ (define-public ruby-cucumber (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cucumber/cucumber-ruby.git") + (url "https://github.com/cucumber/cucumber-ruby") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6937,7 +6937,7 @@ (define-public ruby-cucumber-core (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cucumber/cucumber-ruby-core.git") + (url "https://github.com/cucumber/cucumber-ruby-core") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -6981,7 +6981,7 @@ (define-public ruby-cucumber-expressions (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cucumber/cucumber-expressions-ruby.git") + (url "https://github.com/cucumber/cucumber-expressions-ruby") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -7039,7 +7039,7 @@ (define-public ruby-cucumber-tag-expressions (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cucumber/tag-expressions-ruby.git") + (url "https://github.com/cucumber/tag-expressions-ruby") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -9155,7 +9155,7 @@ (define-public ruby-rdoc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ruby/rdoc.git") + (url "https://github.com/ruby/rdoc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -9270,7 +9270,7 @@ (define-public ruby-sass-spec (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sass/sass-spec.git") + (url "https://github.com/sass/sass-spec") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -9457,7 +9457,7 @@ (define-public ruby-parallel (origin (method git-fetch) (uri (git-reference - (url "https://github.com/grosser/parallel.git") + (url "https://github.com/grosser/parallel") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -9870,7 +9870,7 @@ (define-public ruby-safe-yaml (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dtao/safe_yaml.git") + (url "https://github.com/dtao/safe_yaml") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -10395,7 +10395,7 @@ (define-public ruby-backport ;; The gem does not include test code, so fetch from the Git repository. (method git-fetch) (uri (git-reference - (url "https://github.com/castwide/backport.git") + (url "https://github.com/castwide/backport") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 6fc0fd4f52..851a996e4b 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -122,7 +122,7 @@ (define-public mrustc (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/thepowersgang/mrustc.git") + (url "https://github.com/thepowersgang/mrustc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index 4551e57d4a..a34d704867 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -890,7 +890,7 @@ (define-public stalin ;; (method git-fetch) (uri (git-reference - (url "https://github.com/barak/stalin.git") + (url "https://github.com/barak/stalin") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -962,7 +962,7 @@ (define-public femtolisp (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/JeffBezanson/femtolisp.git") + (url "https://github.com/JeffBezanson/femtolisp") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 diff --git a/gnu/packages/screen.scm b/gnu/packages/screen.scm index af519de0a3..0491731e20 100644 --- a/gnu/packages/screen.scm +++ b/gnu/packages/screen.scm @@ -159,7 +159,7 @@ (define-public reptyr (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nelhage/reptyr.git") + (url "https://github.com/nelhage/reptyr") (commit (string-append "reptyr-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm index 8f9f2ed2a4..a2054ce3e7 100644 --- a/gnu/packages/security-token.scm +++ b/gnu/packages/security-token.scm @@ -485,7 +485,7 @@ (define-public libu2f-server (method git-fetch) (uri (git-reference - (url "https://github.com/Yubico/libu2f-server.git") + (url "https://github.com/Yubico/libu2f-server") (commit (string-append "libu2f-server-" version)))) (file-name (git-file-name name version)) (sha256 @@ -528,7 +528,7 @@ (define-public pam-u2f (method git-fetch) (uri (git-reference - (url "https://github.com/Yubico/pam-u2f.git") + (url "https://github.com/Yubico/pam-u2f") (commit (string-append "pam_u2f-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/selinux.scm b/gnu/packages/selinux.scm index 1502d167c4..558a64a13b 100644 --- a/gnu/packages/selinux.scm +++ b/gnu/packages/selinux.scm @@ -52,7 +52,7 @@ (define-public libsepol (origin (method git-fetch) (uri (git-reference - (url "https://github.com/SELinuxProject/selinux.git") + (url "https://github.com/SELinuxProject/selinux") (commit release))) (file-name (string-append "selinux-" release "-checkout")) (sha256 @@ -327,7 +327,7 @@ (define-public python-setools (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/TresysTechnology/setools.git") + (url "https://github.com/TresysTechnology/setools") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index be81715116..fc0102caf0 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -60,7 +60,7 @@ (define-public cereal (origin (method git-fetch) (uri (git-reference - (url "https://github.com/USCiLab/cereal.git") + (url "https://github.com/USCiLab/cereal") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -145,7 +145,7 @@ (define-public libmpack (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tarruda/libmpack.git") + (url "https://github.com/tarruda/libmpack") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -175,7 +175,7 @@ (define-public lua-libmpack (origin (method git-fetch) (uri (git-reference - (url "https://github.com/libmpack/libmpack-lua.git") + (url "https://github.com/libmpack/libmpack-lua") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -267,7 +267,7 @@ (define-public yaml-cpp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jbeder/yaml-cpp.git") + (url "https://github.com/jbeder/yaml-cpp") (commit (string-append "yaml-cpp-" version)))) (file-name (git-file-name name version)) (sha256 @@ -321,7 +321,7 @@ (define-public jsoncpp-for-tensorflow (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/open-source-parsers/jsoncpp.git") + (url "https://github.com/open-source-parsers/jsoncpp") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 6e5db439fd..1ebdfce768 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -253,7 +253,7 @@ (define-public fish-foreign-env (origin (method git-fetch) (uri (git-reference - (url "https://github.com/oh-my-fish/plugin-foreign-env.git") + (url "https://github.com/oh-my-fish/plugin-foreign-env") (commit "dddd9213272a0ab848d474d0cbde12ad034e65bc"))) (file-name (git-file-name name version)) (sha256 @@ -300,7 +300,7 @@ (define-public rc (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rakitzis/rc.git") + (url "https://github.com/rakitzis/rc") (commit (string-append "v" version)))) (sha256 (base32 @@ -744,7 +744,7 @@ (define-public loksh (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dimkr/loksh.git") + (url "https://github.com/dimkr/loksh") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm index 29e288a402..b1db32a3dc 100644 --- a/gnu/packages/shellutils.scm +++ b/gnu/packages/shellutils.scm @@ -50,7 +50,7 @@ (define-public zsh-autosuggestions (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zsh-users/zsh-autosuggestions.git") + (url "https://github.com/zsh-users/zsh-autosuggestions") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -96,7 +96,7 @@ (define-public sh-z (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rupa/z.git") + (url "https://github.com/rupa/z") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -194,7 +194,7 @@ (define-public direnv (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/direnv/direnv.git") + (url "https://github.com/direnv/direnv") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -248,7 +248,7 @@ (define-public fzy (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jhawthorn/fzy.git") + (url "https://github.com/jhawthorn/fzy") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -282,7 +282,7 @@ (define-public hstr (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dvorka/hstr.git") + (url "https://github.com/dvorka/hstr") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -325,7 +325,7 @@ (define-public shell-functools (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sharkdp/shell-functools.git") + (url "https://github.com/sharkdp/shell-functools") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/simh.scm b/gnu/packages/simh.scm index bbca246bc1..b911b30b00 100644 --- a/gnu/packages/simh.scm +++ b/gnu/packages/simh.scm @@ -33,7 +33,7 @@ (define-public simh (origin (method git-fetch) (uri (git-reference - (url "https://github.com/simh/simh.git") + (url "https://github.com/simh/simh") (commit (string-append "v" version)))) (sha256 (base32 "1jiq6shj6a9xvzacvmyhxxd6xdyica8q4006qqjh5mh96rxrp15c")) diff --git a/gnu/packages/sml.scm b/gnu/packages/sml.scm index d441dcf638..216272517b 100644 --- a/gnu/packages/sml.scm +++ b/gnu/packages/sml.scm @@ -37,7 +37,7 @@ (define-public polyml (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/polyml/polyml.git") + (url "https://github.com/polyml/polyml") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index aaa552bfd6..9ae3d94194 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -78,7 +78,7 @@ (define-public hss (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/six-ddc/hss.git") + (url "https://github.com/six-ddc/hss") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -495,7 +495,7 @@ (define-public et (origin (method git-fetch) (uri (git-reference - (url "https://github.com/MisterTea/EternalTCP.git") + (url "https://github.com/MisterTea/EternalTCP") (commit (string-append "et-v" version)))) (file-name (git-file-name name version)) (sha256 @@ -828,7 +828,7 @@ (define-public endlessh (origin (method git-fetch) (uri (git-reference - (url "https://github.com/skeeto/endlessh.git") + (url "https://github.com/skeeto/endlessh") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 8633d1117b..7cbb6bf51e 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -5630,7 +5630,7 @@ (define-public r-catterplots (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Gibbsdavidl/CatterPlots.git") + (url "https://github.com/Gibbsdavidl/CatterPlots") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -5653,7 +5653,7 @@ (define-public r-colorout (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jalvesaq/colorout.git") + (url "https://github.com/jalvesaq/colorout") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/stenography.scm b/gnu/packages/stenography.scm index f0193da25f..c462deacfa 100644 --- a/gnu/packages/stenography.scm +++ b/gnu/packages/stenography.scm @@ -36,7 +36,7 @@ (define-public plover (origin (method git-fetch) (uri (git-reference - (url "https://github.com/openstenoproject/plover.git") + (url "https://github.com/openstenoproject/plover") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/sync.scm b/gnu/packages/sync.scm index 372cea81c1..9f1c5e349f 100644 --- a/gnu/packages/sync.scm +++ b/gnu/packages/sync.scm @@ -64,7 +64,7 @@ (define-public megacmd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/meganz/MEGAcmd.git") + (url "https://github.com/meganz/MEGAcmd") (commit (string-append version "_Linux")) (recursive? #t))) (sha256 @@ -266,7 +266,7 @@ (define-public lsyncd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/axkibe/lsyncd.git") + (url "https://github.com/axkibe/lsyncd") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index dfc222057e..e6a8ab4d31 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -663,7 +663,7 @@ (define-public go-github-com-chmduquesne-rollinghash (origin (method git-fetch) (uri (git-reference - (url "https://github.com/chmduquesne/rollinghash.git") + (url "https://github.com/chmduquesne/rollinghash") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -687,7 +687,7 @@ (define-public go-github-com-petermattis-goid (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/petermattis/goid.git") + (url "https://github.com/petermattis/goid") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -711,7 +711,7 @@ (define-public go-github-com-kballard-go-shellquote (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kballard/go-shellquote.git") + (url "https://github.com/kballard/go-shellquote") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -761,7 +761,7 @@ (define-public go-github-com-beorn7-perks-quantile (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/beorn7/perks.git") + (url "https://github.com/beorn7/perks") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -787,7 +787,7 @@ (define-public go-github-com-prometheus-client-model (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/prometheus/client_model.git") + (url "https://github.com/prometheus/client_model") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -820,7 +820,7 @@ (define-public go-github-com-matttproud-golang-protobuf-extensions-pbutil (method git-fetch) (uri (git-reference - (url "https://github.com/matttproud/golang_protobuf_extensions.git") + (url "https://github.com/matttproud/golang_protobuf_extensions") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -847,7 +847,7 @@ (define-public go-github-com-prometheus-common (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/prometheus/common.git") + (url "https://github.com/prometheus/common") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -890,7 +890,7 @@ (define-public go-github-com-prometheus-procfs (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/prometheus/procfs.git") + (url "https://github.com/prometheus/procfs") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -915,7 +915,7 @@ (define-public go-github-com-prometheus-client-golang (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/prometheus/client_golang.git") + (url "https://github.com/prometheus/client_golang") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1002,7 +1002,7 @@ (define-public go-github-com-flynn-archive-go-shlex (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/flynn-archive/go-shlex.git") + (url "https://github.com/flynn-archive/go-shlex") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1025,7 +1025,7 @@ (define-public go-github-com-audriusbutkevicius-pfilter (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AudriusButkevicius/pfilter.git") + (url "https://github.com/AudriusButkevicius/pfilter") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1050,7 +1050,7 @@ (define-public go-github-com-ccding-go-stun (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ccding/go-stun.git") + (url "https://github.com/ccding/go-stun") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/synergy.scm b/gnu/packages/synergy.scm index 4db15527d7..1f8f8f351e 100644 --- a/gnu/packages/synergy.scm +++ b/gnu/packages/synergy.scm @@ -42,7 +42,7 @@ (define-public synergy (origin (method git-fetch) (uri (git-reference - (url "https://github.com/symless/synergy-core.git") + (url "https://github.com/symless/synergy-core") (commit (string-append "v" version "-stable")))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm index 542d36a841..4c5e4d5d78 100644 --- a/gnu/packages/telephony.scm +++ b/gnu/packages/telephony.scm @@ -102,7 +102,7 @@ (define-public libilbc (method git-fetch) (uri (git-reference - (url "https://github.com/TimothyGu/libilbc.git") + (url "https://github.com/TimothyGu/libilbc") (commit (string-append "v" version)))) (file-name @@ -297,7 +297,7 @@ (define-public zrtpcpp (method git-fetch) (uri (git-reference - (url "https://github.com/wernerd/ZRTPCPP.git") + (url "https://github.com/wernerd/ZRTPCPP") (commit (string-append "V" version)))) (file-name @@ -727,7 +727,7 @@ (define-public pjproject (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pjsip/pjproject.git") + (url "https://github.com/pjsip/pjproject") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -813,7 +813,7 @@ (define-public libtgvoip (origin (method git-fetch) (uri (git-reference - (url "https://github.com/grishka/libtgvoip.git") + (url "https://github.com/grishka/libtgvoip") (commit version))) (file-name (git-file-name name version)) ;; Fix compilation on i686-linux architecture. diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index 81ce223385..2ece7e7fde 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -94,7 +94,7 @@ (define-public tilda (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lanoxx/tilda.git") + (url "https://github.com/lanoxx/tilda") (commit (string-append "tilda-" version)))) (file-name (git-file-name name version)) (sha256 @@ -365,7 +365,7 @@ (define-public picocom (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/npat-efault/picocom.git") + (url "https://github.com/npat-efault/picocom") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -407,7 +407,7 @@ (define-public beep ;; unmaintained for some time, and vulnerable to at least two CVEs: ;; https://github.com/johnath/beep/issues/11#issuecomment-454056858 ;; Use this maintained fork instead. - (url "https://github.com/spkr-beep/beep.git") + (url "https://github.com/spkr-beep/beep") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -438,7 +438,7 @@ (define-public unibilium (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mauke/unibilium.git") + (url "https://github.com/mauke/unibilium") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -708,7 +708,7 @@ (define-public go-github.com-nsf-termbox-go (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nsf/termbox-go.git") + (url "https://github.com/nsf/termbox-go") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -766,7 +766,7 @@ (define-public go-github.com-howeyc-gopass (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/howeyc/gopass.git") + (url "https://github.com/howeyc/gopass") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -902,7 +902,7 @@ (define-public tmate (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tmate-io/tmate.git") + (url "https://github.com/tmate-io/tmate") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -934,7 +934,7 @@ (define-public kitty (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kovidgoyal/kitty.git") + (url "https://github.com/kovidgoyal/kitty") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1041,7 +1041,7 @@ (define-public eternalterminal (origin (method git-fetch) (uri (git-reference - (url "https://github.com/MisterTea/EternalTerminal.git") + (url "https://github.com/MisterTea/EternalTerminal") (commit (string-append "et-v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1081,7 +1081,7 @@ (define-public wterm (origin (method git-fetch) (uri (git-reference - (url "https://github.com/majestrate/wterm.git") + (url "https://github.com/majestrate/wterm") (commit "0ae42717c08a85a6509214e881422c7fbe7ecc45"))) (sha256 (base32 @@ -1137,7 +1137,7 @@ (define-public alacritty (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jwilm/alacritty.git") + (url "https://github.com/jwilm/alacritty") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7b10433269..c4f9f6cfb7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3094,7 +3094,7 @@ (define-public texlive-luatex-luaotfload (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lualatex/luaotfload.git") + (url "https://github.com/lualatex/luaotfload") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm index 70e050371d..dea26a6395 100644 --- a/gnu/packages/texinfo.scm +++ b/gnu/packages/texinfo.scm @@ -253,7 +253,7 @@ (define-public pinfo (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/baszoetekouw/pinfo.git") + (url "https://github.com/baszoetekouw/pinfo") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 924dc68c03..c3ee8cfdd0 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -502,7 +502,7 @@ (define-public ghostwriter (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wereturtle/ghostwriter.git") + (url "https://github.com/wereturtle/ghostwriter") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -559,7 +559,7 @@ (define-public manuskript (origin (method git-fetch) (uri (git-reference - (url "https://github.com/olivierkes/manuskript.git") + (url "https://github.com/olivierkes/manuskript") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -661,7 +661,7 @@ (define-public editorconfig-core-c (origin (method git-fetch) (uri (git-reference - (url "https://github.com/editorconfig/editorconfig-core-c.git") + (url "https://github.com/editorconfig/editorconfig-core-c") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -903,7 +903,7 @@ (define-public ne (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vigna/ne.git") + (url "https://github.com/vigna/ne") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 090ac1d91c..3c765aa887 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -259,7 +259,7 @@ (define-public cityhash (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/google/cityhash.git") + (url "https://github.com/google/cityhash") (commit commit))) (file-name (string-append name "-" version ".tar.gz")) (sha256 @@ -710,7 +710,7 @@ (define-public dotconf (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/williamh/dotconf.git") + (url "https://github.com/williamh/dotconf") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -878,7 +878,7 @@ (define-public python-editdistance (origin (method git-fetch) (uri (git-reference - (url "https://github.com/aflc/editdistance.git") + (url "https://github.com/aflc/editdistance") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -1087,7 +1087,7 @@ (define-public nkf (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nurse/nkf.git") + (url "https://github.com/nurse/nkf") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index 6eefb6c525..0249334a2e 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -247,7 +247,7 @@ (define-public python-ciso8601 (method git-fetch) ;; The PyPi distribution doesn't include the tests. (uri (git-reference - (url "https://github.com/closeio/ciso8601.git") + (url "https://github.com/closeio/ciso8601") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index c028a885d2..c81b526999 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -74,7 +74,7 @@ (define-public tmux-themepack (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jimeh/tmux-themepack.git") + (url "https://github.com/jimeh/tmux-themepack") (commit commit))) (sha256 (base32 @@ -104,7 +104,7 @@ (define-public tmuxifier (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/jimeh/tmuxifier.git") + (url "https://github.com/jimeh/tmuxifier") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -151,7 +151,7 @@ (define-public python-libtmux (method git-fetch) ;; PyPI source tarball does not include tests. (uri (git-reference - (url "https://github.com/tmux-python/libtmux.git") + (url "https://github.com/tmux-python/libtmux") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -196,7 +196,7 @@ (define-public python-daemux (origin (method git-fetch) (uri (git-reference - (url "https://github.com/edouardklein/daemux.git") + (url "https://github.com/edouardklein/daemux") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -231,7 +231,7 @@ (define-public tmux-xpanes (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/greymd/tmux-xpanes.git") + (url "https://github.com/greymd/tmux-xpanes") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index 24d10cc417..c852c54a5b 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -218,7 +218,7 @@ (define-public onionshare (origin (method git-fetch) (uri (git-reference - (url "https://github.com/micahflee/onionshare.git") + (url "https://github.com/micahflee/onionshare") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm index f643e06974..459c0c4953 100644 --- a/gnu/packages/toys.scm +++ b/gnu/packages/toys.scm @@ -42,7 +42,7 @@ (define-public sl (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mtoyoda/sl.git") + (url "https://github.com/mtoyoda/sl") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 5151e63ee1..d2a24c7571 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -723,7 +723,7 @@ (define-public git-crypt (origin (method git-fetch) (uri (git-reference - (url "https://github.com/AGWA/git-crypt.git") + (url "https://github.com/AGWA/git-crypt") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -971,7 +971,7 @@ (define-public python-ghp-import (origin (method git-fetch) (uri (git-reference - (url "https://github.com/davisp/ghp-import.git") + (url "https://github.com/davisp/ghp-import") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1102,7 +1102,7 @@ (define-public shflags (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kward/shflags.git") + (url "https://github.com/kward/shflags") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1185,7 +1185,7 @@ (define-public stgit (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ctmarinas/stgit.git") + (url "https://github.com/ctmarinas/stgit") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1237,7 +1237,7 @@ (define-public vcsh (origin (method git-fetch) (uri (git-reference - (url "https://github.com/RichiH/vcsh.git") + (url "https://github.com/RichiH/vcsh") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1312,7 +1312,7 @@ (define-public gitolite (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sitaramc/gitolite.git") + (url "https://github.com/sitaramc/gitolite") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2058,7 +2058,7 @@ (define-public findnewest (origin (method git-fetch) (uri (git-reference - (url "https://github.com/0-wiz-0/findnewest.git") + (url "https://github.com/0-wiz-0/findnewest") (commit (string-append "findnewest-" version)))) (file-name (git-file-name name version)) (sha256 @@ -2130,7 +2130,7 @@ (define-public git-annex-remote-rclone (origin (method git-fetch) (uri (git-reference - (url "https://github.com/DanielDent/git-annex-remote-rclone.git") + (url "https://github.com/DanielDent/git-annex-remote-rclone") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2399,7 +2399,7 @@ (define-public git-imerge (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mhagger/git-imerge.git") + (url "https://github.com/mhagger/git-imerge") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 9d156d7012..e188b37f14 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1170,7 +1170,7 @@ (define-public ffmpeg-for-stepmania (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stepmania/ffmpeg.git") + (url "https://github.com/stepmania/ffmpeg") (commit "eda6effcabcf9c238e4635eb058d72371336e09b"))) (sha256 (base32 "1by8rmbva8mfrivdbbkr2gx4kga89zqygkd4cfjl76nr8mdcdamb")) @@ -1196,7 +1196,7 @@ (define-public ffmpegthumbnailer (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dirkvdb/ffmpegthumbnailer.git") + (url "https://github.com/dirkvdb/ffmpegthumbnailer") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1469,7 +1469,7 @@ (define-public mpv (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mpv-player/mpv.git") + (url "https://github.com/mpv-player/mpv") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1798,7 +1798,7 @@ (define-public you-get (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/soimort/you-get.git") + (url "https://github.com/soimort/you-get") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1837,7 +1837,7 @@ (define-public youtube-viewer (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/trizen/youtube-viewer.git") + (url "https://github.com/trizen/youtube-viewer") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2221,7 +2221,7 @@ (define-public vapoursynth (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vapoursynth/vapoursynth.git") + (url "https://github.com/vapoursynth/vapoursynth") (commit (string-append "R" version)))) (file-name (git-file-name name version)) (sha256 @@ -2326,7 +2326,7 @@ (define-public twitchy (origin (method git-fetch) (uri (git-reference - (url "https://github.com/BasioMeusPuga/twitchy.git") + (url "https://github.com/BasioMeusPuga/twitchy") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2369,7 +2369,7 @@ (define-public mlt (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mltframework/mlt.git") + (url "https://github.com/mltframework/mlt") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2462,7 +2462,7 @@ (define-public obs (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/obsproject/obs-studio.git") + (url "https://github.com/obsproject/obs-studio") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2631,7 +2631,7 @@ (define-public simplescreenrecorder (origin (method git-fetch) (uri (git-reference - (url "https://github.com/MaartenBaert/ssr.git") + (url "https://github.com/MaartenBaert/ssr") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2771,7 +2771,7 @@ (define-public mps-youtube (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mps-youtube/mps-youtube.git") + (url "https://github.com/mps-youtube/mps-youtube") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3226,7 +3226,7 @@ (define-public ffms2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/FFMS/ffms2.git") + (url "https://github.com/FFMS/ffms2") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3328,7 +3328,7 @@ (define-public gst-transcoder (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pitivi/gst-transcoder.git") + (url "https://github.com/pitivi/gst-transcoder") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -3442,7 +3442,7 @@ (define-public motion (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Motion-Project/motion.git") + (url "https://github.com/Motion-Project/motion") (commit (string-append "release-" version)))) (sha256 (base32 @@ -3489,7 +3489,7 @@ (define-public subdl (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alexanderwink/subdl.git") + (url "https://github.com/alexanderwink/subdl") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3523,7 +3523,7 @@ (define-public l-smash (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/l-smash/l-smash.git") + (url "https://github.com/l-smash/l-smash") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -3587,7 +3587,7 @@ (define-public vidstab (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/georgmartius/vid.stab.git") + (url "https://github.com/georgmartius/vid.stab") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3763,7 +3763,7 @@ (define-public wlstream (origin (method git-fetch) (uri (git-reference - (url "https://github.com/atomnuker/wlstream.git") + (url "https://github.com/atomnuker/wlstream") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3860,7 +3860,7 @@ (define-public theorafile (origin (method git-fetch) (uri (git-reference - (url "https://github.com/FNA-XNA/Theorafile.git") + (url "https://github.com/FNA-XNA/Theorafile") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -3921,7 +3921,7 @@ (define-public svt-av1 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/OpenVisualCloud/SVT-AV1.git") + (url "https://github.com/OpenVisualCloud/SVT-AV1") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -4065,7 +4065,7 @@ (define-public peek (origin (method git-fetch) (uri (git-reference - (url "https://github.com/phw/peek.git") + (url "https://github.com/phw/peek") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -4099,7 +4099,7 @@ (define-public wf-recorder (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ammen99/wf-recorder.git") + (url "https://github.com/ammen99/wf-recorder") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index df6359351f..ab3492fe25 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -458,7 +458,7 @@ (define-public vim-fugitive (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tpope/vim-fugitive.git") + (url "https://github.com/tpope/vim-fugitive") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -574,7 +574,7 @@ (define-public editorconfig-vim (origin (method git-fetch) (uri (git-reference - (url "https://github.com/editorconfig/editorconfig-vim.git") + (url "https://github.com/editorconfig/editorconfig-vim") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index 64cd815bb8..051b81e2bd 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -878,7 +878,7 @@ (define-public qmpbackup (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/abbbi/qmpbackup.git") + (url "https://github.com/abbbi/qmpbackup") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/vlang.scm b/gnu/packages/vlang.scm index d73dd566c5..6722258aa1 100644 --- a/gnu/packages/vlang.scm +++ b/gnu/packages/vlang.scm @@ -33,7 +33,7 @@ (define-public v (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vlang/v.git") + (url "https://github.com/vlang/v") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -103,7 +103,7 @@ (define-public v (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vlang/vc.git") + (url "https://github.com/vlang/vc") (commit vc-version))) (file-name (git-file-name "vc" vc-version)) (sha256 diff --git a/gnu/packages/vnc.scm b/gnu/packages/vnc.scm index dcfbe89829..a084b30f59 100644 --- a/gnu/packages/vnc.scm +++ b/gnu/packages/vnc.scm @@ -51,7 +51,7 @@ (define-public tigervnc-client (method git-fetch) (uri (git-reference - (url "https://github.com/TigerVNC/tigervnc.git") + (url "https://github.com/TigerVNC/tigervnc") (commit commit))) (sha256 (base32 @@ -238,7 +238,7 @@ (define-public libvnc (origin (method git-fetch) (uri (git-reference - (url "https://github.com/LibVNC/libvncserver.git") + (url "https://github.com/LibVNC/libvncserver") (commit (string-append "LibVNCServer-" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index ed9be6c16d..65cf5bd355 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -227,7 +227,7 @@ (define-public ocproxy (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cernekee/ocproxy.git") + (url "https://github.com/cernekee/ocproxy") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -327,7 +327,7 @@ (define-public protonvpn-cli ;; Thus, fetch code from Git. (method git-fetch) (uri (git-reference - (url "https://github.com/ProtonVPN/linux-cli.git") + (url "https://github.com/ProtonVPN/linux-cli") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -462,7 +462,7 @@ (define-public badvpn (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ambrop72/badvpn.git") + (url "https://github.com/ambrop72/badvpn") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index a38959feac..dd113bc0d4 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -219,7 +219,7 @@ (define-public luakit (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/luakit/luakit.git") + (url "https://github.com/luakit/luakit") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 1a7ea54601..c7f4337e2a 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -198,7 +198,7 @@ (define-public mod-wsgi (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/GrahamDumpleton/mod_wsgi.git") + (url "https://github.com/GrahamDumpleton/mod_wsgi") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -423,7 +423,7 @@ (define-public nginx-accept-language-module (origin (method git-fetch) (uri (git-reference - (url "https://github.com/giom/nginx_accept_language_module.git") + (url "https://github.com/giom/nginx_accept_language_module") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -647,7 +647,7 @@ (define-public fcgiwrap (origin (method git-fetch) (uri (git-reference - (url "https://github.com/gnosek/fcgiwrap.git") + (url "https://github.com/gnosek/fcgiwrap") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -844,7 +844,7 @@ (define-public json-parser ;; do not use auto-generated tarballs (method git-fetch) (uri (git-reference - (url "https://github.com/udp/json-parser.git") + (url "https://github.com/udp/json-parser") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -874,7 +874,7 @@ (define-public qjson (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/flavio/qjson.git") + (url "https://github.com/flavio/qjson") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -914,7 +914,7 @@ (define-public qoauth (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ayoy/qoauth.git") + (url "https://github.com/ayoy/qoauth") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1045,7 +1045,7 @@ (define-public rapidjson (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Tencent/rapidjson.git") + (url "https://github.com/Tencent/rapidjson") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1086,7 +1086,7 @@ (define-public libyajl (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/lloyd/yajl.git") + (url "https://github.com/lloyd/yajl") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1117,7 +1117,7 @@ (define-public libwebsockets ;; things from Git. (method git-fetch) (uri (git-reference - (url "https://github.com/warmcat/libwebsockets.git") + (url "https://github.com/warmcat/libwebsockets") (commit (string-append "v" version "-chrome37-firefox30")))) (sha256 @@ -1196,7 +1196,7 @@ (define-public websocketpp (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zaphoyd/websocketpp.git") + (url "https://github.com/zaphoyd/websocketpp") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1230,7 +1230,7 @@ (define-public wslay (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tatsuhiro-t/wslay.git") + (url "https://github.com/tatsuhiro-t/wslay") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 @@ -1406,7 +1406,7 @@ (define-public websockify (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/novnc/websockify.git") + (url "https://github.com/novnc/websockify") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1667,7 +1667,7 @@ (define-public libsass (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sass/libsass.git") + (url "https://github.com/sass/libsass") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1701,7 +1701,7 @@ (define-public sassc (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sass/sassc.git") + (url "https://github.com/sass/sassc") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1758,7 +1758,7 @@ (define-public sassc/libsass-3.5 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sass/libsass.git") + (url "https://github.com/sass/libsass") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -5021,7 +5021,7 @@ (define-public libcyaml (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tlsa/libcyaml.git") + (url "https://github.com/tlsa/libcyaml") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -5747,7 +5747,7 @@ (define-public xinetd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/openSUSE/xinetd.git") + (url "https://github.com/openSUSE/xinetd") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -7311,7 +7311,7 @@ (define-public hpcguix-web (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/UMCUGenetics/hpcguix-web.git") + (url "https://github.com/UMCUGenetics/hpcguix-web") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/wireservice.scm b/gnu/packages/wireservice.scm index 0d772b54d1..e3bfe8d478 100644 --- a/gnu/packages/wireservice.scm +++ b/gnu/packages/wireservice.scm @@ -67,7 +67,7 @@ (define-public python-leather (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wireservice/leather.git") + (url "https://github.com/wireservice/leather") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -93,7 +93,7 @@ (define-public python-agate (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wireservice/agate.git") + (url "https://github.com/wireservice/agate") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -126,7 +126,7 @@ (define-public python-agate-sql (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wireservice/agate-sql.git") + (url "https://github.com/wireservice/agate-sql") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -152,7 +152,7 @@ (define-public python-agate-dbf (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wireservice/agate-dbf.git") + (url "https://github.com/wireservice/agate-dbf") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -177,7 +177,7 @@ (define-public python-agate-excel (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wireservice/agate-excel.git") + (url "https://github.com/wireservice/agate-excel") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 8b54376f37..2849873329 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -121,7 +121,7 @@ (define-public bspwm (origin (method git-fetch) (uri (git-reference - (url "https://github.com/baskerville/bspwm.git") + (url "https://github.com/baskerville/bspwm") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -403,7 +403,7 @@ (define-public i3blocks (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/vivien/i3blocks.git") + (url "https://github.com/vivien/i3blocks") (commit version))) (sha256 (base32 @@ -458,7 +458,7 @@ (define-public python-i3-py ;; for years. (method git-fetch) (uri (git-reference - (url "https://github.com/ziberna/i3-py.git") + (url "https://github.com/ziberna/i3-py") (commit "27f88a616e9ecc340e7d041d3d00782f8a1964c1"))) (sha256 (base32 @@ -503,7 +503,7 @@ (define-public quickswitch-i3 ;; instead of the release. (method git-fetch) (uri (git-reference - (url "https://github.com/proxypoke/quickswitch-for-i3.git") + (url "https://github.com/proxypoke/quickswitch-for-i3") (commit commit))) (sha256 (base32 @@ -541,7 +541,7 @@ (define-public i3lock-color (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PandorasFox/i3lock-color.git") + (url "https://github.com/PandorasFox/i3lock-color") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -584,7 +584,7 @@ (define-public i3lock-fancy (origin (method git-fetch) (uri (git-reference - (url "https://github.com/meskarune/i3lock-fancy.git") + (url "https://github.com/meskarune/i3lock-fancy") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1109,7 +1109,7 @@ (define-public spectrwm (origin (method git-fetch) (uri (git-reference - (url "https://github.com/conformal/spectrwm.git") + (url "https://github.com/conformal/spectrwm") (commit (string-append "SPECTRWM_" (string-join (string-split version #\.) "_"))))) @@ -1317,7 +1317,7 @@ (define-public wlroots (origin (method git-fetch) (uri (git-reference - (url "https://github.com/swaywm/wlroots.git") + (url "https://github.com/swaywm/wlroots") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1362,7 +1362,7 @@ (define-public sway (origin (method git-fetch) (uri (git-reference - (url "https://github.com/swaywm/sway.git") + (url "https://github.com/swaywm/sway") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1414,7 +1414,7 @@ (define-public swayidle (origin (method git-fetch) (uri (git-reference - (url "https://github.com/swaywm/swayidle.git") + (url "https://github.com/swaywm/swayidle") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1440,7 +1440,7 @@ (define-public swaylock (origin (method git-fetch) (uri (git-reference - (url "https://github.com/swaywm/swaylock.git") + (url "https://github.com/swaywm/swaylock") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1468,7 +1468,7 @@ (define-public swaybg (origin (method git-fetch) (uri (git-reference - (url "https://github.com/swaywm/swaybg.git") + (url "https://github.com/swaywm/swaybg") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1493,7 +1493,7 @@ (define-public waybar (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Alexays/Waybar.git") + (url "https://github.com/Alexays/Waybar") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1531,7 +1531,7 @@ (define-public mako (origin (method git-fetch) (uri (git-reference - (url "https://github.com/emersion/mako.git") + (url "https://github.com/emersion/mako") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1559,7 +1559,7 @@ (define-public stumpwm (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stumpwm/stumpwm.git") + (url "https://github.com/stumpwm/stumpwm") (commit version))) (file-name (git-file-name "stumpwm" version)) (sha256 @@ -1669,7 +1669,7 @@ (define stumpwm-contrib (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stumpwm/stumpwm-contrib.git") + (url "https://github.com/stumpwm/stumpwm-contrib") (commit commit))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm index 2cdff17404..7141b2f4b8 100644 --- a/gnu/packages/wxwidgets.scm +++ b/gnu/packages/wxwidgets.scm @@ -162,7 +162,7 @@ (define-public wxwidgets-3.1 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wxWidgets/wxWidgets.git") + (url "https://github.com/wxWidgets/wxWidgets") (commit (string-append "v" version)))) (file-name (git-file-name "wxwidgets" version)) (sha256 diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 6033b40380..2308580f5c 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -221,7 +221,7 @@ (define-public bemenu (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Cloudef/bemenu.git") + (url "https://github.com/Cloudef/bemenu") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -265,7 +265,7 @@ (define-public copyq (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hluk/CopyQ.git") + (url "https://github.com/hluk/CopyQ") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -296,7 +296,7 @@ (define-public xclip (origin (method git-fetch) (uri (git-reference - (url "https://github.com/astrand/xclip.git") + (url "https://github.com/astrand/xclip") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -633,7 +633,7 @@ (define-public scrot (method git-fetch) (uri (git-reference - (url "https://github.com/resurrecting-open-source-projects/scrot.git") + (url "https://github.com/resurrecting-open-source-projects/scrot") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -665,7 +665,7 @@ (define-public slop (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/naelstrof/slop.git") + (url "https://github.com/naelstrof/slop") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -698,7 +698,7 @@ (define-public maim (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/naelstrof/maim.git") + (url "https://github.com/naelstrof/maim") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1051,7 +1051,7 @@ (define-public xcape (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/alols/xcape.git") + (url "https://github.com/alols/xcape") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1244,7 +1244,7 @@ (define-public redshift-wayland (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/minus7/redshift.git") + (url "https://github.com/minus7/redshift") (commit commit))) (file-name (string-append name "-" version)) (sha256 @@ -1552,7 +1552,7 @@ (define-public dzen (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/robm/dzen.git") + (url "https://github.com/robm/dzen") (commit commit))) (file-name (string-append name "-" version)) (sha256 @@ -1722,7 +1722,7 @@ (define-public nxbelld (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dusxmt/nxbelld.git") + (url "https://github.com/dusxmt/nxbelld") (commit version))) (sha256 (base32 @@ -1918,7 +1918,7 @@ (define-public xrandr-invert-colors (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/zoltanp/xrandr-invert-colors.git") + (url "https://github.com/zoltanp/xrandr-invert-colors") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2053,7 +2053,7 @@ (define-public wl-clipboard (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bugaevc/wl-clipboard.git") + (url "https://github.com/bugaevc/wl-clipboard") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2103,7 +2103,7 @@ (define-public jgmenu (origin (method git-fetch) (uri (git-reference - (url "https://github.com/johanmalm/jgmenu.git") + (url "https://github.com/johanmalm/jgmenu") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2222,7 +2222,7 @@ (define-public xsettingsd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/derat/xsettingsd.git") + (url "https://github.com/derat/xsettingsd") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2288,7 +2288,7 @@ (define-public clipnotify (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cdown/clipnotify.git") + (url "https://github.com/cdown/clipnotify") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -2339,7 +2339,7 @@ (define-public clipmenu (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cdown/clipmenu.git") + (url "https://github.com/cdown/clipmenu") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -2418,7 +2418,7 @@ (define-public kbdd (origin (method git-fetch) (uri (git-reference - (url "https://github.com/qnikst/kbdd.git") + (url "https://github.com/qnikst/kbdd") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2454,7 +2454,7 @@ (define-public j4-dmenu-desktop (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/enkore/j4-dmenu-desktop.git") + (url "https://github.com/enkore/j4-dmenu-desktop") (commit (string-append "r" version)))) (file-name (git-file-name name version)) (sha256 diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 90181a1773..c3a9a1cfeb 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1108,7 +1108,7 @@ (define-public tinyxml2 (origin (method git-fetch) (uri (git-reference - (url "https://github.com/leethomason/tinyxml2.git") + (url "https://github.com/leethomason/tinyxml2") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1216,7 +1216,7 @@ (define-public xlsx2csv (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dilshod/xlsx2csv.git") + (url "https://github.com/dilshod/xlsx2csv") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -1628,7 +1628,7 @@ (define-public java-xom (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/elharo/xom.git") + (url "https://github.com/elharo/xom") (commit (string-append "XOM_" version)))) (file-name (git-file-name name version)) (sha256 @@ -1767,7 +1767,7 @@ (define-public java-dom4j (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/dom4j/dom4j.git") + (url "https://github.com/dom4j/dom4j") (commit (string-append "version-" version)))) (file-name (git-file-name name version)) (sha256 @@ -1840,7 +1840,7 @@ (define-public java-kxml2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/stefanhaustein/kxml2.git") + (url "https://github.com/stefanhaustein/kxml2") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -1914,7 +1914,7 @@ (define-public java-jettison (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/codehaus/jettison.git") + (url "https://github.com/codehaus/jettison") (commit (string-append "jettison-" version)))) (file-name (git-file-name name version)) (sha256 @@ -1946,7 +1946,7 @@ (define-public java-jdom2 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/hunterhacker/jdom.git") + (url "https://github.com/hunterhacker/jdom") (commit (string-append "JDOM-" version)))) (file-name (git-file-name name version)) (sha256 @@ -1974,7 +1974,7 @@ (define-public java-xstream (origin (method git-fetch) (uri (git-reference - (url "https://github.com/x-stream/xstream.git") + (url "https://github.com/x-stream/xstream") (commit (string-append "XSTREAM_" (string-map (lambda (x) (if (eq? x #\.) #\_ x)) diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 9b663aa158..eef2eb13ba 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -3540,7 +3540,7 @@ (define-public v86d (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mjanusz/v86d.git") + (url "https://github.com/mjanusz/v86d") (commit (string-append name "-" version)))) (file-name (git-file-name name version)) (sha256 @@ -6698,7 +6698,7 @@ (define-public xcur2png (origin (method git-fetch) (uri (git-reference - (url "https://github.com/eworm-de/xcur2png.git") + (url "https://github.com/eworm-de/xcur2png") (commit version))) (file-name (git-file-name name version)) (sha256 diff --git a/tests/lint.scm b/tests/lint.scm index 83becb655a..2f5e5623c1 100644 --- a/tests/lint.scm +++ b/tests/lint.scm @@ -611,7 +611,7 @@ (define (warning-contains? str warnings) (origin (method git-fetch) (uri (git-reference - (url "https://github.com/archive/example.git") + (url "https://github.com/archive/example") (commit "0"))) (sha256 %null-sha256)))))) (check-source-unstable-tarball pkg))) -- cgit v1.2.3 From 702a10125724c2af7eadfab3a9edf71c3d32936b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 16 Jul 2020 18:20:30 +0200 Subject: gnu: Use HTTPS for github.com (and subdomains) home pages. * gnu/packages/bioconductor.scm (r-qvalue)[home-page]: Use HTTPS and follow permanent redirection. * gnu/packages/check.scm (python-codecov, python-nosexcover) [home-page]: Likewise. * gnu/packages/cran.scm (r-ffbase, r-ggrepel, r-valr) [home-page]: Likewise. * gnu/packages/crates-io.scm (rust-block-0.1, rust-dispatch-0.1) (rust-objc-0.2, rust-objc-exception-0.1) (rust-objc-foundation-0.1, rust-objc-id-0.1, rust-objc-test-utils-0.0) (rust-onig-5.0, rust-onig-sys-69.2, rust-vergen-3.1) [home-page]: Likewise. * gnu/packages/finance.scm (ledger-agent, keepkey-agent) [home-page]: Likewise. * gnu/packages/haskell-check.scm (ghc-tasty-expected-failure) [home-page]: Likewise. * gnu/packages/haskell-web.scm (ghc-bsb-http-chunked, ghc-warp) (ghc-warp-tls)[home-page]: Likewise. * gnu/packages/haskell-xyz.scm (ghc-configurator, ghc-hasktags) (ghc-linear, ghc-newtype-generics, ghc-retry, ghc-xdg-basedir) (ghc-pretty-show)[home-page]: Likewise. * gnu/packages/java.scm (java-javax-inject)[home-page]: Likewise. * gnu/packages/libffi.scm (ruby-ffi)[home-page]: Likewise. * gnu/packages/linux.scm (procenv)[home-page]: Likewise. * gnu/packages/python-web.scm (python-aiodns, python-flask-htpasswd) (python-pycares)[home-page]: Likewise. * gnu/packages/python-xyz.scm (python-progressbar33, python-whatever) (python-funcy)[home-page]: Likewise. * gnu/packages/ruby.scm (ruby-rubyzip, ruby-spinach, ruby-gherkin-ruby) (ruby-code-statistics, ruby-colorize, ruby-wwtd)[home-page]: Likewise. --- gnu/packages/bioconductor.scm | 2 +- gnu/packages/check.scm | 4 ++-- gnu/packages/cran.scm | 6 +++--- gnu/packages/crates-io.scm | 20 ++++++++++---------- gnu/packages/finance.scm | 4 ++-- gnu/packages/haskell-check.scm | 2 +- gnu/packages/haskell-web.scm | 6 +++--- gnu/packages/haskell-xyz.scm | 14 +++++++------- gnu/packages/java.scm | 2 +- gnu/packages/libffi.scm | 2 +- gnu/packages/linux.scm | 2 +- gnu/packages/python-web.scm | 6 +++--- gnu/packages/python-xyz.scm | 6 +++--- gnu/packages/ruby.scm | 12 ++++++------ 14 files changed, 44 insertions(+), 44 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 3ab94cb431..b191c8b4ae 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -1587,7 +1587,7 @@ (define-public r-qvalue ("r-reshape2" ,r-reshape2))) (native-inputs `(("r-knitr" ,r-knitr))) - (home-page "http://github.com/jdstorey/qvalue") + (home-page "https://github.com/StoreyLab/qvalue") (synopsis "Q-value estimation for false discovery rate control") (description "This package takes a list of p-values resulting from the simultaneous diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 8dd4b364ef..661ed65e53 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1600,7 +1600,7 @@ (define-public python-codecov (propagated-inputs `(("python-coverage" ,python-coverage) ("python-requests" ,python-requests))) - (home-page "http://github.com/codecov/codecov-python") + (home-page "https://github.com/codecov/codecov-python") (synopsis "Upload code coverage reports to @code{codecov.io}") (description "Codecov collects code coverage reports from code written in Python, Java, @@ -2163,7 +2163,7 @@ (define-public python-nosexcover (propagated-inputs `(("python-coverage" ,python-coverage) ("python-nose" ,python-nose))) - (home-page "http://github.com/cmheisel/nose-xcover") + (home-page "https://github.com/cmheisel/nose-xcover") (synopsis "Extends nose.plugins.cover to add Cobertura-style XML reports") (description "Nose-xcover is a companion to the built-in @code{nose.plugins.cover}. This plugin will write out an XML coverage report diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d87b5d5b06..e6fd3f27c3 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2347,7 +2347,7 @@ (define-public r-ffbase `(("r-bit" ,r-bit) ("r-fastmatch" ,r-fastmatch) ("r-ff" ,r-ff))) - (home-page "http://github.com/edwindj/ffbase") + (home-page "https://github.com/edwindj/ffbase") (synopsis "Basic statistical functions for package 'ff'") (description "This package extends the out of memory vectors of @code{ff} with @@ -3530,7 +3530,7 @@ (define-public r-ggrepel ("r-scales" ,r-scales))) (native-inputs `(("r-knitr" ,r-knitr))) ; for vignettes - (home-page "http://github.com/slowkow/ggrepel") + (home-page "https://github.com/slowkow/ggrepel") (synopsis "Repulsive text and label geometries for ggplot2") (description "This package provides text and label geometries for ggplot2 that help to @@ -13205,7 +13205,7 @@ (define-public r-valr ("r-tibble" ,r-tibble))) (native-inputs `(("r-knitr" ,r-knitr))) - (home-page "http://github.com/rnabioco/valr") + (home-page "https://github.com/rnabioco/valr") (synopsis "Genome interval arithmetic in R") (description "This package enables you to read and manipulate genome intervals and diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 806e111f6f..9df41311a1 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -1995,7 +1995,7 @@ (define-public rust-block-0.1 `(#:skip-build? #t #:cargo-development-inputs (("rust-objc-test-utils" ,rust-objc-test-utils-0.0)))) - (home-page "http://github.com/SSheldon/rust-block") + (home-page "https://github.com/SSheldon/rust-block") (synopsis "Rust interface for Apple's C language extension of blocks") (description "This package provides a rust interface for Apple's C language extension of blocks.") @@ -5724,7 +5724,7 @@ (define-public rust-dispatch-0.1 "019nzy993hxaiazcdnayx3csv2iki34i535asw11ki96hakkrs84")))) (build-system cargo-build-system) (arguments '(#:tests? #f)) ; Tests only run on Mac. - (home-page "http://github.com/SSheldon/rust-dispatch") + (home-page "https://github.com/SSheldon/rust-dispatch") (synopsis "Rust wrapper for Apple's Grand Central Dispatch") (description "This package provides a Rust wrapper for Apple's Grand Central Dispatch.") @@ -15258,7 +15258,7 @@ (define-public rust-objc-0.2 #:cargo-inputs (("rust-malloc-buf" ,rust-malloc-buf-0.0) ("rust-objc-exception" ,rust-objc-exception-0.1)))) - (home-page "http://github.com/SSheldon/rust-objc") + (home-page "https://github.com/SSheldon/rust-objc") (synopsis "Objective-C Runtime bindings and wrapper for Rust") (description "This package provides an Objective-C Runtime bindings and wrapper for Rust.") @@ -15282,7 +15282,7 @@ (define-public rust-objc-exception-0.1 `(#:skip-build? #t #:cargo-inputs (("rust-cc" ,rust-cc-1.0)))) - (home-page "http://github.com/SSheldon/rust-objc-exception") + (home-page "https://github.com/SSheldon/rust-objc-exception") (synopsis "Rust interface for Objective-C's throw and try/catch statements") (description "This package provides a Rust interface for Objective-C's throw and @@ -15309,7 +15309,7 @@ (define-public rust-objc-foundation-0.1 (("rust-block" ,rust-block-0.1) ("rust-objc" ,rust-objc-0.2) ("rust-objc-id" ,rust-objc-id-0.1)))) - (home-page "http://github.com/SSheldon/rust-objc-foundation") + (home-page "https://github.com/SSheldon/rust-objc-foundation") (synopsis "Rust wrapper for Objective-C's Foundation framework") (description "This package provides a rust wrapper for Objective-C's Foundation framework.") @@ -15332,7 +15332,7 @@ (define-public rust-objc-id-0.1 (arguments `(#:tests? #f ; Tests require gcc-objc. #:cargo-inputs (("rust-objc" ,rust-objc-0.2)))) - (home-page "http://github.com/SSheldon/rust-objc-id") + (home-page "https://github.com/SSheldon/rust-objc-id") (synopsis "Rust smart pointers for Objective-C reference counting") (description "This package provides Rust smart pointers for Objective-C reference counting.") @@ -15356,7 +15356,7 @@ (define-public rust-objc-test-utils-0.0 `(#:skip-build? #t #:cargo-inputs (("rust-gcc" ,rust-gcc-0.3)))) - (home-page "http://github.com/SSheldon/rust-objc") + (home-page "https://github.com/SSheldon/rust-objc") (synopsis "Utilities for testing Objective-C interop") (description "This package provides utilities for testing Objective-C interop.") @@ -15478,7 +15478,7 @@ (define-public rust-onig-5.0 ("rust-bitflags" ,rust-bitflags-1) ("rust-lazy-static" ,rust-lazy-static-1) ("rust-onig-sys" ,rust-onig-sys-69.2)))) - (home-page "http://github.com/iwillspeak/rust-onig") + (home-page "https://github.com/rust-onig/rust-onig") (synopsis "Rust bindings for the Oniguruma regular expression library") (description @@ -15507,7 +15507,7 @@ (define-public rust-onig-sys-69.2 (("rust-pkg-config" ,rust-pkg-config-0.3) ("rust-bindgen" ,rust-bindgen-0.50) ("rust-cc" ,rust-cc-1.0)))) - (home-page "http://github.com/iwillspeak/rust-onig") + (home-page "https://github.com/rust-onig/rust-onig") (synopsis "Rust bindings to the oniguruma library.") (description @@ -28139,7 +28139,7 @@ (define-public rust-vergen-3.1 (("rust-chrono" ,rust-chrono-0.4) ("rust-chrono" ,rust-chrono-0.4) ("rust-bitflags" ,rust-bitflags-1)))) - (home-page "http://github.com/rustyhorde/vergen") + (home-page "https://github.com/rustyhorde/vergen") (synopsis "Generate version related functions") (description "Generate version related functions.") diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index d403bc2510..1cd9014e45 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -965,7 +965,7 @@ (define-public ledger-agent (inputs `(("python-ledgerblue" ,python-ledgerblue) ("python-trezor-agent" ,python-trezor-agent))) - (home-page "http://github.com/romanz/trezor-agent") + (home-page "https://github.com/romanz/trezor-agent") (synopsis "Ledger as hardware SSH/GPG agent") (description "This package allows using Ledger as hardware SSH/GPG agent. @@ -1024,7 +1024,7 @@ (define-public keepkey-agent (inputs `(("python-keepkey" ,python-keepkey) ("python-trezor-agent" ,python-trezor-agent))) - (home-page "http://github.com/romanz/trezor-agent") + (home-page "https://github.com/romanz/trezor-agent") (synopsis "KeepKey as hardware SSH/GPG agent") (description "This package allows using KeepKey as a hardware SSH/GPG agent.") diff --git a/gnu/packages/haskell-check.scm b/gnu/packages/haskell-check.scm index bb7f57b49d..c2cffbad9e 100644 --- a/gnu/packages/haskell-check.scm +++ b/gnu/packages/haskell-check.scm @@ -392,7 +392,7 @@ (define-public ghc-tasty-expected-failure (inputs `(("ghc-tagged" ,ghc-tagged) ("ghc-tasty" ,ghc-tasty))) - (home-page "http://github.com/nomeata/tasty-expected-failure") + (home-page "https://github.com/nomeata/tasty-expected-failure") (synopsis "Mark tasty tests as failure expected") (description "With the function @code{Test.Tasty.ExpectedFailure.expectFail} in the diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm index 85c9aa9755..812af1fbc2 100644 --- a/gnu/packages/haskell-web.scm +++ b/gnu/packages/haskell-web.scm @@ -568,7 +568,7 @@ (define-public ghc-bsb-http-chunked ("ghc-tasty-hedgehog" ,ghc-tasty-hedgehog) ("ghc-tasty-hunit" ,ghc-tasty-hunit) ("ghc-doctest" ,ghc-doctest))) - (home-page "http://github.com/sjakobi/bsb-http-chunked") + (home-page "https://github.com/sjakobi/bsb-http-chunked") (synopsis "Chunked HTTP transfer encoding for bytestring builders") (description "This Haskell library contains functions for encoding bytestring builders for chunked Hypertext Transfer Protocol (HTTP) 1.1 @@ -616,7 +616,7 @@ (define-public ghc-warp ("ghc-hunit" ,ghc-hunit) ("ghc-http-client" ,ghc-http-client) ("hspec-discover" ,hspec-discover))) - (home-page "http://github.com/yesodweb/wai") + (home-page "https://github.com/yesodweb/wai") (synopsis "HTTP server library for Haskell's WAI") (description "Warp is a server library for HTTP/1.x and HTTP/2 based WAI (Web Application Interface in Haskell).") @@ -671,7 +671,7 @@ (define-public ghc-warp-tls ("ghc-tls-session-manager" ,ghc-tls-session-manager) ("ghc-wai" ,ghc-wai) ("ghc-warp" ,ghc-warp))) - (home-page "http://github.com/yesodweb/wai") + (home-page "https://github.com/yesodweb/wai") (synopsis "SSL/TLS support for Warp") (description "This package provides SSL/TLS support for Warp, a WAI handler, via the native Haskell TLS implementation.") diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 234f75dbfc..a5ceef1f54 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -2472,7 +2472,7 @@ (define-public ghc-configurator `(("ghc-hunit" ,ghc-hunit) ("ghc-test-framework" ,ghc-test-framework) ("ghc-test-framework-hunit" ,ghc-test-framework-hunit))) - (home-page "http://github.com/bos/configurator") + (home-page "https://github.com/bos/configurator") (synopsis "Configuration management") (description "This package provides a configuration management library for programs @@ -5492,7 +5492,7 @@ (define-public ghc-hasktags ("ghc-utf8-string" ,ghc-utf8-string) ("ghc-microlens-platform" ,ghc-microlens-platform) ("ghc-hunit" ,ghc-hunit))) - (home-page "http://github.com/MarcWeber/hasktags") + (home-page "https://github.com/MarcWeber/hasktags") (synopsis "Make @code{Ctags} and @code{Etags} files for Haskell programs") (description "This package provides a means of generating tag files for Emacs and @@ -6991,7 +6991,7 @@ (define-public ghc-linear ("ghc-test-framework" ,ghc-test-framework) ("ghc-test-framework-hunit" ,ghc-test-framework-hunit) ("ghc-hunit" ,ghc-hunit))) - (home-page "http://github.com/ekmett/linear/") + (home-page "https://github.com/ekmett/linear/") (synopsis "Linear algebra library for Haskell") (description "This package provides types and combinators for linear algebra on free @@ -8258,7 +8258,7 @@ (define-public ghc-newtype-generics (native-inputs `(("ghc-hspec" ,ghc-hspec) ("hspec-discover" ,hspec-discover))) - (home-page "http://github.com/sjakobi/newtype-generics") + (home-page "https://github.com/sjakobi/newtype-generics") (synopsis "Typeclass and set of functions for working with newtypes") (description "The @code{Newtype} typeclass represents the packing and unpacking of a newtype, and allows you to operate under that newtype with @@ -9622,7 +9622,7 @@ (define-public ghc-pretty-show (inputs `(("ghc-haskell-lexer" ,ghc-haskell-lexer) ("ghc-happy" ,ghc-happy))) - (home-page "http://wiki.github.com/yav/pretty-show") + (home-page "https://wiki.github.com/yav/pretty-show") (synopsis "Tools for working with derived `Show` instances") (description "This package provides a library and an executable for working with @@ -10565,7 +10565,7 @@ (define-public ghc-retry ("ghc-tasty-hunit" ,ghc-tasty-hunit) ("ghc-tasty-hedgehog" ,ghc-tasty-hedgehog) ("ghc-hedgehog" ,ghc-hedgehog))) - (home-page "http://github.com/Soostone/retry") + (home-page "https://github.com/Soostone/retry") (synopsis "Retry combinators for monadic actions that may fail") (description "This package exposes combinators that can wrap arbitrary monadic actions. They run the action and potentially retry @@ -14351,7 +14351,7 @@ (define-public ghc-xdg-basedir (base32 "0azlzaxp2dn4l1nr7shsxah2magk1szf6fx0mv75az00qsjw6qg4")))) (build-system haskell-build-system) - (home-page "http://github.com/willdonnelly/xdg-basedir") + (home-page "https://github.com/willdonnelly/xdg-basedir") (synopsis "XDG Base Directory library for Haskell") (description "This package provides a library implementing the XDG Base Directory spec.") (license license:bsd-3))) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 289bdd74d4..92df503b09 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -9079,7 +9079,7 @@ (define-public java-javax-inject `(#:jar-name "java-javax-inject.jar" #:jdk ,icedtea-8 #:tests? #f)); no tests - (home-page "http://github.com/javax-inject/javax-inject") + (home-page "https://github.com/javax-inject/javax-inject") (synopsis "JSR-330: Dependency Injection for Java") (description "This package specifies a means for obtaining objects in such a way as to maximize reusability, testability and maintainability compared to diff --git a/gnu/packages/libffi.scm b/gnu/packages/libffi.scm index 36f6e5ece6..ec8703ffdb 100644 --- a/gnu/packages/libffi.scm +++ b/gnu/packages/libffi.scm @@ -248,5 +248,5 @@ (define-public ruby-ffi dynamic libraries, binding functions within them, and calling those functions from Ruby code. Moreover, a Ruby-FFI extension works without changes on Ruby and JRuby.") - (home-page "http://wiki.github.com/ffi/ffi") + (home-page "https://wiki.github.com/ffi/ffi") (license bsd-3))) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 80f546e056..1b71bc1e0c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -6430,7 +6430,7 @@ (define-public procenv itself and its environment as possible. It can be used as a test tool, to understand the type of environment a process runs in, and for comparing system environments.") - (home-page "http://github.com/jamesodhunt/procenv/") + (home-page "https://github.com/jamesodhunt/procenv/") (license license:gpl3+))) (define-public libfabric diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 1d7cfd852d..0624cc967a 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -187,7 +187,7 @@ (define-public python-aiodns `(("python-pycares" ,python-pycares))) (arguments `(#:tests? #f)) ;tests require internet access - (home-page "http://github.com/saghul/aiodns") + (home-page "https://github.com/saghul/aiodns") (synopsis "Simple DNS resolver for asyncio") (description "@code{aiodns} provides a simple way for doing asynchronous DNS resolutions with a synchronous looking interface by @@ -2368,7 +2368,7 @@ (define-public python-flask-htpasswd ("python-itsdangerous" ,python-itsdangerous) ("python-passlib" ,python-passlib) ("python-tox" ,python-tox))) - (home-page "http://github.com/carsongee/flask-htpasswd") + (home-page "https://github.com/carsongee/flask-htpasswd") (synopsis "Basic authentication via htpasswd files in Flask applications") (description "This package provides Basic authentication via @file{htpasswd} files and access_token authentication in Flask @@ -3106,7 +3106,7 @@ (define-public python-pycares (build-system python-build-system) (arguments `(#:tests? #f)) ;tests require internet access - (home-page "http://github.com/saghul/pycares") + (home-page "https://github.com/saghul/pycares") (synopsis "Python interface for @code{c-ares}") (description "@code{pycares} is a Python module which provides an interface to @code{c-ares}, a C library that performs DNS requests and diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 15d9e097c5..e1e3870d06 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10163,7 +10163,7 @@ (define-public python-progressbar33 (base32 "1zvf6zs5hzrc03p9nfs4p16vhilqikycvv1yk0pxn8s07fdhvzji")))) (build-system python-build-system) - (home-page "http://github.com/germangh/python-progressbar") + (home-page "https://github.com/germangh/python-progressbar") (synopsis "Text progress bar library for Python") (description "This package provides a text progress bar library for Python. This @@ -16426,7 +16426,7 @@ (define-public python-whatever (invoke "py.test")))))) (native-inputs `(("python-pytest" ,python-pytest))) - (home-page "http://github.com/Suor/whatever") + (home-page "https://github.com/Suor/whatever") (synopsis "Make anonymous functions by partial application of operators") (description "@code{whatever} provides an easy way to make anonymous functions by partial application of operators.") @@ -16458,7 +16458,7 @@ (define-public python-funcy (native-inputs `(("python-pytest" ,python-pytest) ("python-whatever" ,python-whatever))) - (home-page "http://github.com/Suor/funcy") + (home-page "https://github.com/Suor/funcy") (synopsis "Functional tools") (description "@code{funcy} is a library that provides functional tools. Examples are: diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 8f48c3eba8..d3d27f70b2 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2458,7 +2458,7 @@ (define-public ruby-rubyzip (synopsis "Ruby module is for reading and writing zip files") (description "The rubyzip module provides ways to read from and create zip files.") - (home-page "http://github.com/rubyzip/rubyzip") + (home-page "https://github.com/rubyzip/rubyzip") (license license:bsd-2))) (define-public ruby-simplecov-html @@ -4758,7 +4758,7 @@ (define-public ruby-spinach (package (name "ruby-spinach") (version "0.11.0") - (home-page "http://github.com/codegram/spinach") + (home-page "https://github.com/codegram/spinach") (source (origin (method url-fetch) (uri (rubygems-uri "spinach" version)) @@ -6630,7 +6630,7 @@ (define-public ruby-gherkin-ruby (package (name "ruby-gherkin-ruby") (version "0.3.2") - (home-page "http://github.com/codegram/gherkin-ruby") + (home-page "https://github.com/codegram/gherkin-ruby") (source (origin (method url-fetch) (uri (rubygems-uri "gherkin-ruby" version)) @@ -8855,7 +8855,7 @@ (define-public ruby-code-statistics (description "This gem is a port of the rails 'rake stats' method so it can be made more robust and work for non rails projects.") - (home-page "http://github.com/danmayer/code_statistics") + (home-page "https://github.com/danmayer/code_statistics") (license license:expat))) (define-public ruby-rubypants @@ -9057,7 +9057,7 @@ (define-public ruby-colorize "This package extends the @code{String} class and adds a @code{ColorizedString} with methods to set text color, background color, and text effects.") - (home-page "http://github.com/fazibear/colorize") + (home-page "https://github.com/fazibear/colorize") (license license:gpl2+))) (define-public ruby-colorator @@ -10602,7 +10602,7 @@ (define-public ruby-wwtd (package (name "ruby-wwtd") (version "1.4.1") - (home-page "http://github.com/grosser/wwtd") + (home-page "https://github.com/grosser/wwtd") (source (origin (method git-fetch) (uri (git-reference -- cgit v1.2.3 From 9622928d1e26f8bfa2a38cfee34de7c3bdf7c28e Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 08:54:38 -0400 Subject: gnu: ruby-prawn: Add a %prawn-project-licenses variable. * gnu/packages/ruby.scm (%prawn-project-licenses): New variable. --- gnu/packages/ruby.scm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index d3d27f70b2..43e271415b 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -79,6 +79,13 @@ (define-module (gnu packages ruby) #:use-module (guix build-system ruby) #:use-module ((srfi srfi-1) #:select (alist-delete))) +(define %prawn-project-licenses + ;; This set of licenses applies to most (all?) components of the Prawn + ;; project (it is triple licensed). + (list license:ruby + license:gpl2+ + license:gpl3+)) + (define-public ruby (package (name "ruby") -- cgit v1.2.3 From ed2f26f879d5a3646ce0e08a88a2451eeef31979 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 12 Jul 2020 14:51:38 -0400 Subject: gnu: ruby-pdf-inspector: Enable tests. * gnu/packages/ruby.scm (ruby-pdf-inspector)[origin]: Use the git-fetch method. [phases]: Add the 'drop-signing-key-requirement phase and replace the 'check phase to enable tests. [license]: Set to %prawn-project-licenses. --- gnu/packages/ruby.scm | 55 +++++++++++++++++++++++++++++++++++---------------- 1 file changed, 38 insertions(+), 17 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 43e271415b..1b506b730f 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -9590,25 +9590,46 @@ (define-public ruby-pdf-reader (license license:gpl3+))) (define-public ruby-pdf-inspector - (package - (name "ruby-pdf-inspector") - (version "1.3.0") - (source (origin - (method url-fetch) - (uri (rubygems-uri "pdf-inspector" version)) - (sha256 - (base32 - "1g853az4xzgqxr5xiwhb76g4sqmjg4s79mm35mp676zjsrwpa47w")))) - (build-system ruby-build-system) - (propagated-inputs - `(("ruby-pdf-reader" ,ruby-pdf-reader))) - (arguments `(#:tests? #f)); No rakefile - (home-page "https://github.com/prawnpdf/pdf-inspector") - (synopsis "Analysis classes for inspecting PDF output") - (description "This library provides a number of PDF::Reader based tools for + (let ((revision "1") + (commit "00ee4c92ff917118785ebec188e81effc968abeb")) + (package + (name "ruby-pdf-inspector") + (version (git-version "1.3.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prawnpdf/pdf-inspector.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0h9w81ddd0gvkh5n2cvny9ddb5qiac1si0dhinkk0xxh5382qs0m")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "spec" + #:phases (modify-phases %standard-phases + (add-before 'build 'drop-signing-key-requirement + (lambda _ + (substitute* "pdf-inspector.gemspec" + (("spec.signing_key =.*") + "spec.signing_key = nil")) + #t)) + (replace 'check + (lambda _ + (substitute* "pdf-inspector.gemspec" + ((".*rubocop.*") "") + ((".*yard.*") "")) + (invoke "rspec")))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-pdf-reader" ,ruby-pdf-reader))) + (home-page "https://github.com/prawnpdf/pdf-inspector") + (synopsis "Analysis classes for inspecting PDF output") + (description "This library provides a number of PDF::Reader based tools for use in testing PDF output. Presently, the primary purpose of this tool is to support the tests found in Prawn, a pure Ruby PDF generation library.") - (license license:gpl3+))) + (license %prawn-project-licenses)))) (define-public ruby-pdf-core (package -- cgit v1.2.3 From b377dd95b8fb3d77deff6101baae4c6e9a6be9ce Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 12 Jul 2020 14:59:19 -0400 Subject: gnu: ruby-pdf-reader: Update to 2.4.0. * gnu/packages/ruby.scm (ruby-pdf-reader): Update to 2.4.0. --- gnu/packages/ruby.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 1b506b730f..5be2e6e192 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -9562,13 +9562,13 @@ (define-public ruby-morecane (define-public ruby-pdf-reader (package (name "ruby-pdf-reader") - (version "2.1.0") + (version "2.4.0") (source (origin (method url-fetch) (uri (rubygems-uri "pdf-reader" version)) (sha256 (base32 - "1b3ig4wpcgdbqa7yw0ahwbmikkkywn2a22bfmrknl5ls7g066x45")))) + "1g3gr2m46275hjv6fv4jwq3qlvdbnhf1jxir9vzgxhv45ncnhffy")))) (build-system ruby-build-system) (arguments `(#:test-target "spec")) (native-inputs -- cgit v1.2.3 From 34796d7a6cf777f4f78708d06a1ba661d27f029a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 12 Jul 2020 21:46:11 -0400 Subject: gnu: ruby-pdf-reader: Actually run tests. * gnu/packages/ruby.scm (ruby-pdf-reader)[source]: Use git-fetch. [phases]{do-not-use-bundler}: Add phase. [native-inputs]{bundler}: Delete input. --- gnu/packages/ruby.scm | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 5be2e6e192..f87caa1545 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -9564,16 +9564,24 @@ (define-public ruby-pdf-reader (name "ruby-pdf-reader") (version "2.4.0") (source (origin - (method url-fetch) - (uri (rubygems-uri "pdf-reader" version)) + (method git-fetch) ;no test in distributed gem archive + (uri (git-reference + (url "https://github.com/yob/pdf-reader.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "1g3gr2m46275hjv6fv4jwq3qlvdbnhf1jxir9vzgxhv45ncnhffy")))) + "1yh8yrlssf5ppnkvk4m78vmh5r5vqwdcd0gm3lqipw162llz0rai")))) (build-system ruby-build-system) - (arguments `(#:test-target "spec")) + (arguments `(#:test-target "spec" + #:phases (modify-phases %standard-phases + (add-after 'unpack 'do-not-use-bundler + (lambda _ + (substitute* "spec/spec_helper.rb" + ((".*[Bb]undler.*") "")) + #t))))) (native-inputs - `(("bundler" ,bundler) - ("ruby-rspec" ,ruby-rspec) + `(("ruby-rspec" ,ruby-rspec) ("ruby-cane" ,ruby-cane) ("ruby-morecane" ,ruby-morecane))) (propagated-inputs -- cgit v1.2.3 From 4179ed930d717c2ab6e4936364f355d2a7de9010 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 12 Jul 2020 22:31:24 -0400 Subject: gnu: ruby-ttfunk: Update to 1.6.2.1. * gnu/packages/ruby.scm (ruby-ttfunk): Update to 1.6.2.1. [license]: Set to %prawn-project-licenses. --- gnu/packages/ruby.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index f87caa1545..547f50db65 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8514,7 +8514,7 @@ (define-public ruby-ascii85 (define-public ruby-ttfunk (package (name "ruby-ttfunk") - (version "1.5.1") + (version "1.6.2.1") (source (origin (method git-fetch) @@ -8525,7 +8525,7 @@ (define-public ruby-ttfunk (file-name (git-file-name name version)) (sha256 (base32 - "0dx9891zcli0sjrslmsvrwalv86hbjbqlmbrcasnjr069v05h9v9")))) + "0rsf4j6s97wbcnjbvmmh6xrc7imw4g9lrlcvn945wh400lc8r53z")))) (build-system ruby-build-system) (arguments `(#:test-target "spec" @@ -8557,7 +8557,7 @@ (define-public ruby-ttfunk (home-page "https://github.com/prawnpdf/ttfunk") ;; From the README: "Matz's terms for Ruby, GPLv2, or GPLv3. See LICENSE ;; for details." - (license (list license:gpl2 license:gpl3 license:ruby)))) + (license %prawn-project-licenses))) (define-public ruby-puma (package -- cgit v1.2.3 From e6c7a601b8ae43b155af2118fda199f4cc4d66ab Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 08:49:48 -0400 Subject: gnu: ruby-prawn: Update to commit d980247be8a00e7c59cd4e5785e3aa98f9856db1. * gnu/packages/ruby.scm (ruby-prawn): Update to commit d980247be8a00e7c59cd4e5785e3aa98f9856db1. [arguments]: Drop the #:tests? arguments, enabling tests. [phases]: Remove the 'fix-dependencies phase. Add the 'drop-signing-key-requirement and replace the 'check phase. [native-inputs]: Remove bundler. Add ruby-prawn-manual-builder. [home-page]: Use HTTPS. [license]: Set to %prawn-project-licenses. --- gnu/packages/ruby.scm | 79 ++++++++++++++++++++++++++++++--------------------- 1 file changed, 46 insertions(+), 33 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 547f50db65..c813abf72f 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -9660,39 +9660,52 @@ (define-public ruby-pdf-core (license license:gpl3+))) (define-public ruby-prawn - (package - (name "ruby-prawn") - (version "2.2.2") - (source (origin - (method url-fetch) - (uri (rubygems-uri "prawn" version)) - (sha256 - (base32 - "1qdjf1v6sfl44g3rqxlg8k4jrzkwaxgvh2l4xws97a8f3xv4na4m")))) - (build-system ruby-build-system) - (arguments - ; No tests - `(#:tests? #f - #:phases - (modify-phases %standard-phases - (add-before 'build 'fix-dependencies - (lambda _ - (substitute* "prawn.gemspec" - (("~> 0.7.0") "~> 0.7")) - #t))))) - (propagated-inputs - `(("ruby-pdf-core" ,ruby-pdf-core) - ("ruby-ttfunk" ,ruby-ttfunk))) - (native-inputs - `(("bundler" ,bundler) - ("ruby-pdf-inspector" ,ruby-pdf-inspector) - ("ruby-rspec" ,ruby-rspec) - ("ruby-simplecov" ,ruby-simplecov) - ("ruby-yard" ,ruby-yard))) - (home-page "http://prawnpdf.org/api-docs/2.0/") - (synopsis "PDF generation for Ruby") - (description "Prawn is a pure Ruby PDF generation library.") - (license license:gpl3+))) + ;; There hasn't been a new release since 2017/03/17. + (let ((revision "1") + (commit "d980247be8a00e7c59cd4e5785e3aa98f9856db1")) + (package + (name "ruby-prawn") + (version (git-version "2.2.2" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prawnpdf/prawn.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0mcmvf22h8il93yq48v9f31qpy27pvjxgv9172p0f4x9lqy0imwr")))) + (build-system ruby-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'build 'drop-signing-key-requirement + (lambda _ + (substitute* "prawn.gemspec" + (("spec.signing_key =.*") + "spec.signing_key = nil")) + #t)) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + ;; The Prawn manual test fails (see: + ;; https://github.com/prawnpdf/prawn/issues/1163), so exclude + ;; it. + (invoke "rspec" "--exclude-pattern" "prawn_manual_spec.rb")) + #t))))) + (propagated-inputs + `(("ruby-pdf-core" ,ruby-pdf-core) + ("ruby-ttfunk" ,ruby-ttfunk))) + (native-inputs + `(("ruby-pdf-inspector" ,ruby-pdf-inspector) + ("ruby-prawn-manual-builder" ,ruby-prawn-manual-builder) + ("ruby-rspec" ,ruby-rspec) + ("ruby-simplecov" ,ruby-simplecov) + ("ruby-yard" ,ruby-yard))) + (home-page "https://prawnpdf.org/api-docs/2.0/") + (synopsis "PDF generation for Ruby") + (description "Prawn is a pure Ruby PDF generation library.") + (license %prawn-project-licenses)))) (define-public ruby-prawn-table (package -- cgit v1.2.3 From cc10ca338849f633c24ec9a79dc694cdbc564d4b Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 09:00:50 -0400 Subject: gnu: ruby-prawn-manual-builder: Use %prawn-project-licenses. * gnu/packages/ruby.scm (ruby-prawn-manual-builder)[license]: Set to %prawn-project-licenses. --- gnu/packages/ruby.scm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index c813abf72f..e388aee63e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4555,10 +4555,7 @@ (define-public ruby-prawn-manual-builder "This package provides a tool for writing manuals for Prawn and Prawn accessories") (home-page "https://github.com/prawnpdf/prawn-manual_builder") - (license (list - ;; GPLv2 or GPLv3 or custom license described in LICENSE file - license:gpl2 - license:gpl3)))) + (license %prawn-project-licenses))) (define-public ruby-progress_bar (package -- cgit v1.2.3 From 15b188c33dafc8ce6af142a740390e9507339526 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 09:17:04 -0400 Subject: gnu: Add ruby-prawn-icon. * gnu/packages/ruby.scm (ruby-prawn-icon): New variable. --- gnu/packages/ruby.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index e388aee63e..6a0ddd6719 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1155,6 +1155,42 @@ (define-public ruby-asciidoctor (home-page "https://asciidoctor.org") (license license:expat))) +(define-public ruby-prawn-icon + (package + (name "ruby-prawn-icon") + (version "2.5.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "prawn-icon" version)) + (sha256 + (base32 + "1ivkdf8rdf92hhy97vbmc2a4w97vcvqd58jcj4z9hz3hfsb1526w")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "spec" + #:phases (modify-phases %standard-phases + (add-after 'unpack 'remove-unnecessary-dependencies + (lambda _ + (substitute* '("Rakefile" "spec/spec_helper.rb") + ((".*[Bb]undler.*") "") + (("^require 'rubocop.*") "") + (("^RuboCop.*") "")) + #t))))) + (native-inputs + `(("ruby-pdf-inspector" ,ruby-pdf-inspector) + ("ruby-pdf-reader" ,ruby-pdf-reader) + ("ruby-rspec" ,ruby-rspec) + ("ruby-simplecov" ,ruby-simplecov))) + (propagated-inputs + `(("ruby-prawn" ,ruby-prawn))) + (synopsis "Icon fonts for use with the Prawn PDF toolkit") + (description "@code{Prawn::Icon} provides various icon fonts including +FontAwesome, PaymentFont and Foundation Icons for use with the Prawn PDF +toolkit.") + (home-page "https://github.com/jessedoyle/prawn-icon/") + (license %prawn-project-licenses))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From 2d877f6ef3f59e152ae37d72ce150a442baeb7eb Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 09:35:52 -0400 Subject: gnu: Add ruby-css-parser. * gnu/packages/ruby.scm (ruby-css-parser): New variable. --- gnu/packages/ruby.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 6a0ddd6719..c362500e8b 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1191,6 +1191,27 @@ (define-public ruby-prawn-icon (home-page "https://github.com/jessedoyle/prawn-icon/") (license %prawn-project-licenses))) +(define-public ruby-css-parser + (package + (name "ruby-css-parser") + (version "1.7.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "css_parser" version)) + (sha256 + (base32 + "04c4dl8cm5rjr50k9qa6yl9r05fk9zcb1zxh0y0cdahxlsgcydfw")))) + (build-system ruby-build-system) + (arguments `(#:tests? #f)) ;gem doesn't ship with test suite + (propagated-inputs + `(("ruby-addressable" ,ruby-addressable))) + (synopsis "Ruby Cascading Style Sheets (CSS) parser") + (description "This package allows loading, parsing and cascading Cascading +Style Sheets (CSS) rule sets in Ruby.") + (home-page "https://github.com/premailer/css_parser") + (license license:expat))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From 95692655a1a954835128990f8dedeff4a256bf7a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 10:49:23 -0400 Subject: gnu: Add ruby-prawn-svg. * gnu/packages/ruby.scm (ruby-prawn-svg): New variable. --- gnu/packages/ruby.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index c362500e8b..0a2b6f43a1 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1212,6 +1212,42 @@ (define-public ruby-css-parser (home-page "https://github.com/premailer/css_parser") (license license:expat))) +(define-public ruby-prawn-svg + (package + (name "ruby-prawn-svg") + (version "0.30.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "prawn-svg" version)) + (sha256 + (base32 + "0df3l49cy3xpwi0b73hmi2ykbjg9kjwrvhk0k3z7qhh5ghmmrn77")))) + (build-system ruby-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'do-not-use-bundler + (lambda _ + (substitute* "spec/spec_helper.rb" + ((".*[Bb]undler.*") "")) + #t)) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "rspec" "-Ilib" "-rprawn-svg")) + #t))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-css-parser" ,ruby-css-parser) + ("ruby-prawn" ,ruby-prawn))) + (synopsis "SVG renderer for the Prawn PDF library") + (description "This library allows rendering Scalable Vector Graphics (SVG) +graphics directly into a Portable Document Format (PDF) document using the +Prawn module.") + (home-page "https://github.com/mogest/prawn-svg") + (license license:expat))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From ce52f2b11cb1033e74efe9bb2178fa6667dffff3 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 11:22:10 -0400 Subject: gnu: Add ruby-prawn-templates. * gnu/packages/ruby.scm (ruby-prawn-templates): New variable. --- gnu/packages/ruby.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 0a2b6f43a1..9a5b488029 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1248,6 +1248,48 @@ (define-public ruby-prawn-svg (home-page "https://github.com/mogest/prawn-svg") (license license:expat))) +(define-public ruby-prawn-templates + (package + (name "ruby-prawn-templates") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prawnpdf/prawn-templates.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0wll54wxxwixpwazfn4ffbqvqbfrl01cfsv8y11vnlzy7isx5xvl")))) + (build-system ruby-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'do-not-use-bundler + (lambda _ + (substitute* "spec/spec_helper.rb" + ((".*[Bb]undler.*") "")) + #t)) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "rspec")) + #t))))) + (native-inputs + `(("ruby-pdf-inspector" ,ruby-pdf-inspector) + ("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-pdf-reader" ,ruby-pdf-reader) + ("ruby-prawn" ,ruby-prawn))) + (synopsis "Prawn extension to include or combine PDF documents") + (description "This @strong{unmaintained} package provides a Prawn +extension that allows including other Portable Document Format (PDF) documents +as background or combining several PDF documents into one. This functionality +used to be part of Prawn itself, but was extracted from Prawn 0.15.0 because +of its many longstanding issues.") + (home-page "https://github.com/prawnpdf/prawn-templates") + (license %prawn-project-licenses))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From f949b60e69601fa9965f517ef2de0b7546331844 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 12:00:24 -0400 Subject: gnu: Add ruby-polyglot. * gnu/packages/ruby.scm (ruby-polyglot): New variable. --- gnu/packages/ruby.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 9a5b488029..15a26ef91e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1290,6 +1290,26 @@ (define-public ruby-prawn-templates (home-page "https://github.com/prawnpdf/prawn-templates") (license %prawn-project-licenses))) +(define-public ruby-polyglot + (package + (name "ruby-polyglot") + (version "0.3.5") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "polyglot" version)) + (sha256 + (base32 + "1bqnxwyip623d8pr29rg6m8r0hdg08fpr2yb74f46rn1wgsnxmjr")))) + (build-system ruby-build-system) + (arguments `(#:tests? #f)) ;no test suite + (synopsis "Augment @code{require} to load non-Ruby file types") + (description "The Polyglot library allows a Ruby module to register a +loader for the file type associated with a filename extension, and it augments +@code{require} to find and load matching files.") + (home-page "https://github.com/cjheath/polyglot") + (license license:expat))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From 1f183ca0b2eca997dff46a9cf94c302a972eb98c Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 12:00:30 -0400 Subject: gnu: Add ruby-treetop. * gnu/packages/ruby.scm (ruby-treetop): New variable. --- gnu/packages/ruby.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 15a26ef91e..2105b97d26 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1310,6 +1310,45 @@ (define-public ruby-polyglot (home-page "https://github.com/cjheath/polyglot") (license license:expat))) +(define-public ruby-treetop + (package + (name "ruby-treetop") + (version "1.6.10") + (source + (origin + (method git-fetch) ;no test suite in distributed gem + (uri (git-reference + (url "https://github.com/cjheath/treetop.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1dmk94z6ivhrz5hsq68vl5vgydhkz89n394rha1ymddw3rymbfcv")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "spec" + #:phases + (modify-phases %standard-phases + (replace 'replace-git-ls-files + (lambda _ + ;; TODO: Remove after the fix of using 'cut' to better mimic the + ;; git ls-files output is merged in ruby-build-system. + (substitute* "treetop.gemspec" + (("`git ls-files -z`") + "`find . -type f -print0 |sort -z|cut -zc3-`")) + #t))))) + (native-inputs + `(("ruby-activesupport" ,ruby-activesupport) + ("ruby-rr" ,ruby-rr) + ("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-polyglot" ,ruby-polyglot))) + (synopsis "Ruby-based parsing DSL based on parsing expression grammars") + (description "This package provides a Ruby-based Parsing Expression +Grammar (PEG) parser generator Domain Specific Language (DSL).") + (home-page "https://github.com/cjheath/treetop") + (license license:expat))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From 818b402cc55ff02ed3563c4f2f9dbaf2ecde79f1 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 23:17:16 -0400 Subject: gnu: Add ruby-sorcerer. * gnu/packages/ruby.scm (ruby-sorcerer): New variable. --- gnu/packages/ruby.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 2105b97d26..0b40a6fa5f 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -631,6 +631,26 @@ (define-public ruby-rspec-expectations-2 (propagated-inputs `(("ruby-diff-lcs" ,ruby-diff-lcs))))) +(define-public ruby-sorcerer + (package + (name "ruby-sorcerer") + (version "2.0.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "sorcerer" version)) + (sha256 + (base32 + "0d32ha9pp9slpmsm027pkdpbr9vc5jn2m8rl6hwwx6a87m8cr58h")))) + (build-system ruby-build-system) + (synopsis "Ripper-style abstract syntax tree to Ruby source generator") + (description "Sorcerer generates Ruby code from a Ripper-like abstract +syntax tree (i.e. S-Expressions). Sorcerer is targeted mainly at small +snippets of Ruby code, expressable in a single line. Longer examples may be +re-sourced, but they will be rendered in a single line format.") + (home-page "https://github.com/rspec-given/sorcerer") + (license license:expat))) + (define-public ruby-rspec-its (package (name "ruby-rspec-its") -- cgit v1.2.3 From 906b9a141abbac5d5da2b12c3dc4777f44ed033c Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 13 Jul 2020 23:28:19 -0400 Subject: gnu: Add ruby-given-core. * gnu/packages/ruby.scm (ruby-given-core): New variable. --- gnu/packages/ruby.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 0b40a6fa5f..d48bb054cf 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -651,6 +651,28 @@ (define-public ruby-sorcerer (home-page "https://github.com/rspec-given/sorcerer") (license license:expat))) +(define-public ruby-given-core + (package + (name "ruby-given-core") + (version "3.8.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "given_core" version)) + (sha256 + (base32 + "1lzyqllbbv6as3qgwz2007mvy7wy247bgkch9adnmh1zfa73bkrg")))) + (build-system ruby-build-system) + (arguments '(#:tests? #f)) ;no test suite for the core package + (propagated-inputs + `(("ruby-sorcerer" ,ruby-sorcerer))) + (synopsis "Core abstractions used by rspec-given and minitest-given") + (description "Given_core is the basic functionality behind rspec-given and +minitest-given, extensions that allow the use of Given/When/Then terminology +when defining specifications.") + (home-page "https://github.com/rspec-given/rspec-given") + (license license:expat))) + (define-public ruby-rspec-its (package (name "ruby-rspec-its") -- cgit v1.2.3 From 9c1715581fa4e7f0d851cd51288c554d08d06cc4 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 00:17:09 -0400 Subject: gnu: Add ruby-rspec-given. * gnu/packages/ruby.scm (ruby-rspec-given): New variable. --- gnu/packages/ruby.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index d48bb054cf..8acb589c46 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -673,6 +673,55 @@ (define-public ruby-given-core (home-page "https://github.com/rspec-given/rspec-given") (license license:expat))) +(define-public ruby-rspec-given + (package + (name "ruby-rspec-given") + (version "3.8.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "rspec-given" version)) + (sha256 + (base32 + "1783bazja10kbha8hk15khvybsq88siyax02cpkk688604h54nji")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "rs" + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-rakefile + (lambda _ + (substitute* '("Rakefile" "rakelib/gemspec.rake") + (("require '\\./lib/given/.*") "") + (("Given::VERSION") (format #f "~s" ,version)) + ;; Fix the error: "cannot load such file -- example_helper" + (("sh \"rspec") + "sh \"rspec -Ilib:examples")) + #t)) + (add-after 'extract-gemspec 'delete-failing-tests + ;; See: https://github.com/jimweirich/rspec-given/issues/57. + (lambda _ + (substitute* ".gemspec" + (("\"spec/lib/given/natural_assertion_spec.rb\".freeze, ") + "") + (("\"examples/integration/failing_messages_spec.rb\".freeze, ") + "")) + (delete-file "spec/lib/given/natural_assertion_spec.rb") + (delete-file "examples/integration/failing_messages_spec.rb") + #t))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec) + ("ruby-minitest" ,ruby-minitest))) + (propagated-inputs + `(("ruby-given-core" ,ruby-given-core) + ("ruby-rspec" ,ruby-rspec))) + (synopsis "Given/When/Then for RSpec and Minitest") + (description "Given is an RSpec extension that allows the use of +Given/When/Then terminology when defining specifications, in a way similar to +the Cucumber Gherkin language.") + (home-page "https://github.com/rspec-given/rspec-given") + (license license:expat))) + (define-public ruby-rspec-its (package (name "ruby-rspec-its") -- cgit v1.2.3 From fe9993b19c93359e336fc9c8ca9e99634abd59a9 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:29:02 -0400 Subject: gnu: ruby-coveralls: Strip exact versions from gemspec file. * gnu/packages/ruby.scm (ruby-coveralls)[phases]: New 'strip-version-requirements phase. --- gnu/packages/ruby.scm | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 8acb589c46..4b5b577c06 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7186,8 +7186,20 @@ (define-public ruby-coveralls "1mv4fn5lfxhy7bc2f1lpnc5yp9mvv97az77j4r7jgrxcqwn8fqxc")))) (build-system ruby-build-system) ;; The test suite depends on ruby-vcr, which cannot be included in Guix - ;; because of its nonfree, Hippocratic derived license. - (arguments '(#:tests? #f)) + ;; because of its nonfree, Hippocratic-derived license. + (arguments + `(#:tests? #f + #:phases (modify-phases %standard-phases + (add-after 'extract-gemspec 'strip-version-requirements + ;; Keeping strict version requirements can cause problems + ;; to users of the library, such as: Gem::ConflictError: + ;; Unable to activate coveralls-0.8.23, because + ;; simplecov-0.17.1 conflicts with simplecov (~> 0.16.1). + (lambda _ + (substitute* "coveralls-ruby.gemspec" + (("(.*add_.*dependency\\([^,]+), .*" _ stripped) + (string-append stripped ")\n"))) + #t))))) (propagated-inputs `(("ruby-json" ,ruby-json) ("ruby-term-ansicolor" ,ruby-term-ansicolor) -- cgit v1.2.3 From 9fc61da93bd37626dd451a02fadd7bbaacfbc88a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:34:27 -0400 Subject: gnu: ruby-parser: Update to 2.7.1.4. * gnu/packages/ruby.scm (ruby-parser): Update to 2.7.1.4. --- gnu/packages/ruby.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 4b5b577c06..f280988dbd 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4741,14 +4741,14 @@ (define-public ruby-parallel-tests (define-public ruby-parser (package (name "ruby-parser") - (version "2.6.0.0") + (version "2.7.1.4") (source (origin (method url-fetch) (uri (rubygems-uri "parser" version)) (sha256 (base32 - "1hhz2k5417vr2k1llwqgjdnmyrhlpqicy0y2arr6r1gp04fg9wlm")))) + "1030znhvhkfn39svwbj6qn4xb6hgl94gnvg57k4d3r76f9bryqmn")))) (build-system ruby-build-system) (native-inputs `(("bundler" ,bundler) -- cgit v1.2.3 From 308104f8e9c45bc4a5b44634f7059624910a14a5 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:34:47 -0400 Subject: gnu: ruby-ast: Update to 2.4.1. * gnu/packages/ruby.scm (ruby-ast): Update to 2.4.1. [origin]: Use git-fetch. --- gnu/packages/ruby.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index f280988dbd..7a8132a0b6 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1443,14 +1443,17 @@ (define-public ruby-treetop (define-public ruby-ast (package (name "ruby-ast") - (version "2.4.0") + (version "2.4.1") (source (origin - (method url-fetch) - (uri (rubygems-uri "ast" version)) + (method git-fetch) ;no test included in gem from v2.4.1 + (uri (git-reference + (url "https://github.com/whitequark/ast") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "184ssy3w93nkajlz2c70ifm79jp3j737294kbc5fjw69v1w0n9x7")))) + "0k8vya256chimy473g818gim06m5rjgh6mz5sc5g8xz3csh3rysi")))) (build-system ruby-build-system) (arguments '(#:phases -- cgit v1.2.3 From 5c4c28f8f588d65a5b0162aeb81a8b4731e38fe6 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:36:25 -0400 Subject: gnu: Add ruby-rubocop-ast. * gnu/packages/ruby.scm (ruby-rubocop-ast): New variable. --- gnu/packages/ruby.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 7a8132a0b6..9099d2f8e6 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6429,6 +6429,50 @@ (define-public ruby-rest-client (home-page "https://github.com/rest-client/rest-client") (license license:expat))) +(define-public ruby-rubocop-ast + (package + (name "ruby-rubocop-ast") + (version "0.1.0") + (source + (origin + (method git-fetch) ;no test suite in distributed gem + (uri (git-reference + (url "https://github.com/rubocop-hq/rubocop-ast.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0nz25z5b76xkgb9sh370hni3l946j07fr05cdwkdj9x7ibgsb6nj")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "spec" + #:phases (modify-phases %standard-phases + (add-after 'unpack 'disable-bundler + (lambda _ + (substitute* "Rakefile" + (("Bundler\\.setup.*") "nil\n")) + #t)) + (replace 'replace-git-ls-files + (lambda _ + (substitute* "rubocop-ast.gemspec" + (("`git ls-files(.*)`" _ files) + (format #f "`find ~a -type f| sort`" files))) + #t))))) + (native-inputs + `(("ruby-bump" ,ruby-bump) + ("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-parser" ,ruby-parser))) + (synopsis "RuboCop's AST extensions and NodePattern functionality") + (description "Rubocop::AST extends @code{ruby-parser} with classes used +by RuboCop to deal with Ruby's Abstract Syntax Tree (AST), in particular: +@itemize +@item @code{RuboCop::AST::Node} +@item @code{RuboCop::AST::NodePattern} +@end itemize") + (home-page "https://rubocop.org/") + (license license:expat))) + (define-public ruby-rubocop (package (name "ruby-rubocop") -- cgit v1.2.3 From e098bdae3acdb024f0d73ac4245402811c644dac Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:36:33 -0400 Subject: gnu: Add ruby-rexml. * gnu/packages/ruby.scm (ruby-rexml): New variable. --- gnu/packages/ruby.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 9099d2f8e6..ad1692f4b9 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6473,6 +6473,28 @@ (define-public ruby-rubocop-ast (home-page "https://rubocop.org/") (license license:expat))) +(define-public ruby-rexml + (package + (name "ruby-rexml") + (version "3.2.4") + (source + (origin + (method git-fetch) ;no tests in distributed gem + (uri (git-reference + (url "https://github.com/ruby/rexml.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0rhjjbkaq2f2cs8hyr2i4yjqpcyl8m0wmr2cypa401m3fvz4221i")))) + (build-system ruby-build-system) + (synopsis "XML toolkit for Ruby") + (description "Inspired by Electric XML library for Java, REXML aims to be +easy-to-use API, small and fast. It supports both tree and stream document +parsing.") + (home-page "https://github.com/ruby/rexml") + (license license:bsd-2))) + (define-public ruby-rubocop (package (name "ruby-rubocop") -- cgit v1.2.3 From 93ec41c648ced0c3606923366a3658d335148b11 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 15 Jul 2020 01:08:57 -0400 Subject: gnu: Add ruby-character-set. * gnu/packages/ruby.scm (ruby-character-set): New variable. --- gnu/packages/ruby.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index ad1692f4b9..3c3da2a625 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6495,6 +6495,35 @@ (define-public ruby-rexml (home-page "https://github.com/ruby/rexml") (license license:bsd-2))) +(define-public ruby-character-set + (package + (name "ruby-character-set") + (version "1.4.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "character_set" version)) + (sha256 + (base32 + "0affq9n77vwy897ri2zhmfinfagf37hcwwimrccy1bcxan9mj3h3")))) + (build-system ruby-build-system) + (arguments '(#:tests? #f)) ;avoid a cycle with ruby-regexp-parser + (synopsis "Ruby library to manipulate Unicode") + (description "CharacterSet is a C-extended Ruby library to work with sets +of Unicode code points. It can read and write these sets in various formats +and implements the @code{stdlib} @code{Set} interface for them. It also +offers an alternate paradigm of @code{String} processing which grants much +better performance than @code{Regexp} and @code{String} methods from the +@code{stdlib} where applicable. Many parts can be used independently, e.g.: +@itemize +@item @code{CharacterSet::Character} +@item @code{CharacterSet::Parser} +@item @code{CharacterSet::Writer} +@item @code{RangeCompressor} +@end itemize") + (home-page "https://github.com/jaynetics/character_set") + (license license:expat))) + (define-public ruby-rubocop (package (name "ruby-rubocop") -- cgit v1.2.3 From ac75f1df1d41249260c1599d8d62871189382bb0 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 15 Jul 2020 01:09:06 -0400 Subject: gnu: Add ruby-range-compressor. * gnu/packages/ruby.scm (ruby-range-compressor): New variable. --- gnu/packages/ruby.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 3c3da2a625..cf500c8efe 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6524,6 +6524,39 @@ (define-public ruby-character-set (home-page "https://github.com/jaynetics/character_set") (license license:expat))) +(define-public ruby-range-compressor + (package + (name "ruby-range-compressor") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/janosch-x/range_compressor.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0y8slri2msyyg2szgwgriqd6qw9hkxycssdrcl5lk2dbcq5zvn54")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "spec" + #:phases (modify-phases %standard-phases + (add-after 'extract-gemspec 'strip-version-requirements + (lambda _ + (substitute* "range_compressor.gemspec" + (("(.*add_.*dependency '[_A-Za-z0-9-]+').*" _ stripped) + (string-append stripped "\n"))) + #t))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec))) + (synopsis "Simple arrays of objects to arrays of ranges compressor") + (description "RangeCompresses is a tiny library that allows compressing +arrays of objects into arrays of ranges. For example, it can turn the +following: @code{[1, 2, 3, 4, 6, 8, 9, 10]} into @code{[1..4, 6..6, 8..10]}.") + (home-page "https://github.com/janosch-x/range_compressor") + (license license:expat))) + (define-public ruby-rubocop (package (name "ruby-rubocop") -- cgit v1.2.3 From 8aba0333b25006e4e09f7cb2b817eea12c4d77a8 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 15 Jul 2020 01:09:18 -0400 Subject: gnu: Add ruby-regexp-property-values. * gnu/packages/ruby.scm (ruby-regexp-property-values): New variable. --- gnu/packages/ruby.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index cf500c8efe..d0c6ccb9c1 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6557,6 +6557,37 @@ (define-public ruby-range-compressor (home-page "https://github.com/janosch-x/range_compressor") (license license:expat))) +(define-public ruby-regexp-property-values + (package + (name "ruby-regexp-property-values") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference ;no test suite in distributed gem + (url "https://github.com/jaynetics/regexp_property_values.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0l3fjmscg1wxn7kc6bl022cc6k5d91pwb7daq1b5w36kvsx52w1j")))) + (build-system ruby-build-system) + (arguments + '(#:test-target "default")) + (native-inputs + `(("ruby-character-set" ,ruby-character-set) + ("ruby-rake-compiler" ,ruby-rake-compiler) + ("ruby-range-compressor" ,ruby-range-compressor) + ("ruby-rspec" ,ruby-rspec))) + (synopsis "Inspect Ruby's regex engine property values") + (description "This small library lets you see which property values are +supported by the regular expression engine of the Ruby version you are running +and can directly read out their code point ranges. In other words, it +determines all supported values for @code{\\p{value}} expressions and what +they match.") + (home-page "https://github.com/jaynetics/regexp_property_values") + (license license:expat))) + (define-public ruby-rubocop (package (name "ruby-rubocop") -- cgit v1.2.3 From b6f2a8d164420213c9db223cf818626c8ae1a5ef Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:36:43 -0400 Subject: gnu: Add ruby-regexp-parser. * gnu/packages/ruby.scm (ruby-regexp-parser): New variable. --- gnu/packages/ruby.scm | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index d0c6ccb9c1..f80bba9b5f 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6588,6 +6588,47 @@ (define-public ruby-regexp-property-values (home-page "https://github.com/jaynetics/regexp_property_values") (license license:expat))) +(define-public ruby-regexp-parser + (package + (name "ruby-regexp-parser") + (version "1.7.1") + (source + (origin + (method git-fetch) ;bin/test missing from gem + (uri (git-reference + (url "https://github.com/ammar/regexp_parser.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0dk9d4vpw31cc06s29fqyr1kq0kipym1mydifkcrnppvpl3pd53r")))) + (build-system ruby-build-system) + (arguments + '(#:test-target "default" + #:phases (modify-phases %standard-phases + (add-before 'build 'compile-scanner.rb + (lambda _ + (invoke "rake" "build") + ;; XXX: This is needed otherwise the install + ;; phase fails to delete the installed cached + ;; gem file. + (delete-file-recursively "pkg") + #t))))) + (native-inputs + `(("ragel" ,ragel) + ("ruby-regexp-property-values" ,ruby-regexp-property-values) + ("ruby-rspec" ,ruby-rspec))) + (synopsis "A regular expression parser library for Ruby ") + (description "A Ruby gem for tokenizing, parsing, and transforming regular +expressions. It comprises the following components: +@itemize +@item A scanner/tokenizer based on Ragel, +@item A lexer that produces a stream of token objects, +@item A parser that produces a tree of Expression objects. +@end itemize") + (home-page "https://github.com/ammar/regexp_parser") + (license license:expat))) + (define-public ruby-rubocop (package (name "ruby-rubocop") -- cgit v1.2.3 From 12ed6da4fe4dc014c230ebbc857cfc698347ea2f Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:36:53 -0400 Subject: gnu: Add ruby-test-queue. * gnu/packages/ruby.scm (ruby-test-queue): New variable. --- gnu/packages/ruby.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index f80bba9b5f..0fae903592 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6629,6 +6629,38 @@ (define-public ruby-regexp-parser (home-page "https://github.com/ammar/regexp_parser") (license license:expat))) +(define-public ruby-test-queue + (package + (name "ruby-test-queue") + (version "0.4.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "test-queue" version)) + (sha256 + (base32 + "0hvm3n1qrqxqilhqk4rjivw3gcrd08zz1i6am9qzg1ppjxv6f36f")))) + (build-system ruby-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "rspec")) + #t))))) + (native-inputs + `(("ruby-rspec" ,ruby-rspec))) + (synopsis "Minitest/RSpec parallel test runner for CI environments") + (description "The test-queue module is a parallel test runner, +built using a centralized queue to ensure optimal distribution of +tests between workers. It is specifically optimized for Continuous +Integration (CI) environments: build statistics from each run are +stored locally and used to sort the queue at the beginning of the next +run.") + (home-page "https://github.com/tmm1/test-queue") + (license license:expat))) + (define-public ruby-rubocop (package (name "ruby-rubocop") -- cgit v1.2.3 From c164c402a1899ffd2b2caba541b51e05855e94b8 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:37:13 -0400 Subject: gnu: ruby-rubocop: Update to 0.88.0. * gnu/packages/patches/ruby-rubocop-break-dependency-cycle.patch: New file. * gnu/local.mk (dist_patch_DATA): Register patch. * gnu/packages/ruby.scm (ruby-rubocop): Update to 0.88.0. [origin]: Use git-fetch. Apply the newly added patch. [arguments]: Set #:test-target to "default". Remove #:tests?, enabling tests. [phases]{remove-problematic-tests, disable-bundler, set-home, make-adoc-files-writable}: New phases. Replace the 'replace-git-ls-files phase. [native-inputs]: Add ruby-bump, ruby-pry, ruby-rspec, ruby-test-queue, ruby-webmock-2 and ruby-yard. [propagated-inputs]: Remove ruby-powerpack and ruby-jaro-winkler. Add ruby-regexp-parser, ruby-rexml and ruby-rubocop-ast. --- gnu/local.mk | 1 + .../ruby-rubocop-break-dependency-cycle.patch | 101 +++++++++++++++++++++ gnu/packages/ruby.scm | 68 ++++++++++++-- 3 files changed, 160 insertions(+), 10 deletions(-) create mode 100644 gnu/packages/patches/ruby-rubocop-break-dependency-cycle.patch (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/local.mk b/gnu/local.mk index b3811a473f..e8915990bc 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1513,6 +1513,7 @@ dist_patch_DATA = \ %D%/packages/patches/racket-store-checksum-override.patch \ %D%/packages/patches/retroarch-disable-online-updater.patch \ %D%/packages/patches/ruby-rack-ignore-failing-test.patch \ + %D%/packages/patches/ruby-rubocop-break-dependency-cycle.patch\ %D%/packages/patches/ruby-sanitize-system-libxml.patch \ %D%/packages/patches/ruby-tzinfo-data-ignore-broken-test.patch\ %D%/packages/patches/runc-CVE-2019-5736.patch \ diff --git a/gnu/packages/patches/ruby-rubocop-break-dependency-cycle.patch b/gnu/packages/patches/ruby-rubocop-break-dependency-cycle.patch new file mode 100644 index 0000000000..035a98fa33 --- /dev/null +++ b/gnu/packages/patches/ruby-rubocop-break-dependency-cycle.patch @@ -0,0 +1,101 @@ +From ff3f00b7f33332ebf1c3c05abc4a781684775b3c Mon Sep 17 00:00:00 2001 +From: Maxim Cournoyer +Date: Tue, 14 Jul 2020 11:50:12 -0400 +Subject: [PATCH] config: Drop rubocop-performance, rubocop-rspec requirements. + +This patch removes Rubocop extensions from Rubocop's closure to break +a dependency cycle with itself. + +* .rubocop.yml: Remove rubocop-performance and rubocop-rspec and their +corresponding directives. +* .rubocop_todo.yml: Likewise. +--- + .rubocop.yml | 15 --------------- + .rubocop_todo.yml | 44 -------------------------------------------- + 2 files changed, 59 deletions(-) + +diff --git a/.rubocop.yml b/.rubocop.yml +index 4f05d5be2..f12ef7c06 100644 +--- a/.rubocop.yml ++++ b/.rubocop.yml +@@ -3,8 +3,6 @@ + inherit_from: .rubocop_todo.yml + require: + - rubocop/cop/internal_affairs +- - rubocop-performance +- - rubocop-rspec + + AllCops: + NewCops: enable +@@ -106,16 +104,3 @@ Metrics/ClassLength: + Metrics/ModuleLength: + Exclude: + - 'spec/**/*.rb' +- +-RSpec/FilePath: +- Exclude: +- - spec/rubocop/formatter/junit_formatter_spec.rb +- +-RSpec/PredicateMatcher: +- EnforcedStyle: explicit +- +-RSpec/MessageSpies: +- EnforcedStyle: receive +- +-RSpec/NestedGroups: +- Max: 7 +diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml +index 3f72042d1..fa637cd42 100644 +--- a/.rubocop_todo.yml ++++ b/.rubocop_todo.yml +@@ -24,47 +24,3 @@ Metrics/MethodLength: + # Configuration parameters: CountComments. + Metrics/ModuleLength: + Max: 132 +- +-# Offense count: 10 +-RSpec/AnyInstance: +- Exclude: +- - 'spec/rubocop/cli_spec.rb' +- - 'spec/rubocop/cop/lint/duplicate_methods_spec.rb' +- - 'spec/rubocop/cop/team_spec.rb' +- - 'spec/rubocop/target_finder_spec.rb' +- +-# Offense count: 981 +-# Configuration parameters: Prefixes. +-# Prefixes: when, with, without +-RSpec/ContextWording: +- Enabled: false +- +-# Offense count: 3810 +-# Configuration parameters: Max. +-RSpec/ExampleLength: +- Enabled: false +- +-# Offense count: 38 +-RSpec/ExpectOutput: +- Exclude: +- - 'spec/rubocop/cli/cli_auto_gen_config_spec.rb' +- - 'spec/rubocop/cli/cli_options_spec.rb' +- - 'spec/rubocop/config_spec.rb' +- - 'spec/rubocop/cop/cop_spec.rb' +- - 'spec/rubocop/formatter/disabled_config_formatter_spec.rb' +- - 'spec/rubocop/formatter/formatter_set_spec.rb' +- - 'spec/rubocop/options_spec.rb' +- - 'spec/rubocop/rake_task_spec.rb' +- - 'spec/rubocop/result_cache_spec.rb' +- - 'spec/rubocop/target_finder_spec.rb' +- +-# Offense count: 434 +-RSpec/MultipleExpectations: +- Max: 25 +- +-# Offense count: 5 +-RSpec/SubjectStub: +- Exclude: +- - 'spec/rubocop/config_spec.rb' +- - 'spec/rubocop/formatter/json_formatter_spec.rb' +- - 'spec/rubocop/formatter/progress_formatter_spec.rb' +-- +2.27.0 + diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 0fae903592..8b87449d7d 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6664,25 +6664,73 @@ (define-public ruby-test-queue (define-public ruby-rubocop (package (name "ruby-rubocop") - (version "0.77.0") + (version "0.88.0") (source (origin - (method url-fetch) - (uri (rubygems-uri "rubocop" version)) + (method git-fetch) ;no tests in distributed gem + (uri (git-reference + (url "https://github.com/rubocop-hq/rubocop.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "0m88b1bgbhmmbdnz2xv6n0il0j4q5qm9jbc0vf1zsaxmxqp06nx9")))) + "1d06893jp8pd85fvgp5d16vqcf31bafi430v4f4y746ihyvhzz5r")) + (patches (search-patches "ruby-rubocop-break-dependency-cycle.patch")))) (build-system ruby-build-system) (arguments - '(;; No included tests - #:tests? #f)) + '(#:test-target "default" + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'remove-problematic-tests + ;; These tests depend on Rubocop extensions, which cannot be + ;; included as they cause a dependency cycle with Rubocop itself. + (lambda _ + (delete-file "spec/rubocop/config_loader_spec.rb") + (substitute* "Gemfile" + ((".*'rubocop-performance'.*") "") + ((".*'rubocop-rspec'.*") "")) + ;; Prevent "Unnecessary disabling of RSpec/* (unknown cop)" + ;; errors. + (substitute* (find-files "spec/rubocop/cop/" "_spec\\.rb$") + (("# (rubocop:(enable|disable) RSpec.*)" _ what) + (string-append "# Disabled: " what))) + #t)) + (add-after 'unpack 'disable-bundler + (lambda _ + (substitute* "Rakefile" + (("Bundler\\.setup.*") "nil\n")) + #t)) + (replace 'replace-git-ls-files + (lambda _ + (substitute* "rubocop.gemspec" + (("`git ls-files(.*)`" _ files) + (format #f "`find ~a -type f| sort`" files))) + #t)) + (add-before 'check 'set-home + (lambda _ + (setenv "HOME" (getcwd)) + #t)) + (add-before 'check 'make-adoc-files-writable + (lambda _ + (let ((adoc-files (find-files "docs/modules/ROOT/pages" + "\\.adoc$"))) + (for-each make-file-writable adoc-files)) + #t))))) + (native-inputs + `(("ruby-bump" ,ruby-bump) + ("ruby-pry" ,ruby-pry) + ("ruby-rspec" ,ruby-rspec) + ("ruby-test-queue" ,ruby-test-queue) + ("ruby-webmock" ,ruby-webmock-2) + ("ruby-yard" ,ruby-yard))) (propagated-inputs - `(("ruby-parser" ,ruby-parser) - ("ruby-powerpack" ,ruby-powerpack) + `(("ruby-parallel" ,ruby-parallel) + ("ruby-parser" ,ruby-parser) ("ruby-rainbow" ,ruby-rainbow) + ("ruby-regexp-parser" ,ruby-regexp-parser) + ("ruby-rexml" ,ruby-rexml) + ("ruby-rubocop-ast" ,ruby-rubocop-ast) ("ruby-progressbar" ,ruby-progressbar) - ("ruby-parallel" ,ruby-parallel) - ("ruby-jaro-winkler" ,ruby-jaro-winkler) ("ruby-unicode-display-width" ,ruby-unicode-display-width))) (synopsis "Ruby code style checking tool") (description -- cgit v1.2.3 From 668617923b63375e9dc093909d67a3a11df5732a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 00:17:41 -0400 Subject: gnu: Add ruby-rubocop-performance. * gnu/packages/ruby.scm (ruby-rubocop-performance): New variable. --- gnu/packages/ruby.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 8b87449d7d..5666e0c1e9 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1440,6 +1440,28 @@ (define-public ruby-treetop (home-page "https://github.com/cjheath/treetop") (license license:expat))) +(define-public ruby-rubocop-performance + (package + (name "ruby-rubocop-performance") + (version "1.7.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "rubocop-performance" version)) + (sha256 + (base32 + "04r8d4x62ygv17spvz9yyfxbmbf8qxwhijs0xycfvzr0q4pyg9sw")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) ;no test suite in the distributed gem + (propagated-inputs + `(("ruby-rubocop" ,ruby-rubocop))) + (synopsis "Performance optimizations checkers for Ruby code") + (description "This package provides a collection of RuboCop cops to check +for performance optimizations in Ruby code.") + (home-page "https://docs.rubocop.org/rubocop-performance/") + (license license:expat))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From c7ab342a366a9372d9c6a670a460edaeb8c550a5 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 01:18:11 -0400 Subject: gnu: Add ruby-gimme. * gnu/packages/ruby.scm (ruby-gimme): New variable. --- gnu/packages/ruby.scm | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 5666e0c1e9..ce41b41b4e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1462,6 +1462,69 @@ (define-public ruby-rubocop-performance (home-page "https://docs.rubocop.org/rubocop-performance/") (license license:expat))) +(define-public ruby-gimme + (let ((revision "1") + (commit "4e71f0236f1271871916dd403261d26533db34c0")) + (package + (name "ruby-gimme") + (version (git-version "0.5.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/searls/gimme.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0hrd32ygvf3i7h47ak8f623cz8ns9q7g60nnnvvlnywbggjaz3h6")))) + (build-system ruby-build-system) + (native-inputs + `(("ruby-coveralls" ,ruby-coveralls) + ("ruby-cucumber" ,ruby-cucumber) + ("ruby-pry" ,ruby-pry) + ("ruby-simplecov" ,ruby-simplecov) + ("ruby-rspec-given" ,ruby-rspec-given))) + (arguments + `(;; The cucumber task fails with error: "index 3 out of matches + ;; (IndexError)", apparently due to our newer Cucumber version. + ;; TODO: Try the "default" task with a future release. + #:test-target "spec" + #:phases + (modify-phases %standard-phases + (add-after 'extract-gemspec 'prepare-for-tests + (lambda _ + ;; Delete failing tests (possibly due to our newer rspec + ;; version). + (delete-file "spec/gimme/gives_class_methods_spec.rb") + (delete-file "spec/gimme/rspec_adapter_spec.rb") + (delete-file "spec/gimme/verifies_class_methods_spec.rb") + ;; Fix duplicate version requirements and de-register files. + (delete-file "Gemfile") + (delete-file "Gemfile.lock") + (substitute* "gimme.gemspec" + ((".*\"Gemfile\".*") "") + ((".*\"Gemfile\\.lock\",.*") "") + ((".*(rspec|cucumber).*\">= 0\".*") "") + (("\"spec/gimme/gives_class_methods_spec.rb\",") "") + (("\"spec/gimme/rspec_adapter_spec.rb\",") "") + (("\"spec/gimme/verifies_class_methods_spec.rb\",") "") + ;; All of these gems relate to development, and are + ;; unnecessary when running the tests. + ((".*(add|gem).*guard-.*") "") + ((".*(add|gem).*jeweler.*") "") + ((".*(add|gem).*pry.*") "") + ((".*(add|gem).*growl.*") "") + ((".*(add|gem).*rb-fsevent.*") "")) + #t))))) + (synopsis "Lightweight test double library for Ruby") + (description "Gimme is a very lightweight test double library for Ruby, +based on Mockito (a mocking framework for Java). It is an opinionated (but +not noisy) means to facilitate test-driving by enabling the authors to specify +only what they care about.") + (home-page "https://github.com/searls/gimme") + (license license:expat)))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From 97295c2aa4b7c2e9f5952b6e181812d8e34b769f Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:25:41 -0400 Subject: gnu: Add ruby-standard. * gnu/packages/ruby.scm (ruby-standard): New variable. --- gnu/packages/ruby.scm | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index ce41b41b4e..e38f9afd22 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1525,6 +1525,58 @@ (define-public ruby-gimme (home-page "https://github.com/searls/gimme") (license license:expat)))) +(define-public ruby-standard + (package + (name "ruby-standard") + (version "0.4.7") + (source + (origin + (method git-fetch) ;no test suite in distributed gem + (uri (git-reference + (url "https://github.com/testdouble/standard.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0ylx0lm2pbbgr5h7fban592w96bl3wxmvfcpcdfrhkxnpg5kiwgv")))) + (build-system ruby-build-system) + (arguments + ;; TODO: the tests are currently broken due to using a newer Rubocop. + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'relax-version-requiremens + (lambda _ + (delete-file "Gemfile") + (delete-file "Gemfile.lock") + #t)) + (replace 'replace-git-ls-files + (lambda _ + ;; TODO: Remove after the fix of using 'cut' to better mimic the + ;; git ls-files output is merged in ruby-build-system. + (substitute* "standard.gemspec" + (("`git ls-files -z`") + "`find . -type f -not -regex '.*\\.gem$' -print0 \ +|sort -z|cut -zc3-`")) + #t))))) + (native-inputs + `(("ruby-gimme" ,ruby-gimme) + ("ruby-pry" ,ruby-pry) + ("ruby-simplecov" ,ruby-simplecov))) + (propagated-inputs + `(("ruby-rubocop" ,ruby-rubocop) + ("ruby-rubocop-performance" ,ruby-rubocop-performance))) + (synopsis "Ruby Style Guide, with linter & automatic code fixer") + (description "Standard is a port of StandardJS. Like StandardJS, it aims +to save time in the following ways: +@itemize +@item No configuration. +@item Automatically format code. +@item Catch style issues and programmer errors early. +@end itemize") + (home-page "https://github.com/testdouble/standard") + (license license:expat))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From db9f951b837a95558e98564fdeed1cc2fd37d39b Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:26:17 -0400 Subject: gnu: Add ruby-chunky-png. * gnu/packages/ruby.scm (ruby-chunky-png): New variable. --- gnu/packages/ruby.scm | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index e38f9afd22..530e5a14f7 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1577,6 +1577,74 @@ (define-public ruby-standard (home-page "https://github.com/testdouble/standard") (license license:expat))) +(define-public ruby-chunky-png + ;; There hasn't been a release since 2018/11/21 and there are test failures + ;; in that release, so use the latest commit. + (let ((revision "1") + (commit "143b9cd1412e49edd4f8b661c7cd9b22941f43c0")) + (package + (name "ruby-chunky-png") + (version (git-version "1.3.11" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wvanbergen/chunky_png.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0wbcgfzymbpmmxsb04arc49a2icki6f2fc6d6sqgg8369mc67g9z")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "spec" + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'disable-bundler + (lambda _ + (substitute* (find-files "." "\\.rb$") + (("require.*bundler/setup.*") "")) + #t)) + (replace 'replace-git-ls-files + (lambda _ + ;; TODO: Remove after the fix of using 'cut' to better mimic the + ;; git ls-files output is merged in ruby-build-system. + (substitute* "chunky_png.gemspec" + (("`git ls-files`") + "`find . -type f -not -regex '.*\\.gem$' |sort |cut -c3-`")) + #t))))) + (native-inputs + `(("bundler" ,bundler) + ("ruby-rspec" ,ruby-rspec) + ("ruby-standard" ,ruby-standard) + ("ruby-yard" ,ruby-yard))) + (synopsis "Ruby library to handle PNG images") + (description "ChunkyPNG is a pure Ruby library that can read and write +Portable Network Graphics (PNG) images without depending on an external image +library. It tries to be memory efficient and reasonably fast. It has +features such as: +@itemize +@item +Decoding support for any image that the PNG standard allows. This includes all +standard color modes, all bit depths, all transparency, and interlacing and +filtering options. +@item +Encoding support for images of all color modes (true color, grayscale, and +indexed) and transparency for all these color modes. The best color mode is +chosen automatically, based on the amount of used colors. +@item Read/write access to the image's pixels. +@item Read/write access to all image metadata that is stored in chunks. +@item +Memory efficiency: @code{fixnum} are used, i.e. 4 or 8 bytes of memory per +pixel, depending on the hardware). +@item +Performance: ChunkyPNG is reasonably fast for Ruby standards, by only using +integer math and a highly optimized saving routine. +@item Interoperability with RMagick. +@end itemize") + (home-page "https://github.com/wvanbergen/chunky_png/wiki") + (license license:expat)))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From f421785bd7bf44da6080b1d5df9311a5486c49a7 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:26:27 -0400 Subject: gnu: Add ruby-text-hyphen. * gnu/packages/ruby.scm (ruby-text-hyphen): New variable. --- gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 530e5a14f7..21b1abade4 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1645,6 +1645,31 @@ (define-public ruby-chunky-png (home-page "https://github.com/wvanbergen/chunky_png/wiki") (license license:expat)))) +(define-public ruby-text-hyphen + (package + (name "ruby-text-hyphen") + (version "1.4.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "text-hyphen" version)) + (sha256 + (base32 + "1gj4awvs9ryf960m0iawg43jyjmfwcqgfwrbcfp890a57b9ag7q1")))) + (build-system ruby-build-system) + (native-inputs + `(("ruby-hoe" ,ruby-hoe))) + (synopsis "Ruby library to hyphenate words in various languages") + (description "Text::Hyphen is a Ruby library to hyphenate words in various +languages using Ruby-fied versions of TeX hyphenation patterns. It will +properly hyphenate various words according to the rules of the language the +word is written in. The algorithm is based on that of the TeX typesetting +system by Donald E. Knuth.") + (home-page "https://github.com/halostatue/text-hyphen") + ;; The whole is licensed under the Expat license, but parts use various + ;; versions of the LaTeX Project Public License. + (license license:expat))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From 7d94616d2ad713cad7fc4878e767f4a9018baf4c Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:43:49 -0400 Subject: gnu: Add ruby-open-uri-cached. * gnu/packages/ruby.scm (ruby-open-uri-cached): New variable. --- gnu/packages/ruby.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 21b1abade4..49ed262187 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1670,6 +1670,27 @@ (define-public ruby-text-hyphen ;; versions of the LaTeX Project Public License. (license license:expat))) +(define-public ruby-open-uri-cached + (package + (name "ruby-open-uri-cached") + (version "0.0.5") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "open-uri-cached" version)) + (sha256 + (base32 + "13xy2vhrgz9mdxhklw5fszhamsdxh8ysf3l40g92hqm4hm288wap")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) ;no test suite + (synopsis "OpenURI with transparent disk caching") + (description "OpenURI with transparent disk caching, which is +useful to avoid making excessive queries, for example when scraping +web pages.") + (home-page "https://github.com/tigris/open-uri-cached") + (license license:expat))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From 22d6b5345284c5995814368b612c7dbec22e6979 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:54:56 -0400 Subject: gnu: ruby-rouge: Update to 3.21.0. * gnu/packages/ruby.scm (ruby-rouge): Update to 3.21.0. --- gnu/packages/ruby.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 49ed262187..69f7e7683e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -10662,13 +10662,13 @@ (define-public ruby-em-websocket (define-public ruby-rouge (package (name "ruby-rouge") - (version "3.13.0") + (version "3.21.0") (source (origin (method url-fetch) (uri (rubygems-uri "rouge" version)) (sha256 (base32 - "1y90nx9ph9adnrpcsvs2adca2l3dyz8am2d2kzxkwd3a086ji7aw")))) + "1agrrmj88k9jkk36ra1ml2c1jffpp595pkxmcla74ac9ia09vn3s")))) (build-system ruby-build-system) (arguments `(#:tests? #f)); No rakefile (home-page "http://rouge.jneen.net/") -- cgit v1.2.3 From 9c5a7d0012944809128eca76938e8eb573abc979 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 14 Jul 2020 22:45:21 -0400 Subject: gnu: Add ruby-asciidoctor-pdf. * gnu/packages/ruby.scm (ruby-asciidoctor-pdf): New variable. --- gnu/packages/ruby.scm | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 69f7e7683e..e03edfc747 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1691,6 +1691,111 @@ (define-public ruby-open-uri-cached (home-page "https://github.com/tigris/open-uri-cached") (license license:expat))) +(define-public ruby-asciidoctor-pdf + ;; Use the latest commit, as the last tag doesn't build with the + ;; latest Ruby dependencies in Guix. + (let ((revision "1") + (commit "d257440df895d1595a3825ef58b32e4b290ba1c3")) + (package + (name "ruby-asciidoctor-pdf") + (version (git-version "1.5.3" revision commit)) + (source + (origin + (method git-fetch) ;no test suite in the distributed gem + (uri (git-reference + (url "https://github.com/asciidoctor/asciidoctor-pdf.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1563d11ghzsrsg4inwfwj6b9hb5sk5b429f49fwq5qg3sq76kgjj")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "spec" + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'remove-failing-tests + ;; Two tests module fail for unknown reasons, *only* when + ;; ran in the build container (see: + ;; https://github.com/asciidoctor/asciidoctor-pdf/issues/1725#issuecomment-658777965). + (lambda _ + (delete-file "spec/audio_spec.rb") + (delete-file "spec/video_spec.rb") + #t)) + (add-after 'extract-gemspec 'strip-version-requirements + (lambda _ + (substitute* "asciidoctor-pdf.gemspec" + (("(.*add_.*dependency '[_A-Za-z0-9-]+').*" _ stripped) + (string-append stripped "\n"))) + #t)) + (replace 'replace-git-ls-files + ;; TODO: Remove after the fix of using 'cut' to better mimic the + ;; git ls-files output is merged in ruby-build-system. + (lambda _ + (substitute* "asciidoctor-pdf.gemspec" + (("`git ls-files -z`") + "`find . -type f -not -regex '.*\\.gem$' -print0 \ +|sort -z|cut -zc3-`")) + #t)) + ;; The tests rely on the Gem being installed, so move the check phase + ;; after the install phase. + (delete 'check) + (add-after 'install 'check + (lambda* (#:key outputs tests? #:allow-other-keys) + (let ((new-gem (string-append (assoc-ref outputs "out") + "/lib/ruby/vendor_ruby"))) + (setenv "GEM_PATH" + (string-append (getenv "GEM_PATH") ":" new-gem)) + (when tests? + (invoke "rspec" "-t" "~visual" "-t" "~cli" "-t" "~network")) + #t)))))) + (native-inputs + `(("ruby-chunky-png" ,ruby-chunky-png) + ("ruby-coderay" ,ruby-coderay) + ("ruby-pdf-inspector" ,ruby-pdf-inspector) + ("ruby-rouge" ,ruby-rouge) + ("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-asciidoctor" ,ruby-asciidoctor) + ("ruby-concurrent-ruby" ,ruby-concurrent) + ("ruby-open-uri-cached" ,ruby-open-uri-cached) + ("ruby-prawn" ,ruby-prawn) + ("ruby-prawn-icon" ,ruby-prawn-icon) + ("ruby-prawn-svg" ,ruby-prawn-svg) + ("ruby-prawn-table" ,ruby-prawn-table) + ("ruby-prawn-templates" ,ruby-prawn-templates) + ("ruby-safe-yaml" ,ruby-safe-yaml) + ("ruby-text-hyphen" ,ruby-text-hyphen) + ("ruby-thread-safe" ,ruby-thread-safe) + ("ruby-treetop" ,ruby-treetop) + ("ruby-ttfunk" ,ruby-ttfunk))) + (synopsis"AsciiDoc to Portable Document Format (PDF)} converter") + (description "Asciidoctor PDF is an extension for Asciidoctor that +converts AsciiDoc documents to Portable Document Format (PDF) using the Prawn +PDF library. It has features such as: +@itemize +@item Direct AsciiDoc to PDF conversion +@item Configuration-driven theme (style and layout) +@item Scalable Vector Graphics (SVG) support +@item PDF document outline (i.e., bookmarks) +@item Table of contents page(s) +@item Document metadata (title, authors, subject, keywords, etc.) +@item Internal cross reference links +@item Syntax highlighting with Rouge, Pygments, or CodeRay +@item Page numbering +@item Customizable running content (header and footer) +@item +“Keep together” blocks (i.e., page breaks avoided in certain block content) +@item Orphaned section titles avoided +@item Autofit verbatim blocks (as permitted by base_font_size_min setting) +@item Table border settings honored +@item Font-based icons +@item Custom TrueType (TTF) fonts +@item Double-sided printing mode (margins alternate on recto and verso pages) +@end itemize") + (home-page "https://asciidoctor.org/docs/asciidoctor-pdf") + (license license:expat)))) + (define-public ruby-ast (package (name "ruby-ast") -- cgit v1.2.3 From 479c032495b8c872dc4fb5348702a6d4fa07ca8c Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 17 Jul 2020 17:23:38 -0400 Subject: gnu: ruby-yard: Make the package reproducible. * gnu/packages/ruby.scm (ruby-yard)[phases]: Add a 'do-not-set-date-in-gemspec phase. --- gnu/packages/ruby.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index e03edfc747..99ef4fbd6b 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8098,7 +8098,15 @@ (define-public ruby-yard (arguments ;; Note: Tests are willfully disabled to alleviate dependency cycle ;; problems. - `(#:tests? #f)) + `(#:tests? #f + #:phases (modify-phases %standard-phases + (add-after 'unpack 'do-not-set-date-in-gemspec + ;; Fix a reproducibility issue (see: + ;; https://github.com/lsegal/yard/issues/1343). + (lambda _ + (substitute* "yard.gemspec" + ((".*s\\.date.*") "")) + #t))))) (synopsis "Documentation generation tool for Ruby") (description "YARD is a documentation generation tool for the Ruby programming language. It enables the user to generate consistent, usable -- cgit v1.2.3