Received: by mail.netbsd.org (Postfix, from userid 605) id 5E87384E69; Sun, 15 Jan 2023 15:25:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8F6F984D26 for ; Sun, 15 Jan 2023 15:25:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 7988GgejTuOU for ; Sun, 15 Jan 2023 15:25:48 +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 0197B84CF7 for ; Sun, 15 Jan 2023 15:25:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EF0A6FA90; Sun, 15 Jan 2023 15:25:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1673796347243360" MIME-Version: 1.0 Date: Sun, 15 Jan 2023 15:25:47 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-gettext_i18n_rails To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20230115152547.EF0A6FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1673796347243360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Jan 15 15:25:47 UTC 2023 Modified Files: pkgsrc/devel/ruby-gettext_i18n_rails: Makefile distinfo Log Message: devel/ruby-gettext_i18n_rails: update to 1.10.0 1.9.0 (2022-10-13) * use given locale in translate FastGettext.locale was not set to the locale parameter. If locale was changed by parameter, the cache of the thread locale was always returned. * docs: use gettext gem in all environments * Update Readme.md to use before_action before_filter was deprecated in Rails 5.0, so I think most people adding this to their projects would need to use before_action. * Use String#end_with? instead of String#ends_with? * compatibility with HAML 6 1.10.0 (2023-01-07) * fix bundle * backend: translate changes the current locale `FastGettext.set_locale` returns the "new" current locale, not the old one. Use `with_locale`. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/ruby-gettext_i18n_rails/Makefile cvs rdiff -u -r1.24 -r1.25 pkgsrc/devel/ruby-gettext_i18n_rails/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1673796347243360 Content-Disposition: inline Content-Length: 1712 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-gettext_i18n_rails/Makefile diff -u pkgsrc/devel/ruby-gettext_i18n_rails/Makefile:1.21 pkgsrc/devel/ruby-gettext_i18n_rails/Makefile:1.22 --- pkgsrc/devel/ruby-gettext_i18n_rails/Makefile:1.21 Sun Mar 8 13:48:34 2020 +++ pkgsrc/devel/ruby-gettext_i18n_rails/Makefile Sun Jan 15 15:25:47 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.21 2020/03/08 13:48:34 taca Exp $ +# $NetBSD: Makefile,v 1.22 2023/01/15 15:25:47 taca Exp $ -DISTNAME= gettext_i18n_rails-1.8.1 +DISTNAME= gettext_i18n_rails-1.10.0 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/devel/ruby-gettext_i18n_rails/distinfo diff -u pkgsrc/devel/ruby-gettext_i18n_rails/distinfo:1.24 pkgsrc/devel/ruby-gettext_i18n_rails/distinfo:1.25 --- pkgsrc/devel/ruby-gettext_i18n_rails/distinfo:1.24 Tue Oct 26 10:19:33 2021 +++ pkgsrc/devel/ruby-gettext_i18n_rails/distinfo Sun Jan 15 15:25:47 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.24 2021/10/26 10:19:33 nia Exp $ +$NetBSD: distinfo,v 1.25 2023/01/15 15:25:47 taca Exp $ -BLAKE2s (gettext_i18n_rails-1.8.1.gem) = 2f8e54eef4a97f48b2898ca7cf01d7df471ff71d8b0c3a003ff39b779672d361 -SHA512 (gettext_i18n_rails-1.8.1.gem) = b99117cb1f45b96f0019f2d5daea2416292b353848daeba5cd0e8ffd17da8fce993ae655b4fd8906481dd0d4a1116049210a6c8773a8d8357b9a43cd1eccbe31 -Size (gettext_i18n_rails-1.8.1.gem) = 13312 bytes +BLAKE2s (gettext_i18n_rails-1.10.0.gem) = 5fa501a1fe42e2aef56675139fc2e355fdfbac33a2b0802d84f389f234a17a6b +SHA512 (gettext_i18n_rails-1.10.0.gem) = 0f31128d9dd57c019e0159dcfbed43e70dd6737396cda0e13190115dc6394022af3d8678c642c484a7384e4c760f8c217db7767208fafbe19330ef51c8ddddd4 +Size (gettext_i18n_rails-1.10.0.gem) = 13312 bytes --_----------=_1673796347243360--