gnu: Add ruby-rsync.
* gnu/packages/ruby.scm (ruby-rsync): New variable.
This commit is contained in:
parent
34372d3905
commit
30f0848726
|
@ -50,6 +50,7 @@
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
#:use-module (gnu packages ragel)
|
#:use-module (gnu packages ragel)
|
||||||
|
#:use-module (gnu packages rsync)
|
||||||
#:use-module (gnu packages sqlite)
|
#:use-module (gnu packages sqlite)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (gnu packages version-control)
|
#:use-module (gnu packages version-control)
|
||||||
|
@ -263,6 +264,41 @@ packaging native C and Java extensions in Ruby.")
|
||||||
(home-page "https://github.com/rake-compiler/rake-compiler")
|
(home-page "https://github.com/rake-compiler/rake-compiler")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-rsync
|
||||||
|
(package
|
||||||
|
(name "ruby-rsync")
|
||||||
|
(version "1.0.9")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "rsync" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0p8b27q1gvxilqfq2528xpwglzcm2myikkjxpqk7mwbwg9r6knxv"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:test-target "spec"
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'remove-coveralls-requirement
|
||||||
|
(lambda _
|
||||||
|
(substitute* "spec/spec_helper.rb"
|
||||||
|
(("require 'coveralls'") "")
|
||||||
|
(("Coveralls.wear!") ""))
|
||||||
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("bundler" ,bundler)
|
||||||
|
("rsync" ,rsync)
|
||||||
|
("ruby-rspec-core" ,ruby-rspec-core)
|
||||||
|
("ruby-rspec-expectations" ,ruby-rspec-expectations)
|
||||||
|
("ruby-rspec-mocks" ,ruby-rspec-mocks)))
|
||||||
|
(home-page "https://github.com/jbussdieker/ruby-rsync")
|
||||||
|
(synopsis "Ruby wrapper around rsync")
|
||||||
|
(description
|
||||||
|
"Ruby Rsync is a Ruby library that can synchronize files between remote
|
||||||
|
hosts by wrapping the @file{rsync} binary.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-i18n
|
(define-public ruby-i18n
|
||||||
(package
|
(package
|
||||||
(name "ruby-i18n")
|
(name "ruby-i18n")
|
||||||
|
|
Loading…
Reference in New Issue