pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/ruby-simplecov Update ruby-simplecov to 0.6.4.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/47bb2ca5ea5c
branches:  trunk
changeset: 604566:47bb2ca5ea5c
user:      taca <taca%pkgsrc.org@localhost>
date:      Sat Jun 02 00:51:30 2012 +0000

description:
Update ruby-simplecov to 0.6.4.

v0.6.4, 2012-05-10 ([changes](https://github.com/colszowka/simplecov/compare/v0.6.3...v0.6.4))
-------------------

  * [BUGFIX] Encoding issues with ISO-8859-encoded source files fixed.
    See https://github.com/colszowka/simplecov/pull/117. (thanks to @Deradon)
  * [BUGFIX] Ensure ZeroDivisionErrors won't occur when calculating the coverage result, which previously
    could happen in certain cases. See https://github.com/colszowka/simplecov/pull/128. (thanks to @japgolly)
  * [REFACTORING] Changed a couple instance variable lookups so SimpleCov does not cause a lot of warnings when
    running ruby at a higher warning level. See https://github.com/colszowka/simplecov/issues/106 and
    https://github.com/colszowka/simplecov/pull/119. (thanks to @mvz and @gioele)


v0.6.3, 2012-05-10 ([changes](https://github.com/colszowka/simplecov/compare/v0.6.2...v0.6.3))
-------------------

  * [BUGFIX] Modified the API-changes for newer multi_json versions introduced with #122 and v0.6.2 so
    they are backwards-compatible with older multi_json gems in order to avoid simplecov polluting
    the multi_json minimum version requirement for entire applications.
    See https://github.com/colszowka/simplecov/issues/132
  * Added appraisal gem to the test setup in order to run the test suite against both 1.0 and 1.3
    multi_json gems and ensure the above actually works :)

diffstat:

 devel/ruby-simplecov/Makefile |   8 +++-----
 devel/ruby-simplecov/PLIST    |  11 ++++++++---
 devel/ruby-simplecov/distinfo |   8 ++++----
 3 files changed, 15 insertions(+), 12 deletions(-)

diffs (75 lines):

diff -r a13321090140 -r 47bb2ca5ea5c devel/ruby-simplecov/Makefile
--- a/devel/ruby-simplecov/Makefile     Sat Jun 02 00:49:39 2012 +0000
+++ b/devel/ruby-simplecov/Makefile     Sat Jun 02 00:51:30 2012 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2012/04/29 05:50:47 taca Exp $
+# $NetBSD: Makefile,v 1.3 2012/06/02 00:51:30 taca Exp $
 
-DISTNAME=      simplecov-0.6.2
+DISTNAME=      simplecov-0.6.4
 CATEGORIES=    devel
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -8,10 +8,8 @@
 COMMENT=       Code coverage for Ruby 1.9
 LICENSE=       gnu-gpl-v2 OR ruby-license
 
-DEPENDS+=      ${RUBY_PKGPREFIX}-multi_json>=1.3<2:../../textproc/ruby-multi_json
+DEPENDS+=      ${RUBY_PKGPREFIX}-multi_json>=1.0<2:../../textproc/ruby-multi_json
 DEPENDS+=      ${RUBY_PKGPREFIX}-simplecov-html>=0.5.3<0.6:../../devel/ruby-simplecov-html
 
-OVERRIDE_GEMSPEC+=     :files simplecov-0.6.2.gem=
-
 .include "../../lang/ruby/gem.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r a13321090140 -r 47bb2ca5ea5c devel/ruby-simplecov/PLIST
--- a/devel/ruby-simplecov/PLIST        Sat Jun 02 00:49:39 2012 +0000
+++ b/devel/ruby-simplecov/PLIST        Sat Jun 02 00:51:30 2012 +0000
@@ -1,8 +1,8 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2012/03/17 15:17:44 taca Exp $
+@comment $NetBSD: PLIST,v 1.2 2012/06/02 00:51:30 taca Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/.gitignore
-${GEM_LIBDIR}/.rvmrc
 ${GEM_LIBDIR}/.travis.yml
+${GEM_LIBDIR}/Appraisals
 ${GEM_LIBDIR}/CHANGELOG.md
 ${GEM_LIBDIR}/Gemfile
 ${GEM_LIBDIR}/LICENSE
@@ -38,6 +38,10 @@
 ${GEM_LIBDIR}/features/test_unit_groups_using_filter_class.feature
 ${GEM_LIBDIR}/features/test_unit_without_simplecov.feature
 ${GEM_LIBDIR}/features/unicode_compatiblity.feature
+${GEM_LIBDIR}/gemfiles/multi_json-legacy.gemfile
+${GEM_LIBDIR}/gemfiles/multi_json-legacy.gemfile.lock
+${GEM_LIBDIR}/gemfiles/multi_json-new.gemfile
+${GEM_LIBDIR}/gemfiles/multi_json-new.gemfile.lock
 ${GEM_LIBDIR}/lib/simplecov.rb
 ${GEM_LIBDIR}/lib/simplecov/adapters.rb
 ${GEM_LIBDIR}/lib/simplecov/command_guesser.rb
@@ -80,10 +84,11 @@
 ${GEM_LIBDIR}/test/fixtures/frameworks/rspec_good.rb
 ${GEM_LIBDIR}/test/fixtures/frameworks/testunit_bad.rb
 ${GEM_LIBDIR}/test/fixtures/frameworks/testunit_good.rb
+${GEM_LIBDIR}/test/fixtures/iso-8859.rb
 ${GEM_LIBDIR}/test/fixtures/resultset1.rb
 ${GEM_LIBDIR}/test/fixtures/resultset2.rb
+${GEM_LIBDIR}/test/fixtures/sample.rb
 ${GEM_LIBDIR}/test/fixtures/utf-8.rb
-${GEM_LIBDIR}/test/fixtures/sample.rb
 ${GEM_LIBDIR}/test/helper.rb
 ${GEM_LIBDIR}/test/shoulda_macros.rb
 ${GEM_LIBDIR}/test/test_1_8_fallbacks.rb
diff -r a13321090140 -r 47bb2ca5ea5c devel/ruby-simplecov/distinfo
--- a/devel/ruby-simplecov/distinfo     Sat Jun 02 00:49:39 2012 +0000
+++ b/devel/ruby-simplecov/distinfo     Sat Jun 02 00:51:30 2012 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2012/04/29 05:50:47 taca Exp $
+$NetBSD: distinfo,v 1.3 2012/06/02 00:51:30 taca Exp $
 
-SHA1 (simplecov-0.6.2.gem) = dbbed76de2d1d2c1ae0720ff73e5505312da5d45
-RMD160 (simplecov-0.6.2.gem) = e8df30ef66bd6ffae329b13140e2827c0e66f743
-Size (simplecov-0.6.2.gem) = 39424 bytes
+SHA1 (simplecov-0.6.4.gem) = 130ea427b822e31b0110d8c2e855eaae88db01e0
+RMD160 (simplecov-0.6.4.gem) = f116999d6e4c247d80a94876c0218fb72b87963d
+Size (simplecov-0.6.4.gem) = 41472 bytes



Home | Main Index | Thread Index | Old Index