Your message dated Sun, 24 Jul 2011 15:03:27 +0000
with message-id <e1ql0dh-0006k1...@franck.debian.org>
and subject line Bug#635258: fixed in ruby-sass 3.1.4-6
has caused the Debian Bug report #635258,
regarding ruby-sass: Fix the path of the library in the executables files under 
/bin
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
635258: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635258
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ruby-sass
Version: 3.1.4-5.1
Severity: grave
Tags: patch
Justification: renders package unusable

Hi,

with the current 3.1.4-5 package I get errors like the following with any of 
the distributed 
executables in /bin:

/usr/bin/sass-convert:3:in `require': no such file to load -- 
/usr/bin/../lib/sass (LoadError)
        from /usr/bin/sass-convert:3

The attached patch against the package at 
git://anonscm.debian.org/collab-maint/ruby-sass.git
 fixes them.

Thanks,
   Antonio Ospite
   http://ao2.it

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (900, 'unstable'), (600, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-ao2 (SMP w/1 CPU core)
Locale: LANG=it_IT.utf8, LC_CTYPE=it_IT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages ruby-sass depends on:
ii  ruby                         4.8         Transitional package for ruby1.8
ii  ruby1.8 [ruby-interpreter]   1.8.7.352-1 Interpreter of object-oriented scr

ruby-sass recommends no packages.

Versions of packages ruby-sass suggests:
pn  ruby-compass                  <none>     (no description available)

-- no debconf information
>From 42fdea4c16cdee71e2983537c9ba6324b2b66b0a Mon Sep 17 00:00:00 2001
From: Antonio Ospite <osp...@studenti.unina.it>
Date: Sun, 24 Jul 2011 14:10:33 +0200
Subject: [PATCH] Fix the path of the library in the executables files under /bin
X-Face: z*RaLf`X<@C75u6Ig9}{oW$H;1_\2t5)({*|jhM<pyWR#k60!#=#>/Vb;]yA5<GWI5`6u&+
 ;6b'@y|8w"wB;4/e!7wYYrcqdJFY,~%Gk_4]cq$Ei/7<j&N3ah(m`ku?pX.&+~:_/wC~dwn^)MizBG
 !pE^+iDQQ1yC6^,)YDKkxDd!T>\I~93>J<_`<4)A{':UrE

This fixes message like:

/usr/bin/sass-convert:3:in `require': no such file to load -- 
/usr/bin/../lib/sass (LoadError)
        from /usr/bin/sass-convert:3

Signed-off-by: Antonio Ospite <osp...@studenti.unina.it>
---
 debian/changelog                           |    7 ++++
 debian/patches/1003-fix-library-path.patch |   42 ++++++++++++++++++++++++++++
 debian/patches/series                      |    1 +
 3 files changed, 50 insertions(+), 0 deletions(-)
 create mode 100644 debian/patches/1003-fix-library-path.patch

diff --git a/debian/changelog b/debian/changelog
index cd88e8e..1c2d5a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+ruby-sass (3.1.4-5.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix the path of the library in the executables files under /bin
+
+ -- Antonio Ospite <osp...@studenti.unina.it>  Sun, 24 Jul 2011 13:27:57 +0200
+
 ruby-sass (3.1.4-5) unstable; urgency=low
 
   * Fix VERSION resolving.
diff --git a/debian/patches/1003-fix-library-path.patch 
b/debian/patches/1003-fix-library-path.patch
new file mode 100644
index 0000000..d95dcec
--- /dev/null
+++ b/debian/patches/1003-fix-library-path.patch
@@ -0,0 +1,42 @@
+Description: Fix for "no such file to load -- /usr/bin/../lib/sass (LoadError)"
+Author: Antonio Ospite <osp...@studenti.unina.it>
+Last-Update: 2011-07-24
+
+diff --git a/bin/sass b/bin/sass
+index 2b01e92..126c627 100755
+--- a/bin/sass
++++ b/bin/sass
+@@ -1,7 +1,7 @@
+ #!/usr/bin/env ruby
+ # The command line Sass parser.
+ 
+-require File.dirname(__FILE__) + '/../lib/sass'
++require '/usr/lib/ruby/vendor_ruby/sass'
+ require 'sass/exec'
+ 
+ opts = Sass::Exec::Sass.new(ARGV)
+diff --git a/bin/sass-convert b/bin/sass-convert
+index 97ee024..8181a26 100755
+--- a/bin/sass-convert
++++ b/bin/sass-convert
+@@ -1,6 +1,6 @@
+ #!/usr/bin/env ruby
+ 
+-require File.dirname(__FILE__) + '/../lib/sass'
++require '/usr/lib/ruby/vendor_ruby/sass'
+ require 'sass/exec'
+ 
+ opts = Sass::Exec::SassConvert.new(ARGV)
+diff --git a/bin/scss b/bin/scss
+index 0791cfb..7bd4360 100755
+--- a/bin/scss
++++ b/bin/scss
+@@ -1,7 +1,7 @@
+ #!/usr/bin/env ruby
+ # The command line Sass parser.
+ 
+-require File.dirname(__FILE__) + '/../lib/sass'
++require '/usr/lib/ruby/vendor_ruby/sass'
+ require 'sass/exec'
+ 
+ opts = Sass::Exec::Scss.new(ARGV)
diff --git a/debian/patches/series b/debian/patches/series
index 0569854..23edfe1 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 1001-avoid-rubygems.patch
 1002-fix-VERSION-path.patch
+1003-fix-library-path.patch
-- 
1.7.5.4


--- End Message ---
--- Begin Message ---
Source: ruby-sass
Source-Version: 3.1.4-6

We believe that the bug you reported is fixed in the latest version of
ruby-sass, which is due to be installed in the Debian FTP archive:

ruby-sass_3.1.4-6.debian.tar.gz
  to main/r/ruby-sass/ruby-sass_3.1.4-6.debian.tar.gz
ruby-sass_3.1.4-6.dsc
  to main/r/ruby-sass/ruby-sass_3.1.4-6.dsc
ruby-sass_3.1.4-6_all.deb
  to main/r/ruby-sass/ruby-sass_3.1.4-6_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 635...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jonas Smedegaard <d...@jones.dk> (supplier of updated ruby-sass package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sun, 24 Jul 2011 15:35:09 +0200
Source: ruby-sass
Binary: ruby-sass
Architecture: source all
Version: 3.1.4-6
Distribution: unstable
Urgency: low
Maintainer: Jonas Smedegaard <d...@jones.dk>
Changed-By: Jonas Smedegaard <d...@jones.dk>
Description: 
 ruby-sass  - powerful but elegant CSS compiler that makes CSS fun again -- lib
Closes: 635258
Changes: 
 ruby-sass (3.1.4-6) unstable; urgency=low
 .
   * Add Gunnar Wolf as uploader. Yeah!
   * Fix linkage to system-shared Sass library.
     Closes: bug#635258. Thanks to Antonio Ospite.
Checksums-Sha1: 
 9edc575d69f5b7dd749537abcb0d0dd246ccfde8 1905 ruby-sass_3.1.4-6.dsc
 58c399fd36c6c6bd7c43e494c282cdcf2adb2a75 5820 ruby-sass_3.1.4-6.debian.tar.gz
 20ff70532d302c6ea5e3547ca15fb90f8cf1ba07 127578 ruby-sass_3.1.4-6_all.deb
Checksums-Sha256: 
 c15d14400f03150a900765fd81a09c3036b0f548cc3004893e1f76e82325992d 1905 
ruby-sass_3.1.4-6.dsc
 5589b9e744ff7a331afa3f4198e96578428603904b6d711375c0c0927f03ac3b 5820 
ruby-sass_3.1.4-6.debian.tar.gz
 8b05df991066f1e4f7e85f02b3f95be066f02000e28ca9f3dbda887123dbdb6d 127578 
ruby-sass_3.1.4-6_all.deb
Files: 
 dce333796566ca7b934908c6f0baaa37 1905 ruby optional ruby-sass_3.1.4-6.dsc
 a0ecc2ef2f0cf962c04a02af50478fed 5820 ruby optional 
ruby-sass_3.1.4-6.debian.tar.gz
 99435854f9d6153b62aa893ba30d0c63 127578 ruby optional ruby-sass_3.1.4-6_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCgAGBQJOLDDUAAoJECx8MUbBoAEhugYP/ApWsuUkPrbFLBHi+K+ITK/B
nNKsjjYc3UrJkwbzn8NAuIL+x7tJe92OEeGIRpEXvdSmorYvGdc6b+Hy8nQgEF7M
mKcQKesThMgyJqdBHVO2yKIx4K+ipECjd22wD13xfhxw7GsYfGwYOqG2CgTI8OWV
274lfS64ToqY5dNFkIKufQWvUj+pzesrtL7VytTuEnzZmax1CJLBf9nXrTY2WWOi
JqU6I6GGY0feli2WKsfMfWG3ZC01psxPgy6KNoaLq4YTn23HngsPLqOYxlHh83Jq
cBShs5f5rWVmcKav3QfJSr2sv7owHWfcX/PMDuCs/kjDxaL5SrodJtpcbgQ245Af
mrcRQLgnrUANd1McxlUyH57vN/S0H6lKzEsnPtkl3/l6tlw5SEsRIFIpXGiAz3/G
VzM+1hfvHskucQEIenHN7j0uGLJLOdeO6zuyVo+1vRJGZM8uMc9cjp/WrkSKPmu0
YPNM0MyqYokKz82UA7NBCJjjYFQUTxtuvN3wnDrSFNE5g7Hk5zlX/2gXfGvrL/DQ
PjZtAk1v9OHtD40TRVT1ve68v64tUeLtm4V7QOFLa7b6xtw/F7ZmWrdJlvErxbTg
zWdCav64h8SmWqO2/kmDfz1We2Ac8ORFunUVcew0kWLC8KXjLzes13LmMyxfpJby
HBen5erldQGkDci1L6OB
=P5rn
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to