Advertisement
Guest User

Arch Linux: ruby-compass build patch

a guest
May 9th, 2017
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 2.55 KB | None | 0 0
  1. From d82f8c60f81b29c8aadb925cb9c59caffc2f3c31 Mon Sep 17 00:00:00 2001
  2. From: Christoph Brill <egore911@gmail.com>
  3. Date: Tue, 9 May 2017 13:46:27 +0200
  4. Subject: [PATCH] Add breakpoint and susy as Gemfile dependencies
  5.  
  6. Otherwise the following error occurs:
  7.  
  8. LoadError on line ["179"] of /usr/lib/ruby/gems/2.4.0/gems/compass-1.0.3/vendor/bundle/ruby/2.4.0/gems/compass-core-1.0.3/lib/compass/configuration/data.rb: cannot load such file -- susy
  9. ---
  10. Gemfile      |  2 ++
  11.  Gemfile.lock | 23 ++++++++++++++++-------
  12.  PKGBUILD     |  4 ++--
  13.  3 files changed, 20 insertions(+), 9 deletions(-)
  14.  
  15. diff --git a/Gemfile b/Gemfile
  16. index 697711e..f18d7b5 100644
  17. --- a/Gemfile
  18. +++ b/Gemfile
  19. @@ -4,3 +4,5 @@ gem 'compass-core', "~> 1.0.2"
  20.  gem 'compass-import-once', "~> 1.0.5"
  21.  gem 'rb-fsevent', ">= 0.9.3"
  22.  gem 'rb-inotify', ">= 0.9"
  23. +gem 'breakpoint', ">= 2.5.0"
  24. +gem 'susy', ">= 2.2.6"
  25. diff --git a/Gemfile.lock b/Gemfile.lock
  26. index 1f2237c..ecb998d 100644
  27. --- a/Gemfile.lock
  28. +++ b/Gemfile.lock
  29. @@ -1,28 +1,37 @@
  30.  GEM
  31.    remote: https://rubygems.org/
  32.    specs:
  33. -    chunky_png (1.3.4)
  34. +    breakpoint (2.7.1)
  35. +      sass (~> 3.3)
  36. +      sassy-maps (< 1.0.0)
  37. +    chunky_png (1.3.8)
  38.      compass-core (1.0.3)
  39.        multi_json (~> 1.0)
  40.        sass (>= 3.3.0, < 3.5)
  41.      compass-import-once (1.0.5)
  42.        sass (>= 3.2, < 3.5)
  43. -    ffi (1.9.10)
  44. -    multi_json (1.11.2)
  45. -    rb-fsevent (0.9.6)
  46. -    rb-inotify (0.9.5)
  47. +    ffi (1.9.18)
  48. +    multi_json (1.12.1)
  49. +    rb-fsevent (0.9.8)
  50. +    rb-inotify (0.9.8)
  51.        ffi (>= 0.5.0)
  52. -    sass (3.4.19)
  53. +    sass (3.4.23)
  54. +    sassy-maps (0.4.0)
  55. +      sass (~> 3.3)
  56. +    susy (2.2.12)
  57. +      sass (>= 3.3.0, < 3.5)
  58.  
  59.  PLATFORMS
  60.    ruby
  61.  
  62.  DEPENDENCIES
  63. +  breakpoint (>= 2.5.0)
  64.    chunky_png (~> 1.2)
  65.    compass-core (~> 1.0.2)
  66.    compass-import-once (~> 1.0.5)
  67.    rb-fsevent (>= 0.9.3)
  68.    rb-inotify (>= 0.9)
  69. +  susy (>= 2.2.6)
  70.  
  71.  BUNDLED WITH
  72. -   1.10.6
  73. +   1.14.6
  74. diff --git a/PKGBUILD b/PKGBUILD
  75. index 35a14d2..1a23648 100644
  76. --- a/PKGBUILD
  77. +++ b/PKGBUILD
  78. @@ -36,6 +36,6 @@ package() {
  79.  }
  80.  
  81.  sha256sums=('4c7884dc5349d59011fd6c5736a0404008d5609235037741feac9c8ff840d151'
  82. -            '2cd0895f4e54b14edd9eb599220900e6cf43a1f57754bfbd790b9a2ec2aab6b0'
  83. -            'f63fe96ada4ab8121f56c31c926fad0abfda0f13862306e84a73fd4090e6b8d0'
  84. +            '752e400aa7ee7acef419d7f41134a05d9ea3de99eff065a61cb1fa0b34a65ad7'
  85. +            '1bf83163d7a7394c49f030065cdc98fcba1d707716854fc2d6e1a17eba916a3d'
  86.              'fbee7344a019d115caddf00667e9473a4e82f2999bdff9c04ccc4aa31b979d72')
  87. --
  88. 2.12.2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement