1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-17 04:20:44 +02:00

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.
This commit is contained in:
Tobias Geerinckx-Rice 2020-07-16 18:20:30 +02:00
parent 228d290106
commit 702a101257
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79
14 changed files with 44 additions and 44 deletions

View file

@ -1587,7 +1587,7 @@ Affymetrix (CEL files) and NimbleGen arrays (XYS files).")
("r-reshape2" ,r-reshape2))) ("r-reshape2" ,r-reshape2)))
(native-inputs (native-inputs
`(("r-knitr" ,r-knitr))) `(("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") (synopsis "Q-value estimation for false discovery rate control")
(description (description
"This package takes a list of p-values resulting from the simultaneous "This package takes a list of p-values resulting from the simultaneous

View file

@ -1600,7 +1600,7 @@ testing frameworks.")
(propagated-inputs (propagated-inputs
`(("python-coverage" ,python-coverage) `(("python-coverage" ,python-coverage)
("python-requests" ,python-requests))) ("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}") (synopsis "Upload code coverage reports to @code{codecov.io}")
(description (description
"Codecov collects code coverage reports from code written in Python, Java, "Codecov collects code coverage reports from code written in Python, Java,
@ -2163,7 +2163,7 @@ a fork of pytest-capturelog.")
(propagated-inputs (propagated-inputs
`(("python-coverage" ,python-coverage) `(("python-coverage" ,python-coverage)
("python-nose" ,python-nose))) ("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") (synopsis "Extends nose.plugins.cover to add Cobertura-style XML reports")
(description "Nose-xcover is a companion to the built-in (description "Nose-xcover is a companion to the built-in
@code{nose.plugins.cover}. This plugin will write out an XML coverage report @code{nose.plugins.cover}. This plugin will write out an XML coverage report

View file

@ -2347,7 +2347,7 @@ in main memory.")
`(("r-bit" ,r-bit) `(("r-bit" ,r-bit)
("r-fastmatch" ,r-fastmatch) ("r-fastmatch" ,r-fastmatch)
("r-ff" ,r-ff))) ("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'") (synopsis "Basic statistical functions for package 'ff'")
(description (description
"This package extends the out of memory vectors of @code{ff} with "This package extends the out of memory vectors of @code{ff} with
@ -3530,7 +3530,7 @@ for certain use cases.")
("r-scales" ,r-scales))) ("r-scales" ,r-scales)))
(native-inputs (native-inputs
`(("r-knitr" ,r-knitr))) ; for vignettes `(("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") (synopsis "Repulsive text and label geometries for ggplot2")
(description (description
"This package provides text and label geometries for ggplot2 that help to "This package provides text and label geometries for ggplot2 that help to
@ -13205,7 +13205,7 @@ plotting functions are available for analyzing clustering results.")
("r-tibble" ,r-tibble))) ("r-tibble" ,r-tibble)))
(native-inputs (native-inputs
`(("r-knitr" ,r-knitr))) `(("r-knitr" ,r-knitr)))
(home-page "http://github.com/rnabioco/valr") (home-page "https://github.com/rnabioco/valr")
(synopsis "Genome interval arithmetic in R") (synopsis "Genome interval arithmetic in R")
(description (description
"This package enables you to read and manipulate genome intervals and "This package enables you to read and manipulate genome intervals and

View file

@ -1995,7 +1995,7 @@ BLAKE2bp hash functions.")
`(#:skip-build? #t `(#:skip-build? #t
#:cargo-development-inputs #:cargo-development-inputs
(("rust-objc-test-utils" ,rust-objc-test-utils-0.0)))) (("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") (synopsis "Rust interface for Apple's C language extension of blocks")
(description "This package provides a rust interface for Apple's C language (description "This package provides a rust interface for Apple's C language
extension of blocks.") extension of blocks.")
@ -5724,7 +5724,7 @@ for intentionally leaking memory")
"019nzy993hxaiazcdnayx3csv2iki34i535asw11ki96hakkrs84")))) "019nzy993hxaiazcdnayx3csv2iki34i535asw11ki96hakkrs84"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments '(#:tests? #f)) ; Tests only run on Mac. (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") (synopsis "Rust wrapper for Apple's Grand Central Dispatch")
(description "This package provides a Rust wrapper for Apple's Grand (description "This package provides a Rust wrapper for Apple's Grand
Central Dispatch.") Central Dispatch.")
@ -15258,7 +15258,7 @@ giga, kibi.")
#:cargo-inputs #:cargo-inputs
(("rust-malloc-buf" ,rust-malloc-buf-0.0) (("rust-malloc-buf" ,rust-malloc-buf-0.0)
("rust-objc-exception" ,rust-objc-exception-0.1)))) ("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") (synopsis "Objective-C Runtime bindings and wrapper for Rust")
(description "This package provides an Objective-C Runtime bindings and (description "This package provides an Objective-C Runtime bindings and
wrapper for Rust.") wrapper for Rust.")
@ -15282,7 +15282,7 @@ wrapper for Rust.")
`(#:skip-build? #t `(#:skip-build? #t
#:cargo-inputs #:cargo-inputs
(("rust-cc" ,rust-cc-1.0)))) (("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") (synopsis "Rust interface for Objective-C's throw and try/catch statements")
(description (description
"This package provides a Rust interface for Objective-C's throw and "This package provides a Rust interface for Objective-C's throw and
@ -15309,7 +15309,7 @@ try/catch statements.")
(("rust-block" ,rust-block-0.1) (("rust-block" ,rust-block-0.1)
("rust-objc" ,rust-objc-0.2) ("rust-objc" ,rust-objc-0.2)
("rust-objc-id" ,rust-objc-id-0.1)))) ("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") (synopsis "Rust wrapper for Objective-C's Foundation framework")
(description "This package provides a rust wrapper for Objective-C's (description "This package provides a rust wrapper for Objective-C's
Foundation framework.") Foundation framework.")
@ -15332,7 +15332,7 @@ Foundation framework.")
(arguments (arguments
`(#:tests? #f ; Tests require gcc-objc. `(#:tests? #f ; Tests require gcc-objc.
#:cargo-inputs (("rust-objc" ,rust-objc-0.2)))) #: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") (synopsis "Rust smart pointers for Objective-C reference counting")
(description (description
"This package provides Rust smart pointers for Objective-C reference counting.") "This package provides Rust smart pointers for Objective-C reference counting.")
@ -15356,7 +15356,7 @@ Foundation framework.")
`(#:skip-build? #t `(#:skip-build? #t
#:cargo-inputs #:cargo-inputs
(("rust-gcc" ,rust-gcc-0.3)))) (("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") (synopsis "Utilities for testing Objective-C interop")
(description (description
"This package provides utilities for testing Objective-C interop.") "This package provides utilities for testing Objective-C interop.")
@ -15478,7 +15478,7 @@ Things in odds may move to more appropriate crates if we find them.")
("rust-bitflags" ,rust-bitflags-1) ("rust-bitflags" ,rust-bitflags-1)
("rust-lazy-static" ,rust-lazy-static-1) ("rust-lazy-static" ,rust-lazy-static-1)
("rust-onig-sys" ,rust-onig-sys-69.2)))) ("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 (synopsis
"Rust bindings for the Oniguruma regular expression library") "Rust bindings for the Oniguruma regular expression library")
(description (description
@ -15507,7 +15507,7 @@ character encodings and regex syntaxes.")
(("rust-pkg-config" ,rust-pkg-config-0.3) (("rust-pkg-config" ,rust-pkg-config-0.3)
("rust-bindgen" ,rust-bindgen-0.50) ("rust-bindgen" ,rust-bindgen-0.50)
("rust-cc" ,rust-cc-1.0)))) ("rust-cc" ,rust-cc-1.0))))
(home-page "http://github.com/iwillspeak/rust-onig") (home-page "https://github.com/rust-onig/rust-onig")
(synopsis (synopsis
"Rust bindings to the oniguruma library.") "Rust bindings to the oniguruma library.")
(description (description
@ -28139,7 +28139,7 @@ designed for reexporting.")
(("rust-chrono" ,rust-chrono-0.4) (("rust-chrono" ,rust-chrono-0.4)
("rust-chrono" ,rust-chrono-0.4) ("rust-chrono" ,rust-chrono-0.4)
("rust-bitflags" ,rust-bitflags-1)))) ("rust-bitflags" ,rust-bitflags-1))))
(home-page "http://github.com/rustyhorde/vergen") (home-page "https://github.com/rustyhorde/vergen")
(synopsis "Generate version related functions") (synopsis "Generate version related functions")
(description (description
"Generate version related functions.") "Generate version related functions.")

View file

@ -965,7 +965,7 @@ the KeepKey Hardware Wallet.")
(inputs (inputs
`(("python-ledgerblue" ,python-ledgerblue) `(("python-ledgerblue" ,python-ledgerblue)
("python-trezor-agent" ,python-trezor-agent))) ("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") (synopsis "Ledger as hardware SSH/GPG agent")
(description "This package allows using Ledger as hardware SSH/GPG agent. (description "This package allows using Ledger as hardware SSH/GPG agent.
@ -1024,7 +1024,7 @@ agent.")
(inputs (inputs
`(("python-keepkey" ,python-keepkey) `(("python-keepkey" ,python-keepkey)
("python-trezor-agent" ,python-trezor-agent))) ("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") (synopsis "KeepKey as hardware SSH/GPG agent")
(description "This package allows using KeepKey as a hardware SSH/GPG (description "This package allows using KeepKey as a hardware SSH/GPG
agent.") agent.")

View file

@ -392,7 +392,7 @@ been added since previous test run.")
(inputs (inputs
`(("ghc-tagged" ,ghc-tagged) `(("ghc-tagged" ,ghc-tagged)
("ghc-tasty" ,ghc-tasty))) ("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") (synopsis "Mark tasty tests as failure expected")
(description (description
"With the function @code{Test.Tasty.ExpectedFailure.expectFail} in the "With the function @code{Test.Tasty.ExpectedFailure.expectFail} in the

View file

@ -568,7 +568,7 @@ Haskell's Web Application Interface (WAI).")
("ghc-tasty-hedgehog" ,ghc-tasty-hedgehog) ("ghc-tasty-hedgehog" ,ghc-tasty-hedgehog)
("ghc-tasty-hunit" ,ghc-tasty-hunit) ("ghc-tasty-hunit" ,ghc-tasty-hunit)
("ghc-doctest" ,ghc-doctest))) ("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") (synopsis "Chunked HTTP transfer encoding for bytestring builders")
(description "This Haskell library contains functions for encoding (description "This Haskell library contains functions for encoding
bytestring builders for chunked Hypertext Transfer Protocol (HTTP) 1.1 bytestring builders for chunked Hypertext Transfer Protocol (HTTP) 1.1
@ -616,7 +616,7 @@ transfers.")
("ghc-hunit" ,ghc-hunit) ("ghc-hunit" ,ghc-hunit)
("ghc-http-client" ,ghc-http-client) ("ghc-http-client" ,ghc-http-client)
("hspec-discover" ,hspec-discover))) ("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") (synopsis "HTTP server library for Haskell's WAI")
(description "Warp is a server library for HTTP/1.x and HTTP/2 (description "Warp is a server library for HTTP/1.x and HTTP/2
based WAI (Web Application Interface in Haskell).") based WAI (Web Application Interface in Haskell).")
@ -671,7 +671,7 @@ limitation, automatic pruning, energy saving and replay resistance.")
("ghc-tls-session-manager" ,ghc-tls-session-manager) ("ghc-tls-session-manager" ,ghc-tls-session-manager)
("ghc-wai" ,ghc-wai) ("ghc-wai" ,ghc-wai)
("ghc-warp" ,ghc-warp))) ("ghc-warp" ,ghc-warp)))
(home-page "http://github.com/yesodweb/wai") (home-page "https://github.com/yesodweb/wai")
(synopsis "SSL/TLS support for Warp") (synopsis "SSL/TLS support for Warp")
(description "This package provides SSL/TLS support for Warp, (description "This package provides SSL/TLS support for Warp,
a WAI handler, via the native Haskell TLS implementation.") a WAI handler, via the native Haskell TLS implementation.")

View file

@ -2472,7 +2472,7 @@ interface}.")
`(("ghc-hunit" ,ghc-hunit) `(("ghc-hunit" ,ghc-hunit)
("ghc-test-framework" ,ghc-test-framework) ("ghc-test-framework" ,ghc-test-framework)
("ghc-test-framework-hunit" ,ghc-test-framework-hunit))) ("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") (synopsis "Configuration management")
(description (description
"This package provides a configuration management library for programs "This package provides a configuration management library for programs
@ -5492,7 +5492,7 @@ template-haskell abstract syntax.")
("ghc-utf8-string" ,ghc-utf8-string) ("ghc-utf8-string" ,ghc-utf8-string)
("ghc-microlens-platform" ,ghc-microlens-platform) ("ghc-microlens-platform" ,ghc-microlens-platform)
("ghc-hunit" ,ghc-hunit))) ("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") (synopsis "Make @code{Ctags} and @code{Etags} files for Haskell programs")
(description (description
"This package provides a means of generating tag files for Emacs and "This package provides a means of generating tag files for Emacs and
@ -6991,7 +6991,7 @@ Kaseorg.")
("ghc-test-framework" ,ghc-test-framework) ("ghc-test-framework" ,ghc-test-framework)
("ghc-test-framework-hunit" ,ghc-test-framework-hunit) ("ghc-test-framework-hunit" ,ghc-test-framework-hunit)
("ghc-hunit" ,ghc-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") (synopsis "Linear algebra library for Haskell")
(description (description
"This package provides types and combinators for linear algebra on free "This package provides types and combinators for linear algebra on free
@ -8258,7 +8258,7 @@ IPv4, IPv6 and MAC addresses.")
(native-inputs (native-inputs
`(("ghc-hspec" ,ghc-hspec) `(("ghc-hspec" ,ghc-hspec)
("hspec-discover" ,hspec-discover))) ("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") (synopsis "Typeclass and set of functions for working with newtypes")
(description "The @code{Newtype} typeclass represents the packing and (description "The @code{Newtype} typeclass represents the packing and
unpacking of a newtype, and allows you to operate under that newtype with unpacking of a newtype, and allows you to operate under that newtype with
@ -9622,7 +9622,7 @@ ByteStrings in the style of other common *nix hex dump tools.")
(inputs (inputs
`(("ghc-haskell-lexer" ,ghc-haskell-lexer) `(("ghc-haskell-lexer" ,ghc-haskell-lexer)
("ghc-happy" ,ghc-happy))) ("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") (synopsis "Tools for working with derived `Show` instances")
(description (description
"This package provides a library and an executable for working with "This package provides a library and an executable for working with
@ -10565,7 +10565,7 @@ code where you can safely allocate resources.")
("ghc-tasty-hunit" ,ghc-tasty-hunit) ("ghc-tasty-hunit" ,ghc-tasty-hunit)
("ghc-tasty-hedgehog" ,ghc-tasty-hedgehog) ("ghc-tasty-hedgehog" ,ghc-tasty-hedgehog)
("ghc-hedgehog" ,ghc-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") (synopsis "Retry combinators for monadic actions that may fail")
(description "This package exposes combinators that can wrap (description "This package exposes combinators that can wrap
arbitrary monadic actions. They run the action and potentially retry arbitrary monadic actions. They run the action and potentially retry
@ -14351,7 +14351,7 @@ parts.")
(base32 (base32
"0azlzaxp2dn4l1nr7shsxah2magk1szf6fx0mv75az00qsjw6qg4")))) "0azlzaxp2dn4l1nr7shsxah2magk1szf6fx0mv75az00qsjw6qg4"))))
(build-system haskell-build-system) (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") (synopsis "XDG Base Directory library for Haskell")
(description "This package provides a library implementing the XDG Base Directory spec.") (description "This package provides a library implementing the XDG Base Directory spec.")
(license license:bsd-3))) (license license:bsd-3)))

View file

@ -9079,7 +9079,7 @@ software engineering people who are interested in Aspect-Oriented Programming
`(#:jar-name "java-javax-inject.jar" `(#:jar-name "java-javax-inject.jar"
#:jdk ,icedtea-8 #:jdk ,icedtea-8
#:tests? #f)); no tests #: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") (synopsis "JSR-330: Dependency Injection for Java")
(description "This package specifies a means for obtaining objects in such (description "This package specifies a means for obtaining objects in such
a way as to maximize reusability, testability and maintainability compared to a way as to maximize reusability, testability and maintainability compared to

View file

@ -248,5 +248,5 @@ project.")
dynamic libraries, binding functions within them, and calling those functions dynamic libraries, binding functions within them, and calling those functions
from Ruby code. Moreover, a Ruby-FFI extension works without changes on Ruby from Ruby code. Moreover, a Ruby-FFI extension works without changes on Ruby
and JRuby.") and JRuby.")
(home-page "http://wiki.github.com/ffi/ffi") (home-page "https://wiki.github.com/ffi/ffi")
(license bsd-3))) (license bsd-3)))

View file

@ -6430,7 +6430,7 @@ the MTP device as a file system.")
itself and its environment as possible. It can be used as a test 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 tool, to understand the type of environment a process runs in, and for
comparing system environments.") comparing system environments.")
(home-page "http://github.com/jamesodhunt/procenv/") (home-page "https://github.com/jamesodhunt/procenv/")
(license license:gpl3+))) (license license:gpl3+)))
(define-public libfabric (define-public libfabric

View file

@ -187,7 +187,7 @@ aiohttp. It supports SOCKS4(a) and SOCKS5.")
`(("python-pycares" ,python-pycares))) `(("python-pycares" ,python-pycares)))
(arguments (arguments
`(#:tests? #f)) ;tests require internet access `(#: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") (synopsis "Simple DNS resolver for asyncio")
(description "@code{aiodns} provides a simple way for doing (description "@code{aiodns} provides a simple way for doing
asynchronous DNS resolutions with a synchronous looking interface by asynchronous DNS resolutions with a synchronous looking interface by
@ -2368,7 +2368,7 @@ pretty printer and a tree visitor.")
("python-itsdangerous" ,python-itsdangerous) ("python-itsdangerous" ,python-itsdangerous)
("python-passlib" ,python-passlib) ("python-passlib" ,python-passlib)
("python-tox" ,python-tox))) ("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") (synopsis "Basic authentication via htpasswd files in Flask applications")
(description "This package provides Basic authentication via (description "This package provides Basic authentication via
@file{htpasswd} files and access_token authentication in Flask @file{htpasswd} files and access_token authentication in Flask
@ -3106,7 +3106,7 @@ more.")
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:tests? #f)) ;tests require internet access `(#: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}") (synopsis "Python interface for @code{c-ares}")
(description "@code{pycares} is a Python module which provides an (description "@code{pycares} is a Python module which provides an
interface to @code{c-ares}, a C library that performs DNS requests and interface to @code{c-ares}, a C library that performs DNS requests and

View file

@ -10163,7 +10163,7 @@ visual (yet text based) progress to long running operations.")
(base32 (base32
"1zvf6zs5hzrc03p9nfs4p16vhilqikycvv1yk0pxn8s07fdhvzji")))) "1zvf6zs5hzrc03p9nfs4p16vhilqikycvv1yk0pxn8s07fdhvzji"))))
(build-system python-build-system) (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") (synopsis "Text progress bar library for Python")
(description (description
"This package provides a text progress bar library for Python. This "This package provides a text progress bar library for Python. This
@ -16426,7 +16426,7 @@ files, and Makefiles.")
(invoke "py.test")))))) (invoke "py.test"))))))
(native-inputs (native-inputs
`(("python-pytest" ,python-pytest))) `(("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") (synopsis "Make anonymous functions by partial application of operators")
(description "@code{whatever} provides an easy way to make anonymous (description "@code{whatever} provides an easy way to make anonymous
functions by partial application of operators.") functions by partial application of operators.")
@ -16458,7 +16458,7 @@ functions by partial application of operators.")
(native-inputs (native-inputs
`(("python-pytest" ,python-pytest) `(("python-pytest" ,python-pytest)
("python-whatever" ,python-whatever))) ("python-whatever" ,python-whatever)))
(home-page "http://github.com/Suor/funcy") (home-page "https://github.com/Suor/funcy")
(synopsis "Functional tools") (synopsis "Functional tools")
(description "@code{funcy} is a library that provides functional tools. (description "@code{funcy} is a library that provides functional tools.
Examples are: Examples are:

View file

@ -2458,7 +2458,7 @@ Ruby Gems.")
(synopsis "Ruby module is for reading and writing zip files") (synopsis "Ruby module is for reading and writing zip files")
(description (description
"The rubyzip module provides ways to read from and create zip files.") "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))) (license license:bsd-2)))
(define-public ruby-simplecov-html (define-public ruby-simplecov-html
@ -4758,7 +4758,7 @@ file or directories are modified.")
(package (package
(name "ruby-spinach") (name "ruby-spinach")
(version "0.11.0") (version "0.11.0")
(home-page "http://github.com/codegram/spinach") (home-page "https://github.com/codegram/spinach")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (rubygems-uri "spinach" version)) (uri (rubygems-uri "spinach" version))
@ -6630,7 +6630,7 @@ It is intended be used by all Cucumber implementations to parse
(package (package
(name "ruby-gherkin-ruby") (name "ruby-gherkin-ruby")
(version "0.3.2") (version "0.3.2")
(home-page "http://github.com/codegram/gherkin-ruby") (home-page "https://github.com/codegram/gherkin-ruby")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (rubygems-uri "gherkin-ruby" version)) (uri (rubygems-uri "gherkin-ruby" version))
@ -8855,7 +8855,7 @@ integrates other mathematical standard libraries. Prior to Ruby 2.5,
(description (description
"This gem is a port of the rails 'rake stats' method so it can be made "This gem is a port of the rails 'rake stats' method so it can be made
more robust and work for non rails projects.") 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))) (license license:expat)))
(define-public ruby-rubypants (define-public ruby-rubypants
@ -9057,7 +9057,7 @@ RFC 3987, and RFC 6570 (level 4), providing support for IRIs and URI templates."
"This package extends the @code{String} class and adds a "This package extends the @code{String} class and adds a
@code{ColorizedString} with methods to set text color, background color, @code{ColorizedString} with methods to set text color, background color,
and text effects.") and text effects.")
(home-page "http://github.com/fazibear/colorize") (home-page "https://github.com/fazibear/colorize")
(license license:gpl2+))) (license license:gpl2+)))
(define-public ruby-colorator (define-public ruby-colorator
@ -10602,7 +10602,7 @@ which snapshots to consider and what files to include.")
(package (package
(name "ruby-wwtd") (name "ruby-wwtd")
(version "1.4.1") (version "1.4.1")
(home-page "http://github.com/grosser/wwtd") (home-page "https://github.com/grosser/wwtd")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference