Hello community, here is the log from the commit of package rubygem-sassc for openSUSE:Factory checked in at 2019-11-13 13:25:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-sassc (Old) and /work/SRC/openSUSE:Factory/.rubygem-sassc.new.2990 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-sassc" Wed Nov 13 13:25:59 2019 rev:5 rq:747730 version:2.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-sassc/rubygem-sassc.changes 2019-09-11 10:33:36.631327286 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-sassc.new.2990/rubygem-sassc.changes 2019-11-13 13:25:59.623551814 +0100 @@ -1,0 +2,6 @@ +Tue Nov 12 14:35:11 UTC 2019 - Manuel Schnitzer <[email protected]> + +- updated to version 2.2.1 + see installed CHANGELOG.md + +------------------------------------------------------------------- Old: ---- sassc-2.2.0.gem New: ---- sassc-2.2.1.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-sassc.spec ++++++ --- /var/tmp/diff_new_pack.dySYm6/_old 2019-11-13 13:26:00.783553021 +0100 +++ /var/tmp/diff_new_pack.dySYm6/_new 2019-11-13 13:26:00.787553026 +0100 @@ -24,7 +24,7 @@ # Name: rubygem-sassc -Version: 2.2.0 +Version: 2.2.1 Release: 0 %define mod_name sassc %define mod_full_name %{mod_name}-%{version} ++++++ sassc-2.2.0.gem -> sassc-2.2.1.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 2019-08-27 15:56:05.000000000 +0200 +++ new/CHANGELOG.md 2019-09-18 18:23:14.000000000 +0200 @@ -1,3 +1,5 @@ +- **2.2.1** + - [Fix LoadError on some non-rvm environments](https://github.com/sass/sassc-ruby/pull/156) - **2.2.0** - [Do not build precompiled gems for Linux](https://github.com/sass/sassc-ruby/pull/145) - **2.1.0** Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sassc/native.rb new/lib/sassc/native.rb --- old/lib/sassc/native.rb 2019-08-27 15:56:05.000000000 +0200 +++ new/lib/sassc/native.rb 2019-09-18 18:23:14.000000000 +0200 @@ -7,7 +7,11 @@ extend FFI::Library dl_ext = (RbConfig::CONFIG['host_os'] =~ /darwin/ ? 'bundle' : 'so') - ffi_lib File.expand_path("libsass.#{dl_ext}", __dir__) + begin + ffi_lib File.expand_path("libsass.#{dl_ext}", __dir__) + rescue LoadError # Some non-rvm environments don't copy a shared object over to lib/sassc + ffi_lib File.expand_path("libsass.#{dl_ext}", "#{__dir__}/../../ext") + end require_relative "native/sass_value" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sassc/version.rb new/lib/sassc/version.rb --- old/lib/sassc/version.rb 2019-08-27 15:56:05.000000000 +0200 +++ new/lib/sassc/version.rb 2019-09-18 18:23:14.000000000 +0200 @@ -1,5 +1,5 @@ # frozen_string_literal: true module SassC - VERSION = "2.2.0" + VERSION = "2.2.1" end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2019-08-27 15:56:05.000000000 +0200 +++ new/metadata 2019-09-18 18:23:14.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: sassc version: !ruby/object:Gem::Version - version: 2.2.0 + version: 2.2.1 platform: ruby authors: - Ryan Boland autorequire: bindir: bin cert_chain: [] -date: 2019-08-27 00:00:00.000000000 Z +date: 2019-09-18 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: minitest
