Search Criteria
Package Details: ruby-compass 1.0.3-5
Git Clone URL: | https://aur.archlinux.org/ruby-compass.git (read-only, click to copy) |
---|---|
Package Base: | ruby-compass |
Description: | A Real Stylesheet Framework |
Upstream URL: | http://compass-style.org |
Keywords: | css sass |
Licenses: | |
Submitter: | shaleny |
Maintainer: | ljmf00 |
Last Packager: | buzo |
Votes: | 76 |
Popularity: | 0.000150 |
First Submitted: | 2011-02-14 16:24 |
Last Updated: | 2020-01-18 13:24 |
Required by (3)
- atraci (make)
- atraci-git (make)
- ruby-bootstrap-sass (optional)
Latest Comments
1 2 3 4 Next › Last »
KubaF commented on 2020-12-03 17:42
I had to install ruby-bundler manually. Otherwise i kept getting: ruby-compass/PKGBUILD: line 36: bundle: command not found
buzo commented on 2020-01-18 13:26
I have updated the URL, but it does not build due to long outdated dependencies. This looks like an abandoned piece of software to me.
Myrik93 commented on 2019-02-26 08:34
please, update url to https://rubygems.org/downloads/compass-${pkgver}.gem
egore911 commented on 2017-05-09 11:50
I've updated the necessary patch. It is available at https://pastebin.com/tEQNnmRz
sflor commented on 2017-01-11 19:08
Needs rebuild, could use PKG bump.
mtorromeo commented on 2016-01-07 10:34
@zebulon: you have to rebuild bundler
zebulon commented on 2016-01-07 08:06
Despite I have ruby-bundler installed, I get this error during package():
/usr/lib/ruby/2.3.0/rubygems/dependency.rb:319:in `to_specs': Could not find 'bundler' (>= 0) among 12 total gem(s) (Gem::LoadError)
Checked in 'GEM_PATH=/home/eric/.gem/ruby/2.3.0:/usr/lib/ruby/gems/2.3.0', execute `gem env` for more information
from /usr/lib/ruby/2.3.0/rubygems/dependency.rb:328:in `to_spec'
from /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_gem.rb:65:in `gem'
from /usr/bin/bundle:22:in `<main>'
egore911 commented on 2015-10-13 11:17
Even after the update (https://aur.archlinux.org/cgit/aur.git/commit/?h=ruby-compass&id=6515cbf599a3f14fbc335698dad35064f04c7cd6) which bumps dependencies, the package still lacks breakpoint and susy as dependencies.
egore911 commented on 2015-09-18 08:53
I'm constantly getting:
LoadError on line ["179"] of /usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/lib/compass/configuration/data.rb: cannot load such file -- breakpoint
It seems to be by a broken(?) sass dependency as mentioned here: http://stackoverflow.com/questions/18373644/trouble-running-compass-on-osx-loaderror-on-line-51
I fixed it by patching Gemfile and calling "bundler install" once:
diff --git a/Gemfile b/Gemfile
index 697711e..f18d7b5 100644
--- a/Gemfile
+++ b/Gemfile
@@ -4,3 +4,5 @@ gem 'compass-core', "~> 1.0.2"
gem 'compass-import-once', "~> 1.0.5"
gem 'rb-fsevent', ">= 0.9.3"
gem 'rb-inotify', ">= 0.9"
+gem 'breakpoint', ">= 2.5.0"
+gem 'susy', ">= 2.2.6"
diff --git a/Gemfile.lock b/Gemfile.lock
index 60af975..66562d1 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,6 +1,9 @@
GEM
remote: https://rubygems.org/
specs:
+ breakpoint (2.5.0)
+ sass (~> 3.3)
+ sassy-maps (< 1.0.0)
chunky_png (1.3.4)
compass-core (1.0.3)
multi_json (~> 1.0)
@@ -13,13 +16,22 @@ GEM
rb-inotify (0.9.5)
ffi (>= 0.5.0)
sass (3.4.13)
+ sassy-maps (0.4.0)
+ sass (~> 3.3)
+ susy (2.2.6)
+ sass (>= 3.3.0, < 3.5)
PLATFORMS
ruby
DEPENDENCIES
+ breakpoint (>= 2.5.0)
chunky_png (~> 1.2)
compass-core (~> 1.0.2)
compass-import-once (~> 1.0.5)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
+ susy (>= 2.2.6)
egore911 commented on 2015-09-18 08:22
I'm constantly getting:
LoadError on line ["179"] of /usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/lib/compass/configuration/data.rb: cannot load such file -- breakpoint
It seems to be by a broken(?) sass dependency as mentioned here: http://stackoverflow.com/questions/18373644/trouble-running-compass-on-osx-loaderror-on-line-51
Any chance to fix this in the package? Or is it an upstream bug?
For me this can be fixes by extending Gemfile:
gem 'breakpoint', ">=2.5.0"
gem 'sassy-maps', ">=0.4.0"
gem 'susy', ">=2.2.6"
and Gemfile.lock:
breakpoint (2.5.0)
sassy-maps (0.4.0)
susy (2.2.6)