Received: by mail.netbsd.org (Postfix, from userid 605) id BDEF584E23; Sun, 24 Feb 2019 16:18:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4228484E18 for ; Sun, 24 Feb 2019 16:18:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id zS3x6Sg3BK6M for ; Sun, 24 Feb 2019 16:18:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id CB9A684C81 for ; Sun, 24 Feb 2019 16:18:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BFC7BFB16; Sun, 24 Feb 2019 16:18:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155102513246540" MIME-Version: 1.0 Date: Sun, 24 Feb 2019 16:18:52 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/www/ruby-sass To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20190224161852.BFC7BFB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_155102513246540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: taca Date: Sun Feb 24 16:18:52 UTC 2019 Modified Files: pkgsrc/www/ruby-sass: Makefile PLIST distinfo Log Message: www/ruby-sass: update to 3.7.3 3.7.3 (4 January 2019) * Emit escaped tab characters in identifiers as \9 rather than a backslash followed by a literal tab. 3.7.2 (8 November 2018) * Fix more escaped-whitespace edge cases. 3.7.1 (7 November 2018) * Properly handle escaped whitespace and other unusual characters. 3.7.0 (6 November 2018) * Add support for CSS's min() and max() math functions. A min() and max() call will continue to be parsed as a Sass function if it involves any Sass-specific features like variables or function calls, but if it's valid plain CSS (optionally with interpolation) it will be emitted as plain CSS instead. See the proposal for details. * Add support for range-format media features like (10px < width < 100px). See the proposal for details. * Normalize escape codes in identifiers so that, for example, ¸«±clair and \E9clair are parsed to the same value. See the proposal for details. Backwards Incompatibilities -- Must Read! * Percentages passed as $alpha arguments to rgba() and hsla() are now interpreted according to the spec, and all other units are disallowed. 3.6.0 (19 September 2018) * Add support for importing an _index.scss or _index.sass file when importing a directory. Backwards Incompatibilities -- Must Read! * Tokens such as #abcd that are ambiguous between ID strings and hex colors with an alpha channel are now parsed as colors. 3.5.7 (18 July 2018) * Add a post-install message indicating that Ruby Sass is deprecated. * Properly emit an error when an empty block is passed to a mixin that doesn't use @content. 3.5.6 (22 March 2018) * Allow ! in custom property values. * var() may now be passed in place of multiple arguments to rgb(), rgba(), hsl() and hsla(). * Don't crash on custom properties that aren't followed by semicolons. * Don't crash when normalizing numbers with complex units. * Don't crash on $x % 0. 3.5.5 (4 January 2018) * Emit a warning when && is used, since it's probably not what the user means. * Add a suggested replacement for extended compound selectors. * Fix a bug where an unparseable selector produced an unuseful error. 3.5.4 (15 December 2017) * round() now returns the correct results for negative numbers that should round down. * Avoid thread-unsafely modifying $stderr. 3.5.3 (26 October 2017) * Generate correct source maps for map literals. 3.5.2 (4 October 2017) * Properly parse CSS variables that begin with interpolation (for example, --#{$foo}: ...). 3.5.1 (13 July 2017) * Avoid conflicts with the listen gem. 3.5.0 (12 July 2017) * Default to ten digits of numeric precision. * Combine ids and :root when unifying selectors with @extend and selector functions. * It's no longer an error to @extend a selector that exists in the stylesheet, but for which unification fails. * Add a $weight parameter to invert(). * The last argument in an argument list can now have a trailing comma. * Allow var() to be passed to rgb(), rgba(), hsl(), and hsla(). * Add support for the ::slotted() pseudo-element. * Add support for CSS's grid template areas and named lines. We support this syntax through a new type of list called a "bracketed list". Bracketed lists can be created by wrapping a list with square brackets. For example: [this is bracketed] and [this, is, also, bracketed]. Bracketed lists will output their square brackets when used as a CSS value. Bracketed lists may be either space-separated or comma-separated. The is-bracketed() function, when passed a list will return a boolean indicating whether that list will output with brackets. The join() function now accepts a $bracketed parameter that controls whether the returned list has brackets. * A new function content-exists() will return true when called within a mixin that was passed content for use by the @content directive. * Passing a string to call($function-name, $args...) indicating which function to invoke is now deprecated. Instead pass a function reference returned from get-function($function-name). This allows function name resolution to be performed in the correct lexical context and then invoked in a different context. This is required so that the module-based resolver in Sass 4.0 will invoke the correct function when calling across module boundaries. Developers of frameworks that use call should not do the function lookup for callers of their framework; this is likely to result in a situation where the framework cannot resolve the function in 4.0. * Values that can be interpreted as hex colors with alpha channels and also as ID values, such as #abcd, now emit deprecation warnings in preparation for being parsed differently Sass 3.6. They were previously parsed as strings, and in 3.6 they will be parsed as colors instead. * Pseudo selectors that take arguments now allow any [][declaration-value] production in their argument list. This will provide better forwards-compatibility for future CSS syntax. * Pseudo selectors that take selectors as arguments will no longer always be eliminated if they contain placeholder selectors that aren't extended. Instead, they'll be reduced to valid CSS selectors if possible. * Generated transparent colors will now be emitted as rgba(0, 0, 0, 0) rather than transparent. This works around a bug wherein IE incorrectly handles the latter format. * The indented syntax now allows different indentation to be used for different lines, as long as they define a consistent tree structure. Backwards Incompatibilities -- Must Read! * The way CSS variables are handled has changed to better correspond to the CSS spec. They no longer allow arbitrary SassScript in their values; instead, almost all text in the property values will be passed through unchanged to CSS. The only exception is #{}, which will inject a SassScript value as before. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/www/ruby-sass/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/www/ruby-sass/PLIST cvs rdiff -u -r1.22 -r1.23 pkgsrc/www/ruby-sass/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155102513246540 Content-Disposition: inline Content-Length: 12553 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/ruby-sass/Makefile diff -u pkgsrc/www/ruby-sass/Makefile:1.23 pkgsrc/www/ruby-sass/Makefile:1.24 --- pkgsrc/www/ruby-sass/Makefile:1.23 Mon Jun 5 15:39:59 2017 +++ pkgsrc/www/ruby-sass/Makefile Sun Feb 24 16:18:52 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.23 2017/06/05 15:39:59 taca Exp $ +# $NetBSD: Makefile,v 1.24 2019/02/24 16:18:52 taca Exp $ -DISTNAME= sass-3.4.24 +DISTNAME= sass-3.7.3 CATEGORIES= www MAINTAINER= pkgsrc-users@NetBSD.org @@ -8,6 +8,10 @@ HOMEPAGE= http://sass-lang.com/ COMMENT= Powerful, but elegant CSS compiler that makes CSS fun again LICENSE= mit +DEPENDS+= ${RUBY_PKGPREFIX}-sass-listen>=4.0.0<4.1:../../www/ruby-sass-listen + +USE_LANGUAGES= # none + RUBYGEM_OPTIONS+= --format-executable .include "../../lang/ruby/gem.mk" Index: pkgsrc/www/ruby-sass/PLIST diff -u pkgsrc/www/ruby-sass/PLIST:1.15 pkgsrc/www/ruby-sass/PLIST:1.16 --- pkgsrc/www/ruby-sass/PLIST:1.15 Mon Mar 20 16:04:57 2017 +++ pkgsrc/www/ruby-sass/PLIST Sun Feb 24 16:18:52 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.15 2017/03/20 16:04:57 taca Exp $ +@comment $NetBSD: PLIST,v 1.16 2019/02/24 16:18:52 taca Exp $ bin/sass${RUBY_SUFFIX} bin/sass-convert${RUBY_SUFFIX} bin/scss${RUBY_SUFFIX} @@ -9,7 +9,6 @@ ${GEM_LIBDIR}/CONTRIBUTING.md ${GEM_LIBDIR}/MIT-LICENSE ${GEM_LIBDIR}/README.md ${GEM_LIBDIR}/REVISION -${GEM_LIBDIR}/Rakefile ${GEM_LIBDIR}/VERSION ${GEM_LIBDIR}/VERSION_DATE ${GEM_LIBDIR}/VERSION_NAME @@ -28,6 +27,7 @@ ${GEM_LIBDIR}/lib/sass/cache_stores/memo ${GEM_LIBDIR}/lib/sass/cache_stores/null.rb ${GEM_LIBDIR}/lib/sass/callbacks.rb ${GEM_LIBDIR}/lib/sass/css.rb +${GEM_LIBDIR}/lib/sass/deprecation.rb ${GEM_LIBDIR}/lib/sass/engine.rb ${GEM_LIBDIR}/lib/sass/environment.rb ${GEM_LIBDIR}/lib/sass/error.rb @@ -59,7 +59,6 @@ ${GEM_LIBDIR}/lib/sass/root.rb ${GEM_LIBDIR}/lib/sass/script.rb ${GEM_LIBDIR}/lib/sass/script/css_lexer.rb ${GEM_LIBDIR}/lib/sass/script/css_parser.rb -${GEM_LIBDIR}/lib/sass/script/css_variable_warning.rb ${GEM_LIBDIR}/lib/sass/script/functions.rb ${GEM_LIBDIR}/lib/sass/script/lexer.rb ${GEM_LIBDIR}/lib/sass/script/parser.rb @@ -79,7 +78,9 @@ ${GEM_LIBDIR}/lib/sass/script/value.rb ${GEM_LIBDIR}/lib/sass/script/value/arg_list.rb ${GEM_LIBDIR}/lib/sass/script/value/base.rb ${GEM_LIBDIR}/lib/sass/script/value/bool.rb +${GEM_LIBDIR}/lib/sass/script/value/callable.rb ${GEM_LIBDIR}/lib/sass/script/value/color.rb +${GEM_LIBDIR}/lib/sass/script/value/function.rb ${GEM_LIBDIR}/lib/sass/script/value/helpers.rb ${GEM_LIBDIR}/lib/sass/script/value/list.rb ${GEM_LIBDIR}/lib/sass/script/value/map.rb @@ -142,174 +143,10 @@ ${GEM_LIBDIR}/lib/sass/tree/visitors/to_ ${GEM_LIBDIR}/lib/sass/tree/warn_node.rb ${GEM_LIBDIR}/lib/sass/tree/while_node.rb ${GEM_LIBDIR}/lib/sass/util.rb -${GEM_LIBDIR}/lib/sass/util/cross_platform_random.rb ${GEM_LIBDIR}/lib/sass/util/multibyte_string_scanner.rb ${GEM_LIBDIR}/lib/sass/util/normalized_map.rb -${GEM_LIBDIR}/lib/sass/util/ordered_hash.rb ${GEM_LIBDIR}/lib/sass/util/subset_map.rb ${GEM_LIBDIR}/lib/sass/util/test.rb ${GEM_LIBDIR}/lib/sass/version.rb ${GEM_LIBDIR}/rails/init.rb -${GEM_LIBDIR}/test/sass-spec.yml -${GEM_LIBDIR}/test/sass/cache_test.rb -${GEM_LIBDIR}/test/sass/callbacks_test.rb -${GEM_LIBDIR}/test/sass/compiler_test.rb -${GEM_LIBDIR}/test/sass/conversion_test.rb -${GEM_LIBDIR}/test/sass/css2sass_test.rb -${GEM_LIBDIR}/test/sass/css_variable_test.rb -${GEM_LIBDIR}/test/sass/data/hsl-rgb.txt -${GEM_LIBDIR}/test/sass/encoding_test.rb -${GEM_LIBDIR}/test/sass/engine_test.rb -${GEM_LIBDIR}/test/sass/exec_test.rb -${GEM_LIBDIR}/test/sass/extend_test.rb -${GEM_LIBDIR}/test/sass/fixtures/test_staleness_check_across_importers.css -${GEM_LIBDIR}/test/sass/fixtures/test_staleness_check_across_importers.scss -${GEM_LIBDIR}/test/sass/functions_test.rb -${GEM_LIBDIR}/test/sass/importer_test.rb -${GEM_LIBDIR}/test/sass/logger_test.rb -${GEM_LIBDIR}/test/sass/mock_importer.rb -${GEM_LIBDIR}/test/sass/more_results/more1.css -${GEM_LIBDIR}/test/sass/more_results/more1_with_line_comments.css -${GEM_LIBDIR}/test/sass/more_results/more_import.css -${GEM_LIBDIR}/test/sass/more_templates/_more_partial.sass -${GEM_LIBDIR}/test/sass/more_templates/more1.sass -${GEM_LIBDIR}/test/sass/more_templates/more_import.sass -${GEM_LIBDIR}/test/sass/plugin_test.rb -${GEM_LIBDIR}/test/sass/results/alt.css -${GEM_LIBDIR}/test/sass/results/basic.css -${GEM_LIBDIR}/test/sass/results/cached_import_option.css -${GEM_LIBDIR}/test/sass/results/compact.css -${GEM_LIBDIR}/test/sass/results/complex.css -${GEM_LIBDIR}/test/sass/results/compressed.css -${GEM_LIBDIR}/test/sass/results/expanded.css -${GEM_LIBDIR}/test/sass/results/filename_fn.css -${GEM_LIBDIR}/test/sass/results/if.css -${GEM_LIBDIR}/test/sass/results/import.css -${GEM_LIBDIR}/test/sass/results/import_charset.css -${GEM_LIBDIR}/test/sass/results/import_charset_1_8.css -${GEM_LIBDIR}/test/sass/results/import_charset_ibm866.css -${GEM_LIBDIR}/test/sass/results/import_content.css -${GEM_LIBDIR}/test/sass/results/line_numbers.css -${GEM_LIBDIR}/test/sass/results/mixins.css -${GEM_LIBDIR}/test/sass/results/multiline.css -${GEM_LIBDIR}/test/sass/results/nested.css -${GEM_LIBDIR}/test/sass/results/options.css -${GEM_LIBDIR}/test/sass/results/parent_ref.css -${GEM_LIBDIR}/test/sass/results/script.css -${GEM_LIBDIR}/test/sass/results/scss_import.css -${GEM_LIBDIR}/test/sass/results/scss_importee.css -${GEM_LIBDIR}/test/sass/results/subdir/nested_subdir/nested_subdir.css -${GEM_LIBDIR}/test/sass/results/subdir/subdir.css -${GEM_LIBDIR}/test/sass/results/units.css -${GEM_LIBDIR}/test/sass/results/warn.css -${GEM_LIBDIR}/test/sass/results/warn_imported.css -${GEM_LIBDIR}/test/sass/script_conversion_test.rb -${GEM_LIBDIR}/test/sass/script_test.rb -${GEM_LIBDIR}/test/sass/scss/css_test.rb -${GEM_LIBDIR}/test/sass/scss/rx_test.rb -${GEM_LIBDIR}/test/sass/scss/scss_test.rb -${GEM_LIBDIR}/test/sass/scss/test_helper.rb -${GEM_LIBDIR}/test/sass/source_map_test.rb -${GEM_LIBDIR}/test/sass/superselector_test.rb -${GEM_LIBDIR}/test/sass/templates/_cached_import_option_partial.scss -${GEM_LIBDIR}/test/sass/templates/_double_import_loop2.sass -${GEM_LIBDIR}/test/sass/templates/_filename_fn_import.scss -${GEM_LIBDIR}/test/sass/templates/_imported_charset_ibm866.sass -${GEM_LIBDIR}/test/sass/templates/_imported_charset_utf8.sass -${GEM_LIBDIR}/test/sass/templates/_imported_content.sass -${GEM_LIBDIR}/test/sass/templates/_partial.sass -${GEM_LIBDIR}/test/sass/templates/_same_name_different_partiality.scss -${GEM_LIBDIR}/test/sass/templates/alt.sass -${GEM_LIBDIR}/test/sass/templates/basic.sass -${GEM_LIBDIR}/test/sass/templates/bork1.sass -${GEM_LIBDIR}/test/sass/templates/bork2.sass -${GEM_LIBDIR}/test/sass/templates/bork3.sass -${GEM_LIBDIR}/test/sass/templates/bork4.sass -${GEM_LIBDIR}/test/sass/templates/bork5.sass -${GEM_LIBDIR}/test/sass/templates/cached_import_option.scss -${GEM_LIBDIR}/test/sass/templates/compact.sass -${GEM_LIBDIR}/test/sass/templates/complex.sass -${GEM_LIBDIR}/test/sass/templates/compressed.sass -${GEM_LIBDIR}/test/sass/templates/double_import_loop1.sass -${GEM_LIBDIR}/test/sass/templates/expanded.sass -${GEM_LIBDIR}/test/sass/templates/filename_fn.scss -${GEM_LIBDIR}/test/sass/templates/if.sass -${GEM_LIBDIR}/test/sass/templates/import.sass -${GEM_LIBDIR}/test/sass/templates/import_charset.sass -${GEM_LIBDIR}/test/sass/templates/import_charset_1_8.sass -${GEM_LIBDIR}/test/sass/templates/import_charset_ibm866.sass -${GEM_LIBDIR}/test/sass/templates/import_content.sass -${GEM_LIBDIR}/test/sass/templates/importee.less -${GEM_LIBDIR}/test/sass/templates/importee.sass -${GEM_LIBDIR}/test/sass/templates/line_numbers.sass -${GEM_LIBDIR}/test/sass/templates/mixin_bork.sass -${GEM_LIBDIR}/test/sass/templates/mixins.sass -${GEM_LIBDIR}/test/sass/templates/multiline.sass -${GEM_LIBDIR}/test/sass/templates/nested.sass -${GEM_LIBDIR}/test/sass/templates/nested_bork1.sass -${GEM_LIBDIR}/test/sass/templates/nested_bork2.sass -${GEM_LIBDIR}/test/sass/templates/nested_bork3.sass -${GEM_LIBDIR}/test/sass/templates/nested_bork4.sass -${GEM_LIBDIR}/test/sass/templates/nested_import.sass -${GEM_LIBDIR}/test/sass/templates/nested_mixin_bork.sass -${GEM_LIBDIR}/test/sass/templates/options.sass -${GEM_LIBDIR}/test/sass/templates/parent_ref.sass -${GEM_LIBDIR}/test/sass/templates/same_name_different_ext.sass -${GEM_LIBDIR}/test/sass/templates/same_name_different_ext.scss -${GEM_LIBDIR}/test/sass/templates/same_name_different_partiality.scss -${GEM_LIBDIR}/test/sass/templates/script.sass -${GEM_LIBDIR}/test/sass/templates/scss_import.scss -${GEM_LIBDIR}/test/sass/templates/scss_importee.scss -${GEM_LIBDIR}/test/sass/templates/single_import_loop.sass -${GEM_LIBDIR}/test/sass/templates/subdir/import_up1.scss -${GEM_LIBDIR}/test/sass/templates/subdir/import_up2.scss -${GEM_LIBDIR}/test/sass/templates/subdir/nested_subdir/_nested_partial.sass -${GEM_LIBDIR}/test/sass/templates/subdir/nested_subdir/nested_subdir.sass -${GEM_LIBDIR}/test/sass/templates/subdir/subdir.sass -${GEM_LIBDIR}/test/sass/templates/units.sass -${GEM_LIBDIR}/test/sass/templates/warn.sass -${GEM_LIBDIR}/test/sass/templates/warn_imported.sass -${GEM_LIBDIR}/test/sass/test_helper.rb -${GEM_LIBDIR}/test/sass/util/multibyte_string_scanner_test.rb -${GEM_LIBDIR}/test/sass/util/normalized_map_test.rb -${GEM_LIBDIR}/test/sass/util/subset_map_test.rb -${GEM_LIBDIR}/test/sass/util_test.rb -${GEM_LIBDIR}/test/sass/value_helpers_test.rb -${GEM_LIBDIR}/test/test_helper.rb -${GEM_LIBDIR}/vendor/listen/CHANGELOG.md -${GEM_LIBDIR}/vendor/listen/CONTRIBUTING.md -${GEM_LIBDIR}/vendor/listen/Gemfile -${GEM_LIBDIR}/vendor/listen/Guardfile -${GEM_LIBDIR}/vendor/listen/LICENSE -${GEM_LIBDIR}/vendor/listen/README.md -${GEM_LIBDIR}/vendor/listen/Rakefile -${GEM_LIBDIR}/vendor/listen/Vagrantfile -${GEM_LIBDIR}/vendor/listen/lib/listen.rb -${GEM_LIBDIR}/vendor/listen/lib/listen/adapter.rb -${GEM_LIBDIR}/vendor/listen/lib/listen/adapters/bsd.rb -${GEM_LIBDIR}/vendor/listen/lib/listen/adapters/darwin.rb -${GEM_LIBDIR}/vendor/listen/lib/listen/adapters/linux.rb -${GEM_LIBDIR}/vendor/listen/lib/listen/adapters/polling.rb -${GEM_LIBDIR}/vendor/listen/lib/listen/adapters/windows.rb -${GEM_LIBDIR}/vendor/listen/lib/listen/directory_record.rb -${GEM_LIBDIR}/vendor/listen/lib/listen/listener.rb -${GEM_LIBDIR}/vendor/listen/lib/listen/turnstile.rb -${GEM_LIBDIR}/vendor/listen/lib/listen/version.rb -${GEM_LIBDIR}/vendor/listen/listen.gemspec -${GEM_LIBDIR}/vendor/listen/spec/listen/adapter_spec.rb -${GEM_LIBDIR}/vendor/listen/spec/listen/adapters/bsd_spec.rb -${GEM_LIBDIR}/vendor/listen/spec/listen/adapters/darwin_spec.rb -${GEM_LIBDIR}/vendor/listen/spec/listen/adapters/linux_spec.rb -${GEM_LIBDIR}/vendor/listen/spec/listen/adapters/polling_spec.rb -${GEM_LIBDIR}/vendor/listen/spec/listen/adapters/windows_spec.rb -${GEM_LIBDIR}/vendor/listen/spec/listen/directory_record_spec.rb -${GEM_LIBDIR}/vendor/listen/spec/listen/listener_spec.rb -${GEM_LIBDIR}/vendor/listen/spec/listen/turnstile_spec.rb -${GEM_LIBDIR}/vendor/listen/spec/listen_spec.rb -${GEM_LIBDIR}/vendor/listen/spec/spec_helper.rb -${GEM_LIBDIR}/vendor/listen/spec/support/adapter_helper.rb -${GEM_LIBDIR}/vendor/listen/spec/support/directory_record_helper.rb -${GEM_LIBDIR}/vendor/listen/spec/support/fixtures_helper.rb -${GEM_LIBDIR}/vendor/listen/spec/support/listeners_helper.rb -${GEM_LIBDIR}/vendor/listen/spec/support/platform_helper.rb ${GEM_HOME}/specifications/${GEM_NAME}.gemspec Index: pkgsrc/www/ruby-sass/distinfo diff -u pkgsrc/www/ruby-sass/distinfo:1.22 pkgsrc/www/ruby-sass/distinfo:1.23 --- pkgsrc/www/ruby-sass/distinfo:1.22 Mon Jun 5 15:39:59 2017 +++ pkgsrc/www/ruby-sass/distinfo Sun Feb 24 16:18:52 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.22 2017/06/05 15:39:59 taca Exp $ +$NetBSD: distinfo,v 1.23 2019/02/24 16:18:52 taca Exp $ -SHA1 (sass-3.4.24.gem) = e86bcb8c13f7f8f4e4f785e1a9743eb50142f8b0 -RMD160 (sass-3.4.24.gem) = 9567fed152f2941c4623f928f7bdbe538009f339 -SHA512 (sass-3.4.24.gem) = 8435005234e5e734894f39fbfaccb83ae8f077f91604e59b4c4bcf9bc92be0bced4544b7e1ce0fefc6b382590407915d438e7f99828735e5eed7ba76f3ffb7d9 -Size (sass-3.4.24.gem) = 351232 bytes +SHA1 (sass-3.7.3.gem) = ae9c1127d4ae0427b02b838f24c82105b0e8fd17 +RMD160 (sass-3.7.3.gem) = 01a42c7a241a4f8f446105319e60e7acd4d24647 +SHA512 (sass-3.7.3.gem) = 14f6209e92a4cad15f67b6c11a919f53edfb8abf9b9e89795252e43fccc2628feca2cb40387b0c268009e93a08d908eba0cdf94b21bece5e8232bbe2f41fea09 +Size (sass-3.7.3.gem) = 208896 bytes --_----------=_155102513246540--