pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/ruby-console



Module Name:    pkgsrc
Committed By:   taca
Date:           Wed Nov  6 14:06:53 UTC 2024

Modified Files:
        pkgsrc/devel/ruby-console: Makefile PLIST distinfo

Log Message:
devel/ruby-console: update to 1.29.0

1.28.0 (2024-11-05)

* Add support for Kernel#warn redirection to Console.warn.

1.28.1 (2024-11-05)

(Unknown)

1.29.0 (2024-11-06)

* Don't make Kernel#warn redirection to Console.warn the default behavior,
  you must require 'console/warn' to enable it.

* Remove deprecated Console::Logger#failure.

Consistent Handling of Exceptions

Console.call and all wrapper methods will now consistently handle exceptions
that are the last positional argument or keyword argument.  This means that
the following code will work as expected:

begin
rescue => error
        # Last positional argument:
        Console.warn(self, "There may be an issue", error)

        # Keyword argument (preferable):
        Console.error(self, "There is an issue", exception: error)
end


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/ruby-console/Makefile \
    pkgsrc/devel/ruby-console/distinfo
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/ruby-console/PLIST

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/ruby-console/Makefile
diff -u pkgsrc/devel/ruby-console/Makefile:1.13 pkgsrc/devel/ruby-console/Makefile:1.14
--- pkgsrc/devel/ruby-console/Makefile:1.13     Sat Jul 20 15:23:45 2024
+++ pkgsrc/devel/ruby-console/Makefile  Wed Nov  6 14:06:53 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2024/07/20 15:23:45 taca Exp $
+# $NetBSD: Makefile,v 1.14 2024/11/06 14:06:53 taca Exp $
 
-DISTNAME=      console-1.27.0
+DISTNAME=      console-1.29.0
 CATEGORIES=    devel
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
Index: pkgsrc/devel/ruby-console/distinfo
diff -u pkgsrc/devel/ruby-console/distinfo:1.13 pkgsrc/devel/ruby-console/distinfo:1.14
--- pkgsrc/devel/ruby-console/distinfo:1.13     Sat Jul 20 15:23:45 2024
+++ pkgsrc/devel/ruby-console/distinfo  Wed Nov  6 14:06:53 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.13 2024/07/20 15:23:45 taca Exp $
+$NetBSD: distinfo,v 1.14 2024/11/06 14:06:53 taca Exp $
 
-BLAKE2s (console-1.27.0.gem) = 8031d291495b2b6f64e4e84bc0fc658342993daa77dd21d5b0e21ddf6e1b2f0f
-SHA512 (console-1.27.0.gem) = 35e349c9db6e36c0266d1f607e1ad99a01aab9716e016600bc86828fb5ea429374e8d1df01c6c34268081cfc6dadb698b65668ba19ecf9c76abd2728d477e2b8
-Size (console-1.27.0.gem) = 22016 bytes
+BLAKE2s (console-1.29.0.gem) = d7704c0eeaa24d7e4b0da30196ffa16f8df8a68b914e24400dec4cbf7230500a
+SHA512 (console-1.29.0.gem) = df1031745dda82ce3a2ae64599e25274308d24adaf710209805bda2bff79b59bbd7a55fc5913813f58948fc65624e7d86db8f20a24f91fe85400b44fd21165d6
+Size (console-1.29.0.gem) = 23040 bytes

Index: pkgsrc/devel/ruby-console/PLIST
diff -u pkgsrc/devel/ruby-console/PLIST:1.5 pkgsrc/devel/ruby-console/PLIST:1.6
--- pkgsrc/devel/ruby-console/PLIST:1.5 Sun May  5 16:26:14 2024
+++ pkgsrc/devel/ruby-console/PLIST     Wed Nov  6 14:06:53 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2024/05/05 16:26:14 taca Exp $
+@comment $NetBSD: PLIST,v 1.6 2024/11/06 14:06:53 taca Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/bake/console.rb
 ${GEM_LIBDIR}/lib/console.rb
@@ -13,9 +13,11 @@ ${GEM_LIBDIR}/lib/console/event/spawn.rb
 ${GEM_LIBDIR}/lib/console/filter.rb
 ${GEM_LIBDIR}/lib/console/format.rb
 ${GEM_LIBDIR}/lib/console/format/safe.rb
+${GEM_LIBDIR}/lib/console/interface.rb
 ${GEM_LIBDIR}/lib/console/logger.rb
 ${GEM_LIBDIR}/lib/console/output.rb
 ${GEM_LIBDIR}/lib/console/output/default.rb
+${GEM_LIBDIR}/lib/console/output/failure.rb
 ${GEM_LIBDIR}/lib/console/output/null.rb
 ${GEM_LIBDIR}/lib/console/output/sensitive.rb
 ${GEM_LIBDIR}/lib/console/output/serialized.rb
@@ -31,6 +33,8 @@ ${GEM_LIBDIR}/lib/console/terminal/forma
 ${GEM_LIBDIR}/lib/console/terminal/text.rb
 ${GEM_LIBDIR}/lib/console/terminal/xterm.rb
 ${GEM_LIBDIR}/lib/console/version.rb
+${GEM_LIBDIR}/lib/console/warn.rb
 ${GEM_LIBDIR}/license.md
 ${GEM_LIBDIR}/readme.md
+${GEM_LIBDIR}/releases.md
 ${GEM_HOME}/specifications/${GEM_NAME}.gemspec



Home | Main Index | Thread Index | Old Index