diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-07-17 23:59:18 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-09-01 13:18:54 -0400 |
commit | 165b1f2b75de1bb3704da1caf6829c6530e6d260 (patch) | |
tree | ea1278867f99b7a0ef89bee81e7e2e489e0db023 | |
parent | 078d1502cd0cb46ed644abb154035e5af5764aab (diff) | |
download | guix-165b1f2b75de1bb3704da1caf6829c6530e6d260.tar.gz |
gnu: ruby-chunky-png: Remove obsolete 'replace-git-ls-files phase.
This phase is made unnecessary by commit a7b1cc333e, which generalizes the fix in the Ruby build system. * gnu/packages/ruby.scm (ruby-chunky-png)[phases]{replace-git-ls-files}: Remove.
-rw-r--r-- | gnu/packages/ruby.scm | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index bb1c84c5cb..a1943d99ed 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1577,14 +1577,6 @@ to save time in the following ways: (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) |