Wed Mar 14 15:06:22 2018 UTC ()
misc/ruby-slop: update to 4.6.2

v4.6.2 (2018-03-12)

Bug fixes/Enhancements
  * Fix equals character (=) being parsed incorrectly in some cases. #226

v4.6.1 (2017-11-20)
-------------------

Bug fixes/Enhancements
  * Fix separator so it doesn't mutate user data. #223 (Marc-Andr辿 Lafortune)
  * Add additional tests for `Options#separator` and fix issue where
    the last separator was ignored. #222

v4.6.0 (2017-10-06)
-------------------

Features
  * Add support for required options. #218 (William Woodruff)

v4.5.0 (2017-05-22)
-------------------

Features:
  * Added config option to avoid translating flags-with-dashes into
  underscores. #206 (@lbriais)

v4.4.3 (2017-05-02)
-------------------

Bug fixes:
  * Ruby 2.0.0 support broken in v4.4.2

v4.4.2 (2017-04-29)
-------------------

Bug fixes:
  * Fix support for parsing -x5 or -nfoo. #199
  * Fix removing arguments after `--`. #194

v4.4.1 (2016-08-21)
-------------------

Bug fixes:
  * Handle bad constant names in `Slop.option_defined?`. #198
    (Ellen Marie Dash)

v4.4.0 (2016-08-15)
-------------------

Features
  * Support parsing arguments prefixed with dashes. #192 (Andrew Clemons)

Bug fixes:
  * Retain sort order inside tail sort. #193 (Caio Chassot)

v4.3.0 (2016-03-19)
-------------------

Features
  * Allow disabling array delimiter. #189 (Mike Pastore)
  * Allow passing custom banner as config. #191 (Philip Rees)

v4.2.1 (2015-11-25)
-------------------

Features:
  * Better handling of option names with multiple words. #169 (Tim Rogers)

Minor enhancements:
  * add ARGF notes to Arguments (README). #173 (Rick Hull)

Bug fixes:
  * Fix arguments removed with option arguments. #182 (Naoki Mizuno)
  * Fix bug where true is passed to BoolOption block regardless
    of --no- prefix. #184 (Ben Brady)
  * only raise MissingArgument if not `default_value`. #163 (Ben Brady)

v4.2.0 (2015-04-18)
-------------------

Features:
  * Support for Regexp option type #167 (Laurent Arnoud)
  * Support prefixed `--no-` for explicitly setting boolean options
    to `false` #168
  * Better handling of flags with multiple words #169 (Tim Rogers)

v4.1.0 (2015-04-18)
-------------------

Features:
  * Support for FloatOption #156 (Rick Hull)
  * Support for `limit` config to ArrayOption.
  * Support for `tail` config to add options to the bottom of
    the help text.
  * Add explicit setter (#[]=) to Result class. #162
  * Implement flag gettings for UnknownOption and MissingArgument
    error classes. #165 (sigurdsvela)

Minor enhancements:
  * Reset parser every time `parse` is called.

Bug fixes:
  * Remove "--" from unprocessed arguments #157 (David Rodr鱈guez).

v4.0.0 (2014-12-27)
-------------------

Features:
  * Rebuilt from the ground up. See the v3 changelog for all existing
    changes: https://github.com/leejarvis/slop/blob/v3/CHANGES.md


(taca)
diff -r1.2 -r1.3 pkgsrc/misc/ruby-slop/Makefile
diff -r1.1 -r1.2 pkgsrc/misc/ruby-slop/PLIST
diff -r1.3 -r1.4 pkgsrc/misc/ruby-slop/distinfo

cvs diff -r1.2 -r1.3 pkgsrc/misc/ruby-slop/Makefile (expand / switch to unified diff)

--- pkgsrc/misc/ruby-slop/Makefile 2015/03/14 07:48:10 1.2
+++ pkgsrc/misc/ruby-slop/Makefile 2018/03/14 15:06:22 1.3
@@ -1,12 +1,12 @@ @@ -1,12 +1,12 @@
1# $NetBSD: Makefile,v 1.2 2015/03/14 07:48:10 taca Exp $ 1# $NetBSD: Makefile,v 1.3 2018/03/14 15:06:22 taca Exp $
2 2
3DISTNAME= slop-3.6.0 3DISTNAME= slop-4.6.2
4CATEGORIES= misc 4CATEGORIES= misc
5 5
6MAINTAINER= pkgsrc-users@NetBSD.org 6MAINTAINER= pkgsrc-users@NetBSD.org
7HOMEPAGE= https://github.com/leejarvis/slop 7HOMEPAGE= https://github.com/leejarvis/slop
8COMMENT= Simple Lightweight Option Parsing 8COMMENT= Simple Lightweight Option Parsing
9LICENSE= mit 9LICENSE= mit
10 10
11.include "../../lang/ruby/gem.mk" 11.include "../../lang/ruby/gem.mk"
12.include "../../mk/bsd.pkg.mk" 12.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1 -r1.2 pkgsrc/misc/ruby-slop/PLIST (expand / switch to unified diff)

--- pkgsrc/misc/ruby-slop/PLIST 2014/06/03 13:58:10 1.1
+++ pkgsrc/misc/ruby-slop/PLIST 2018/03/14 15:06:22 1.2
@@ -1,18 +1,26 @@ @@ -1,18 +1,26 @@
1@comment $NetBSD: PLIST,v 1.1 2014/06/03 13:58:10 jperkin Exp $ 1@comment $NetBSD: PLIST,v 1.2 2018/03/14 15:06:22 taca Exp $
2${GEM_HOME}/cache/${GEM_NAME}.gem 2${GEM_HOME}/cache/${GEM_NAME}.gem
3${GEM_LIBDIR}/.gitignore 3${GEM_LIBDIR}/.gitignore
4${GEM_LIBDIR}/.travis.yml 4${GEM_LIBDIR}/.travis.yml
5${GEM_LIBDIR}/CHANGES.md 5${GEM_LIBDIR}/CHANGELOG.md
6${GEM_LIBDIR}/Gemfile 6${GEM_LIBDIR}/Gemfile
7${GEM_LIBDIR}/LICENSE 7${GEM_LIBDIR}/LICENSE
8${GEM_LIBDIR}/README.md 8${GEM_LIBDIR}/README.md
9${GEM_LIBDIR}/Rakefile 9${GEM_LIBDIR}/Rakefile
10${GEM_LIBDIR}/lib/slop.rb 10${GEM_LIBDIR}/lib/slop.rb
11${GEM_LIBDIR}/lib/slop/commands.rb 11${GEM_LIBDIR}/lib/slop/error.rb
12${GEM_LIBDIR}/lib/slop/option.rb 12${GEM_LIBDIR}/lib/slop/option.rb
 13${GEM_LIBDIR}/lib/slop/options.rb
 14${GEM_LIBDIR}/lib/slop/parser.rb
 15${GEM_LIBDIR}/lib/slop/result.rb
 16${GEM_LIBDIR}/lib/slop/types.rb
13${GEM_LIBDIR}/slop.gemspec 17${GEM_LIBDIR}/slop.gemspec
14${GEM_LIBDIR}/test/commands_test.rb 18${GEM_LIBDIR}/test/error_test.rb
15${GEM_LIBDIR}/test/helper.rb 
16${GEM_LIBDIR}/test/option_test.rb 19${GEM_LIBDIR}/test/option_test.rb
 20${GEM_LIBDIR}/test/options_test.rb
 21${GEM_LIBDIR}/test/parser_test.rb
 22${GEM_LIBDIR}/test/result_test.rb
17${GEM_LIBDIR}/test/slop_test.rb 23${GEM_LIBDIR}/test/slop_test.rb
 24${GEM_LIBDIR}/test/test_helper.rb
 25${GEM_LIBDIR}/test/types_test.rb
18${GEM_HOME}/specifications/${GEM_NAME}.gemspec 26${GEM_HOME}/specifications/${GEM_NAME}.gemspec

cvs diff -r1.3 -r1.4 pkgsrc/misc/ruby-slop/distinfo (expand / switch to unified diff)

--- pkgsrc/misc/ruby-slop/distinfo 2015/11/03 23:49:51 1.3
+++ pkgsrc/misc/ruby-slop/distinfo 2018/03/14 15:06:22 1.4
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.3 2015/11/03 23:49:51 agc Exp $ 1$NetBSD: distinfo,v 1.4 2018/03/14 15:06:22 taca Exp $
2 2
3SHA1 (slop-3.6.0.gem) = fce6f7eb3df08e7d50fde060eaedd1b451bb1962 3SHA1 (slop-4.6.2.gem) = 15fc1ab21469515d67c33599d10942ffea60ef14
4RMD160 (slop-3.6.0.gem) = 6fbe4298c5ef158c9b3a9109321894ab9f8fbfc3 4RMD160 (slop-4.6.2.gem) = 985c3fd7386bc340287d82b37bde4828ac42e97a
5SHA512 (slop-3.6.0.gem) = 876e5a9413c412648d7dc04472014858a566f923c58a076c7cbd03a347074b3912a97a7b7ed16b1fdefab00e6f322675b60e816dea574b7abbf635abe7c8946b 5SHA512 (slop-4.6.2.gem) = 9472e394ed264069a530e075ab8f0ed54ef75dc22d6fede1fc3972370f46879723b5f52197aac6da87e55d638ef2626775f9ac2ac1686639710889df90ec3da6
6Size (slop-3.6.0.gem) = 23552 bytes 6Size (slop-4.6.2.gem) = 19968 bytes