diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 12:02:11 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-18 22:16:32 +0000 |
commit | 6fe15aa4ed5a71c39b9c27eb5bb6ac40a945f77a (patch) | |
tree | 2addd5949019896a7e0e0b3c42cd574a28fdb011 | |
parent | f3e0e981fca3d4bb3e947d99fa0e85d4761a722c (diff) | |
download | guix-6fe15aa4ed5a71c39b9c27eb5bb6ac40a945f77a.tar guix-6fe15aa4ed5a71c39b9c27eb5bb6ac40a945f77a.tar.gz |
gnu: Add ruby-listen-3.0.
-rw-r--r-- | gnu/packages/patches/ruby-listen-3.0.8-patch-gemspec.patch | 16 | ||||
-rw-r--r-- | gnu/packages/ruby.scm | 18 |
2 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/patches/ruby-listen-3.0.8-patch-gemspec.patch b/gnu/packages/patches/ruby-listen-3.0.8-patch-gemspec.patch new file mode 100644 index 0000000000..e870c060a5 --- /dev/null +++ b/gnu/packages/patches/ruby-listen-3.0.8-patch-gemspec.patch @@ -0,0 +1,16 @@ +diff --git a/listen.gemspec b/listen.gemspec +index ee1316e..067dca3 100644 +--- a/listen.gemspec ++++ b/listen.gemspec +@@ -14,9 +14,8 @@ Gem::Specification.new do |s| + s.description = 'The Listen gem listens to file modifications and '\ + 'notifies you about the changes. Works everywhere!' + +- s.files = `git ls-files -z`.split("\x0").select do |f| +- /^(?:bin|lib)\// =~ f +- end + %w(CHANGELOG.md CONTRIBUTING.md LICENSE.txt README.md) ++ s.files = `find bin lib -type f |sort`.split("\n") + ++ %w(CHANGELOG.md CONTRIBUTING.md LICENSE.txt README.md) + + s.test_files = [] + s.executable = 'listen' diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index c1deedbffe..55c32a3c56 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7567,3 +7567,21 @@ https://github.com/flavorjones/loofah-activerecord).") "The Listen gem listens to file modifications and notifies you about the changes. Works everywhere!") (home-page "https://github.com/guard/listen") (license license:expat))) + +(define-public ruby-listen-3.0 + (package + (inherit ruby-listen) + (name "ruby-listen") + (version "3.0.8") + (source + (origin + (method url-fetch) + ;; The gem does not include a Rakefile, so we fetch the tarball from + ;; Github. + (uri (string-append "https://github.com/guard/listen/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "06cy038xlbi8hcr9nv0c9wvafi7s3d05sdc7ydkv8qndi9bs68l3")) + (patches (search-patches "ruby-listen-3.0.8-patch-gemspec.patch")))))) |