debian/0000755000000000000000000000000012224601175007166 5ustar debian/patches/0000755000000000000000000000000012221600141010602 5ustar debian/patches/1001-avoid-rubygems.patch0000644000000000000000000000125612221600141015143 0ustar Description: Avoid rubygems Author: Jonas Smedegaard Last-Update: 2011-07-03 --- a/lib/sass/exec.rb +++ b/lib/sass/exec.rb @@ -359,13 +359,9 @@ begin require 'compass' rescue LoadError - require 'rubygems' - begin - require 'compass' - rescue LoadError - puts "ERROR: Cannot load compass." - exit 1 - end + puts "Unable to load Compass. Please install it e.g. with the following command:" + puts " aptitude install ruby-compass" + exit 1 end Compass.add_project_configuration Compass.configuration.project_path ||= Dir.pwd debian/patches/1003-fix-library-path.patch0000644000000000000000000000211212112420734015371 0ustar Description: Fix linkage to system-shared Sass library Author: Antonio Ospite Last-Update: 2011-07-24 --- a/bin/sass +++ b/bin/sass @@ -1,8 +1,7 @@ #!/usr/bin/env ruby # The command line Sass parser. -THIS_FILE = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__ -require File.dirname(THIS_FILE) + '/../lib/sass' +require '/usr/lib/ruby/vendor_ruby/sass' require 'sass/exec' opts = Sass::Exec::Sass.new(ARGV) --- a/bin/sass-convert +++ b/bin/sass-convert @@ -1,7 +1,6 @@ #!/usr/bin/env ruby -THIS_FILE = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__ -require File.dirname(THIS_FILE) + '/../lib/sass' +require '/usr/lib/ruby/vendor_ruby/sass' require 'sass/exec' opts = Sass::Exec::SassConvert.new(ARGV) --- a/bin/scss +++ b/bin/scss @@ -1,8 +1,7 @@ #!/usr/bin/env ruby # The command line Sass parser. -THIS_FILE = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__ -require File.dirname(THIS_FILE) + '/../lib/sass' +require '/usr/lib/ruby/vendor_ruby/sass' require 'sass/exec' opts = Sass::Exec::Scss.new(ARGV) debian/patches/1002-fix-VERSION-path.patch0000644000000000000000000000131112110153621015045 0ustar Description: Use correct path to VERSION Author: Jonas Smedegaard Last-Update: 2011-07-04 --- a/lib/sass/version.rb +++ b/lib/sass/version.rb @@ -49,10 +49,9 @@ # @return [{Symbol => String/Fixnum}] The version hash def version return @@version if defined?(@@version) - - numbers = File.read(scope('VERSION')).strip.split('.'). + numbers = File.read('/usr/lib/ruby/vendor_ruby/sass/VERSION').strip.split('.'). map {|n| n =~ /^[0-9]+$/ ? n.to_i : n} - name = File.read(scope('VERSION_NAME')).strip + name = File.read('/usr/lib/ruby/vendor_ruby/sass/VERSION_NAME').strip @@version = { :major => numbers[0], :minor => numbers[1], debian/patches/series0000644000000000000000000000012212110153621012015 0ustar 1001-avoid-rubygems.patch 1002-fix-VERSION-path.patch 1003-fix-library-path.patch debian/control0000644000000000000000000000156612224600733010600 0ustar Source: ruby-sass Section: web Priority: optional Maintainer: Jonas Smedegaard Uploaders: Gunnar Wolf Build-Depends: cdbs, devscripts, debhelper, dh-buildinfo, gem2deb (>= 0.2.5~) Standards-Version: 3.9.4 Homepage: http://sass-lang.com/ Vcs-Git: git://anonscm.debian.org/git/collab-maint/ruby-sass Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/ruby-sass.git XS-Ruby-Versions: all Package: ruby-sass Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${misc:Depends}, ${cdbs:Depends} Suggests: ${cdbs:Suggests} Description: powerful but elegant CSS compiler that makes CSS fun again Sass makes CSS fun again. Sass is an extension of CSS3, adding nested rules, variables, mixins, selector inheritance, and more. . It's translated to well-formatted, standard CSS using the command line tool or a web-framework plugin. debian/source/0000755000000000000000000000000012110153621010456 5ustar debian/source/format0000644000000000000000000000001412110153621011664 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000002607612224601175011053 0ustar ruby-sass (3.2.12-1) unstable; urgency=low [ upstream ] * New release. + Add a couple missing require, fixing some load errors, especially when using the command-line interface. + Tune up some heuristics for eliminating redundant generated selectors. This will prevent some selector elimination in cases where multi-layered @extend is being used and where it seems intuitively like selectors shouldn't be eliminated. -- Jonas Smedegaard Mon, 07 Oct 2013 20:49:17 +0200 ruby-sass (3.2.11-1) unstable; urgency=low [ upstream ] * New release. + Fix @extend semantics with respect to pseudo-elements. They are no longer treated identically to pseudo-classes. + A more understandable error is now provided when the -E option is passed to the Sass command line in ruby 1.8. + Fix a bug in the output of lists containing unary plus or minus operations during sass <=> scss conversion. + Avoid the IE7 content: counter bug with content: counters as well. + Fix some thread-safety issues. [ Jonas Smedegaard ] * Unfuzz patch 1001. -- Jonas Smedegaard Sun, 29 Sep 2013 10:30:58 +0200 ruby-sass (3.2.10-1) unstable; urgency=low [ upstream ] * New release. + Use the Sass logger infrastructure for @debug directives. + When printing a Sass error into a CSS comment, escape */ so the comment doesn't end prematurely. + Preserve the ! in /*! ... */ style comments. + Fix a bug where selectors were being incorrectly trimmed when using @extend. + Fix a bug where sass --unix-newlines and sass-convert --in-place are not working on Windows. [ Jonas Smedegaard ] * Unfuzz patches. * Extend copyright coverage for upstream authors to include recent years. -- Jonas Smedegaard Thu, 01 Aug 2013 11:04:45 +0200 ruby-sass (3.2.9-1) unstable; urgency=low [ upstream ] * New release. + Fix a bug where @extend's would occasionally cause a selector to be generated with the incorrect specificity. + Avoid loading listen v1.0, even if it's installed as a Gem. + Update the bundled version of listen to 0.7.3. + Automatically avoid the IE7 "content: counter" bug. -- Jonas Smedegaard Mon, 13 May 2013 00:47:19 +0200 ruby-sass (3.2.8-1) unstable; urgency=low [ upstream ] * New release. + Fix some edge cases where redundant selectors were emitted when using @extend. + Fix a bug where comma-separated lists with interpolation could lose elements. + Fix a bug in sass-convert where lists being passed as arguments to functions or mixins would lose their surrounding parentheses. + Fix a bug in sass-convert where null wasn't being converted correctly. + Fix a bug where multiple spaces in a string literal would sometimes be folded together. + sass and sass-convert won't create an empty file before writing to it. This fixes a flash of unstyled content when using LiveReload and similar tools. + Fix a case where a corrupted cache could produce fatal errors on some versions of Ruby. + Fix a case where a mixin loop error would be incorrectly reported when using @content. [ Jonas Smedegaard ] * Add README.source emphasizing control.in file as *not* a show-stopper for contributions, referring to wiki page for details. * Stop track md5sum of upstream tarball. * Use anonscm.debian.org URL for Vcs-Git. * Bump packaging license to GPL-3+, and extend coverage to include recent years. * Drop obsolete breaks/replaces against libhaml-ruby. -- Jonas Smedegaard Mon, 06 May 2013 18:48:58 +0200 ruby-sass (3.2.7-1) experimental; urgency=low [ upstream ] * New release. + The index and zip functions now work like all other list functions and treat individual values as single-element lists. + Avoid stack overflow errors caused by very long function or mixin argument lists. + Emit relative paths when using the --line-comments flag of the sass executable. + Fix a case where very long numbers would cause the SCSS parser to take exponential time. [ Jonas Smedegaard ] * Unfuzz patches. -- Jonas Smedegaard Sat, 09 Mar 2013 23:31:28 +0100 ruby-sass (3.2.6-1) experimental; urgency=low [ upstream ] * New release. + Support for Rubinius 2.0.0.rc1. + Support for JRuby 1.7.2. + Support for bubbling `@supports` queries in the indented syntax. + Fix an incorrect warning when using `@extend` from within nested `@media` queries. [ Jonas Smedegaard ] * Update patch 1003. -- Jonas Smedegaard Sun, 24 Feb 2013 15:24:07 +0100 ruby-sass (3.2.5-1) experimental; urgency=low [ upstream ] * New release. + Fix a bug where bogus `@extend` warnings were being generated. + Fix an `@import` bug on Windows. + Ruby 2.0.0-preview compatibility. + Fix incorrect line numbering when using DOS line endings with the indented syntax. [ Jonas Smedegaard ] * Have git-import-orig suppress .gitignore files. * Bump standards-version to 3.9.4. -- Jonas Smedegaard Sun, 17 Feb 2013 14:17:02 +0100 ruby-sass (3.2.4-1) experimental; urgency=low [ upstream ] * New upstream release. + Fix imports from `.jar` files in JRuby. + Allow comments within `@import` statements in SCSS. + Fix a parsing performance bug where long decimals would occasionally take many minutes to parse. -- Jonas Smedegaard Tue, 25 Dec 2012 19:11:47 +0100 ruby-sass (3.2.3-1) experimental; urgency=low [ upstream ] * New upstream release. + sass --watch no longer crashs when a file in a watched directory is deleted. + Allow @extend within bubbling nodes such as @media. + Fix various JRuby incompatibilities and test failures. + Work around a performance bug that arises from using @extend with deeply-nested selectors. [ Jonas Smedegaard ] * Update watch and rules files to use new github.com URL. -- Jonas Smedegaard Thu, 29 Nov 2012 03:00:52 +0100 ruby-sass (3.2.2-1) experimental; urgency=low * New upstream release. + Add a --poll option to force sass --watch to use the polling backend to Listen. + Fix some error reporting bugs related to @import. + Treat protocol-relative URLs in @import's as static URLs, just like http and https URLs. + Improve the error message for misplaced simple selectors. + Fix an option-handling bug that was causing errors with the Compass URL helpers. + Fix a performance issue with @import that only appears when ActiveSupport is loaded. + Fix flushing of actions to stdout. + Fix the documentation for the max() function. + Fix a @media parsing bug. [ Jonas Smedegaard ] * Tidy rules file. * Build-depend on devscripts to always do copyright check. * Bump debhelper compatibility level to 8. * Update copyright file: + Fix use comment pseudo-section to obey silly restrictions of copyright format 1.0. * Refresh patch 1001. * Add news entry about deprecating attempts to multi-file @import. -- Jonas Smedegaard Sun, 04 Nov 2012 16:14:49 +0100 ruby-sass (3.2.1-1) experimental; urgency=low * New upstream release. * Refresh patch 1002. * Update package relations: + Relax to build-depend unversioned on cdbs: Needed version satisfied in stable, and oldstable no longer supported. -- Jonas Smedegaard Fri, 17 Aug 2012 04:44:43 +0200 ruby-sass (3.1.19-3) unstable; urgency=low * Directly use github.com (not githubredir.debian.net). -- Jonas Smedegaard Tue, 26 Jun 2012 21:01:46 +0200 ruby-sass (3.1.19-2) unstable; urgency=low * Use packaging section web (not ruby) and tidy short description: Sass is more a web development tool than a ruby library. ...Really, this time. -- Jonas Smedegaard Mon, 28 May 2012 12:08:37 +0200 ruby-sass (3.1.19-1) unstable; urgency=low * New upstream release. + Fix an 'uninitialized constant Sass::Exec::Sass::Util' error when using the command-line tool. + Allow '@extend' within directives such as '@media' as long as it only extends selectors that are within the same directive. * Use packaging section web (not ruby) and tidy short description: Sass is more a web development tool than a ruby library. -- Jonas Smedegaard Sat, 26 May 2012 12:38:01 +0200 ruby-sass (3.1.18-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Sun, 13 May 2012 14:15:04 +0200 ruby-sass (3.1.17-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Sun, 06 May 2012 00:36:46 +0200 ruby-sass (3.1.16-1) unstable; urgency=low * New upstream release. * Update copyright file: + Bump format to 1.0. + Fix double-indent in Copyright fields as per Policy §5.6.13. * Bump standards-version to 3.9.3. -- Jonas Smedegaard Tue, 24 Apr 2012 13:04:29 -0400 ruby-sass (3.1.15-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Fri, 10 Feb 2012 20:26:02 +0100 ruby-sass (3.1.14-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Tue, 07 Feb 2012 13:28:13 +0100 ruby-sass (3.1.12-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Tue, 20 Dec 2011 20:00:46 +0700 ruby-sass (3.1.11-1) unstable; urgency=low * New upstream release. * Unfuzz patch 1001. * Drop dpkg local-options hints from packaging source: now defaults. * Update package relations: + Relax build-dependency on cdbs (needlessly tight). + Relax build-depend unversioned on debhelper (needed version satisfied even in oldstable). -- Jonas Smedegaard Wed, 30 Nov 2011 15:04:23 +0700 ruby-sass (3.1.7-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Mon, 08 Aug 2011 09:44:21 +0200 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. -- Jonas Smedegaard Sun, 24 Jul 2011 15:35:09 +0200 ruby-sass (3.1.4-5) unstable; urgency=low * Fix VERSION resolving. -- Jonas Smedegaard Mon, 04 Jul 2011 02:52:54 +0200 ruby-sass (3.1.4-4) unstable; urgency=low * Really fix add breaks/replaces libhaml-ruby. -- Jonas Smedegaard Mon, 04 Jul 2011 02:30:43 +0200 ruby-sass (3.1.4-3) unstable; urgency=low * Improve patch 1001 to suggest install ruby-compass. * Fix add replaces (in addition to breaks) libhaml-ruby. * Add suggests ruby-compass. -- Jonas Smedegaard Mon, 04 Jul 2011 02:18:14 +0200 ruby-sass (3.1.4-2) unstable; urgency=low * Fix add Breaks for older libhaml-ruby* providing Sass. -- Jonas Smedegaard Sun, 03 Jul 2011 16:42:34 +0200 ruby-sass (3.1.4-1) unstable; urgency=low * Initial release. Closes: Bug#632541. -- Jonas Smedegaard Sun, 03 Jul 2011 16:03:38 +0200 debian/README.source0000644000000000000000000000056312121764047011355 0ustar CDBS+git-buildpackage --------------------- This source package uses CDBS and git-buildpackage. NMUs need not (but are encouraged to) make special use of these tools. In particular, the debian/control.in file can be completely ignored. More info here: http://wiki.debian.org/CDBS+git-buildpackage -- Jonas Smedegaard Mon, 18 Feb 2013 12:55:37 +0100 debian/compat0000644000000000000000000000000212110153621010354 0ustar 8 debian/watch0000644000000000000000000000011412110153621010203 0ustar version=3 https://github.com/nex3/sass/tags .*/archive/v?(\d[\d\.]+).tar.gz debian/copyright_hints0000644000000000000000000002057012221600242012321 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: FIXME Upstream-Contact: FIXME Source: FIXME Disclaimer: Autogenerated by CDBS Files: CONTRIBUTING README.md Rakefile TODO VERSION VERSION_NAME bin/sass bin/sass-convert bin/scss debian/NEWS debian/README.source debian/compat debian/control debian/control.in debian/gbp.conf debian/patches/1001-avoid-rubygems.patch debian/patches/1002-fix-VERSION-path.patch debian/patches/1003-fix-library-path.patch debian/patches/series debian/source/format debian/watch doc-src/FAQ.md doc-src/INDENTED_SYNTAX.md doc-src/SASS_CHANGELOG.md doc-src/SASS_REFERENCE.md doc-src/SCSS_FOR_SASS_USERS.md ext/extconf.rb extra/update_watch.rb init.rb lib/sass.rb lib/sass/cache_stores.rb lib/sass/cache_stores/base.rb lib/sass/cache_stores/chain.rb lib/sass/cache_stores/filesystem.rb lib/sass/cache_stores/memory.rb lib/sass/cache_stores/null.rb lib/sass/callbacks.rb lib/sass/css.rb lib/sass/engine.rb lib/sass/environment.rb lib/sass/error.rb lib/sass/exec.rb lib/sass/importers.rb lib/sass/importers/base.rb lib/sass/importers/filesystem.rb lib/sass/logger.rb lib/sass/logger/base.rb lib/sass/logger/log_level.rb lib/sass/media.rb lib/sass/plugin.rb lib/sass/plugin/compiler.rb lib/sass/plugin/configuration.rb lib/sass/plugin/generic.rb lib/sass/plugin/merb.rb lib/sass/plugin/rack.rb lib/sass/plugin/rails.rb lib/sass/plugin/staleness_checker.rb lib/sass/railtie.rb lib/sass/repl.rb lib/sass/root.rb lib/sass/script.rb lib/sass/script/arg_list.rb lib/sass/script/bool.rb lib/sass/script/color.rb lib/sass/script/css_lexer.rb lib/sass/script/css_parser.rb lib/sass/script/funcall.rb lib/sass/script/functions.rb lib/sass/script/interpolation.rb lib/sass/script/lexer.rb lib/sass/script/list.rb lib/sass/script/literal.rb lib/sass/script/node.rb lib/sass/script/null.rb lib/sass/script/number.rb lib/sass/script/operation.rb lib/sass/script/parser.rb lib/sass/script/string.rb lib/sass/script/string_interpolation.rb lib/sass/script/unary_operation.rb lib/sass/script/variable.rb lib/sass/scss.rb lib/sass/scss/css_parser.rb lib/sass/scss/parser.rb lib/sass/scss/script_lexer.rb lib/sass/scss/script_parser.rb lib/sass/scss/static_parser.rb lib/sass/selector.rb lib/sass/selector/abstract_sequence.rb lib/sass/selector/comma_sequence.rb lib/sass/selector/sequence.rb lib/sass/selector/simple.rb lib/sass/selector/simple_sequence.rb lib/sass/shared.rb lib/sass/supports.rb lib/sass/tree/charset_node.rb lib/sass/tree/comment_node.rb lib/sass/tree/content_node.rb lib/sass/tree/css_import_node.rb lib/sass/tree/debug_node.rb lib/sass/tree/directive_node.rb lib/sass/tree/each_node.rb lib/sass/tree/extend_node.rb lib/sass/tree/for_node.rb lib/sass/tree/function_node.rb lib/sass/tree/if_node.rb lib/sass/tree/import_node.rb lib/sass/tree/media_node.rb lib/sass/tree/mixin_def_node.rb lib/sass/tree/mixin_node.rb lib/sass/tree/node.rb lib/sass/tree/prop_node.rb lib/sass/tree/return_node.rb lib/sass/tree/root_node.rb lib/sass/tree/rule_node.rb lib/sass/tree/supports_node.rb lib/sass/tree/trace_node.rb lib/sass/tree/variable_node.rb lib/sass/tree/visitors/base.rb lib/sass/tree/visitors/check_nesting.rb lib/sass/tree/visitors/convert.rb lib/sass/tree/visitors/cssize.rb lib/sass/tree/visitors/deep_copy.rb lib/sass/tree/visitors/extend.rb lib/sass/tree/visitors/perform.rb lib/sass/tree/visitors/set_options.rb lib/sass/tree/visitors/to_css.rb lib/sass/tree/warn_node.rb lib/sass/tree/while_node.rb lib/sass/util.rb lib/sass/util/multibyte_string_scanner.rb lib/sass/util/subset_map.rb lib/sass/util/test.rb lib/sass/version.rb rails/init.rb sass.gemspec test/.bundle/config test/Gemfile test/Gemfile.lock test/sass/cache_test.rb test/sass/callbacks_test.rb test/sass/conversion_test.rb test/sass/css2sass_test.rb test/sass/data/hsl-rgb.txt test/sass/engine_test.rb test/sass/exec_test.rb test/sass/extend_test.rb test/sass/fixtures/test_staleness_check_across_importers.css test/sass/fixtures/test_staleness_check_across_importers.scss test/sass/functions_test.rb test/sass/importer_test.rb test/sass/logger_test.rb test/sass/mock_importer.rb test/sass/more_results/more1.css test/sass/more_results/more1_with_line_comments.css test/sass/more_results/more_import.css test/sass/more_templates/_more_partial.sass test/sass/more_templates/more1.sass test/sass/more_templates/more_import.sass test/sass/plugin_test.rb test/sass/results/alt.css test/sass/results/basic.css test/sass/results/cached_import_option.css test/sass/results/compact.css test/sass/results/compressed.css test/sass/results/expanded.css test/sass/results/filename_fn.css test/sass/results/if.css test/sass/results/import.css test/sass/results/import_charset.css test/sass/results/import_charset_1_8.css test/sass/results/import_charset_ibm866.css test/sass/results/import_content.css test/sass/results/line_numbers.css test/sass/results/mixins.css test/sass/results/multiline.css test/sass/results/nested.css test/sass/results/options.css test/sass/results/parent_ref.css test/sass/results/script.css test/sass/results/scss_import.css test/sass/results/scss_importee.css test/sass/results/subdir/nested_subdir/nested_subdir.css test/sass/results/subdir/subdir.css test/sass/results/units.css test/sass/script_conversion_test.rb test/sass/script_test.rb test/sass/scss/css_test.rb test/sass/scss/rx_test.rb test/sass/scss/scss_test.rb test/sass/scss/test_helper.rb test/sass/templates/_cached_import_option_partial.scss test/sass/templates/_double_import_loop2.sass test/sass/templates/_filename_fn_import.scss test/sass/templates/_imported_charset_ibm866.sass test/sass/templates/_imported_charset_utf8.sass test/sass/templates/_imported_content.sass test/sass/templates/_partial.sass test/sass/templates/_same_name_different_partiality.scss test/sass/templates/alt.sass test/sass/templates/basic.sass test/sass/templates/bork1.sass test/sass/templates/bork2.sass test/sass/templates/bork3.sass test/sass/templates/bork4.sass test/sass/templates/bork5.sass test/sass/templates/cached_import_option.scss test/sass/templates/compact.sass test/sass/templates/complex.sass test/sass/templates/compressed.sass test/sass/templates/double_import_loop1.sass test/sass/templates/expanded.sass test/sass/templates/filename_fn.scss test/sass/templates/if.sass test/sass/templates/import.sass test/sass/templates/import_charset.sass test/sass/templates/import_charset_1_8.sass test/sass/templates/import_charset_ibm866.sass test/sass/templates/import_content.sass test/sass/templates/importee.less test/sass/templates/importee.sass test/sass/templates/line_numbers.sass test/sass/templates/mixin_bork.sass test/sass/templates/mixins.sass test/sass/templates/multiline.sass test/sass/templates/nested.sass test/sass/templates/nested_bork1.sass test/sass/templates/nested_bork2.sass test/sass/templates/nested_bork3.sass test/sass/templates/nested_bork4.sass test/sass/templates/nested_import.sass test/sass/templates/nested_mixin_bork.sass test/sass/templates/options.sass test/sass/templates/parent_ref.sass test/sass/templates/same_name_different_ext.sass test/sass/templates/same_name_different_ext.scss test/sass/templates/same_name_different_partiality.scss test/sass/templates/script.sass test/sass/templates/scss_import.scss test/sass/templates/scss_importee.scss test/sass/templates/single_import_loop.sass test/sass/templates/subdir/nested_subdir/_nested_partial.sass test/sass/templates/subdir/nested_subdir/nested_subdir.sass test/sass/templates/subdir/subdir.sass test/sass/templates/units.sass test/sass/templates/warn.sass test/sass/templates/warn_imported.sass test/sass/test_helper.rb test/sass/util/multibyte_string_scanner_test.rb test/sass/util/subset_map_test.rb test/sass/util_test.rb test/test_helper.rb yard/callbacks.rb yard/default/fulldoc/html/css/common.sass yard/default/layout/html/footer.erb yard/inherited_hash.rb Copyright: *No copyright* License: UNKNOWN FIXME Files: MIT-LICENSE Copyright: 2006-2013, Hampton Catlin, Nathan Weizenbaum, and Chris Eppstein License: Expat FIXME Files: debian/rules Copyright: 2011-2013, Jonas Smedegaard License: GPL-3+ FIXME Files: lib/sass/scss/rx.rb Copyright: unless c =~ /[ -\/:-~ License: UNKNOWN FIXME Files: test/sass/results/complex.css Copyright: { float: right; } License: UNKNOWN FIXME debian/copyright0000644000000000000000000000435112176422162011127 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Sass Upstream-Contact: Nathan Weizenbaum http://github.com/nex3/sass/issues/ Source: https://github.com/nex3/sass/downloads git://github.com/nex3/sass Files: * Copyright: 2006-2013, Chris Eppstein 2006-2013, Hampton Catlin 2006-2013, Nathan Weizenbaum License: Expat Files: debian/* Copyright: 2011, Jonas Smedegaard License: GPL-3+ License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: GPL-3+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . Comment: . On Debian systems the 'GNU General Public License' version 3 is located in '/usr/share/common-licenses/GPL-3'. . You should have received a copy of the 'GNU General Public License' along with this program. If not, see . debian/gbp.conf0000644000000000000000000000021512110153621010573 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True sign-tags = True [git-import-orig] filter = .gitignore debian/rules0000755000000000000000000000350212141760357010254 0ustar #!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- # Copyright © 2011, 2012, 2013 Jonas Smedegaard # Description: Main Debian packaging script for Sass # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . include /usr/share/cdbs/1/rules/upstream-tarball.mk include /usr/share/cdbs/1/rules/utils.mk include /usr/share/cdbs/1/rules/debhelper.mk pkg = $(DEB_SOURCE_PACKAGE) CDBS_BUILD_DEPENDS += , gem2deb (>= 0.2.5~) CDBS_DEPENDS_$(pkg) += , ruby | ruby-interpreter DEB_UPSTREAM_URL = https://github.com/nex3/sass/archive DEB_UPSTREAM_TARBALL_BASENAME = $(DEB_UPSTREAM_TARBALL_VERSION) DEB_INSTALL_DOCS_$(pkg) += README.md configure/$(pkg):: debian/stamp-ruby-gem-configure debian/stamp-ruby-gem-configure:: dh_ruby --configure touch $@ build/$(pkg):: debian/stamp-ruby-gem-build debian/stamp-ruby-gem-build:: dh_ruby --build touch $@ install/$(pkg):: debian/stamp-ruby-gem-install debian/stamp-ruby-gem-install:: dh_ruby --install touch $@ clean:: dh_ruby --clean rm -f $(patsubst %,debian/stamp-ruby-gem-%,configure build install) binary-post-install/$(pkg):: install -m 0644 VERSION $(cdbs_curdestdir)/usr/lib/ruby/vendor_ruby/sass/ install -m 0644 VERSION_NAME $(cdbs_curdestdir)/usr/lib/ruby/vendor_ruby/sass/ CDBS_SUGGESTS_ALL = ruby-compass debian/control.in0000644000000000000000000000147212141760430011200 0ustar Source: ruby-sass Section: web Priority: optional Maintainer: Jonas Smedegaard Uploaders: Gunnar Wolf Build-Depends: @cdbs@ Standards-Version: 3.9.4 Homepage: http://sass-lang.com/ Vcs-Git: git://anonscm.debian.org/git/collab-maint/ruby-sass Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/ruby-sass.git XS-Ruby-Versions: all Package: ruby-sass Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${misc:Depends}, ${cdbs:Depends} Suggests: ${cdbs:Suggests} Description: powerful but elegant CSS compiler that makes CSS fun again Sass makes CSS fun again. Sass is an extension of CSS3, adding nested rules, variables, mixins, selector inheritance, and more. . It's translated to well-formatted, standard CSS using the command line tool or a web-framework plugin. debian/NEWS0000644000000000000000000000064512110153621007662 0ustar ruby-sass (3.2.2-1) experimental; urgency=low * Sass will now print a warning when it encounters a single @import statement that tries to import more than one file. For example, if you have @import "screen" and both screen.scss and _screen.scss exist, a warning will be printed. This will become an error in future versions of Sass. -- Jonas Smedegaard Sun, 04 Nov 2012 16:14:49 +0100