pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/misc/ruby-slop
Module Name: pkgsrc
Committed By: taca
Date: Wed Mar 14 15:06:22 UTC 2018
Modified Files:
pkgsrc/misc/ruby-slop: Makefile PLIST distinfo
Log Message:
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
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/misc/ruby-slop/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/misc/ruby-slop/PLIST
cvs rdiff -u -r1.3 -r1.4 pkgsrc/misc/ruby-slop/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/misc/ruby-slop/Makefile
diff -u pkgsrc/misc/ruby-slop/Makefile:1.2 pkgsrc/misc/ruby-slop/Makefile:1.3
--- pkgsrc/misc/ruby-slop/Makefile:1.2 Sat Mar 14 07:48:10 2015
+++ pkgsrc/misc/ruby-slop/Makefile Wed Mar 14 15:06:22 2018
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2015/03/14 07:48:10 taca Exp $
+# $NetBSD: Makefile,v 1.3 2018/03/14 15:06:22 taca Exp $
-DISTNAME= slop-3.6.0
+DISTNAME= slop-4.6.2
CATEGORIES= misc
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
Index: pkgsrc/misc/ruby-slop/PLIST
diff -u pkgsrc/misc/ruby-slop/PLIST:1.1 pkgsrc/misc/ruby-slop/PLIST:1.2
--- pkgsrc/misc/ruby-slop/PLIST:1.1 Tue Jun 3 13:58:10 2014
+++ pkgsrc/misc/ruby-slop/PLIST Wed Mar 14 15:06:22 2018
@@ -1,18 +1,26 @@
-@comment $NetBSD: PLIST,v 1.1 2014/06/03 13:58:10 jperkin Exp $
+@comment $NetBSD: PLIST,v 1.2 2018/03/14 15:06:22 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.gitignore
${GEM_LIBDIR}/.travis.yml
-${GEM_LIBDIR}/CHANGES.md
+${GEM_LIBDIR}/CHANGELOG.md
${GEM_LIBDIR}/Gemfile
${GEM_LIBDIR}/LICENSE
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/Rakefile
${GEM_LIBDIR}/lib/slop.rb
-${GEM_LIBDIR}/lib/slop/commands.rb
+${GEM_LIBDIR}/lib/slop/error.rb
${GEM_LIBDIR}/lib/slop/option.rb
+${GEM_LIBDIR}/lib/slop/options.rb
+${GEM_LIBDIR}/lib/slop/parser.rb
+${GEM_LIBDIR}/lib/slop/result.rb
+${GEM_LIBDIR}/lib/slop/types.rb
${GEM_LIBDIR}/slop.gemspec
-${GEM_LIBDIR}/test/commands_test.rb
-${GEM_LIBDIR}/test/helper.rb
+${GEM_LIBDIR}/test/error_test.rb
${GEM_LIBDIR}/test/option_test.rb
+${GEM_LIBDIR}/test/options_test.rb
+${GEM_LIBDIR}/test/parser_test.rb
+${GEM_LIBDIR}/test/result_test.rb
${GEM_LIBDIR}/test/slop_test.rb
+${GEM_LIBDIR}/test/test_helper.rb
+${GEM_LIBDIR}/test/types_test.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
Index: pkgsrc/misc/ruby-slop/distinfo
diff -u pkgsrc/misc/ruby-slop/distinfo:1.3 pkgsrc/misc/ruby-slop/distinfo:1.4
--- pkgsrc/misc/ruby-slop/distinfo:1.3 Tue Nov 3 23:49:51 2015
+++ pkgsrc/misc/ruby-slop/distinfo Wed Mar 14 15:06:22 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2015/11/03 23:49:51 agc Exp $
+$NetBSD: distinfo,v 1.4 2018/03/14 15:06:22 taca Exp $
-SHA1 (slop-3.6.0.gem) = fce6f7eb3df08e7d50fde060eaedd1b451bb1962
-RMD160 (slop-3.6.0.gem) = 6fbe4298c5ef158c9b3a9109321894ab9f8fbfc3
-SHA512 (slop-3.6.0.gem) = 876e5a9413c412648d7dc04472014858a566f923c58a076c7cbd03a347074b3912a97a7b7ed16b1fdefab00e6f322675b60e816dea574b7abbf635abe7c8946b
-Size (slop-3.6.0.gem) = 23552 bytes
+SHA1 (slop-4.6.2.gem) = 15fc1ab21469515d67c33599d10942ffea60ef14
+RMD160 (slop-4.6.2.gem) = 985c3fd7386bc340287d82b37bde4828ac42e97a
+SHA512 (slop-4.6.2.gem) = 9472e394ed264069a530e075ab8f0ed54ef75dc22d6fede1fc3972370f46879723b5f52197aac6da87e55d638ef2626775f9ac2ac1686639710889df90ec3da6
+Size (slop-4.6.2.gem) = 19968 bytes
Home |
Main Index |
Thread Index |
Old Index