Update ruby-gettext o 2.2.1.
= Ruby-GetText-Package-2.2.1 (2012-05-20) * Supported non ASCII string in msgid. [GitHub#1] [Patch by Urban Hafner] * Stopped overriding String#% on Ruby 1.9. * Fixed a bug that "\" is too escaped. * Removed GetText.bindtext dependency from GetText::PoParser. * Ranamed GetText::MOFile to GetText::MoFile but GetText::MOFile is still available. Thanks to: * Urban Hafner
This commit is contained in:
parent
84f6c954bc
commit
c9d9c679ff
3 changed files with 21 additions and 13 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.12 2012/03/12 15:41:37 taca Exp $
|
||||
# $NetBSD: Makefile,v 1.13 2012/06/02 00:37:25 taca Exp $
|
||||
|
||||
DISTNAME= gettext-2.2.0
|
||||
DISTNAME= gettext-2.2.1
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.10 2012/03/12 15:41:37 taca Exp $
|
||||
@comment $NetBSD: PLIST,v 1.11 2012/06/02 00:37:25 taca Exp $
|
||||
bin/rgettext
|
||||
bin/rmsgfmt
|
||||
bin/rmsgmerge
|
||||
|
@ -664,8 +664,6 @@ ${GEM_LIBDIR}/samples/po/zh_TW/hello_noop.po
|
|||
${GEM_LIBDIR}/samples/po/zh_TW/hello_plural.po
|
||||
${GEM_LIBDIR}/samples/po/zh_TW/hello_tk.po
|
||||
${GEM_LIBDIR}/src/poparser.ry
|
||||
${GEM_LIBDIR}/test/README
|
||||
${GEM_LIBDIR}/test/Rakefile
|
||||
${GEM_LIBDIR}/test/locale/cr/LC_MESSAGES/plural.mo
|
||||
${GEM_LIBDIR}/test/locale/da/LC_MESSAGES/plural.mo
|
||||
${GEM_LIBDIR}/test/locale/da/LC_MESSAGES/plural_error.mo
|
||||
|
@ -674,6 +672,8 @@ ${GEM_LIBDIR}/test/locale/fr/LC_MESSAGES/plural_error.mo
|
|||
${GEM_LIBDIR}/test/locale/fr/LC_MESSAGES/test1.mo
|
||||
${GEM_LIBDIR}/test/locale/fr/LC_MESSAGES/test2.mo
|
||||
${GEM_LIBDIR}/test/locale/ir/LC_MESSAGES/plural.mo
|
||||
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/backslash.mo
|
||||
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/non_ascii.mo
|
||||
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/npgettext.mo
|
||||
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/nsgettext.mo
|
||||
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/pgettext.mo
|
||||
|
@ -698,6 +698,8 @@ ${GEM_LIBDIR}/test/po/fr/plural_error.po
|
|||
${GEM_LIBDIR}/test/po/fr/test1.po
|
||||
${GEM_LIBDIR}/test/po/fr/test2.po
|
||||
${GEM_LIBDIR}/test/po/ir/plural.po
|
||||
${GEM_LIBDIR}/test/po/ja/backslash.po
|
||||
${GEM_LIBDIR}/test/po/ja/non_ascii.po
|
||||
${GEM_LIBDIR}/test/po/ja/npgettext.po
|
||||
${GEM_LIBDIR}/test/po/ja/nsgettext.po
|
||||
${GEM_LIBDIR}/test/po/ja/pgettext.po
|
||||
|
@ -714,9 +716,17 @@ ${GEM_LIBDIR}/test/po/li/plural.po
|
|||
${GEM_LIBDIR}/test/po/li/plural_error.po
|
||||
${GEM_LIBDIR}/test/po/po/plural.po
|
||||
${GEM_LIBDIR}/test/po/sl/plural.po
|
||||
${GEM_LIBDIR}/test/pot/backslash.pot
|
||||
${GEM_LIBDIR}/test/pot/non_ascii.pot
|
||||
${GEM_LIBDIR}/test/pot/npgettext.pot
|
||||
${GEM_LIBDIR}/test/pot/nsgettext.pot
|
||||
${GEM_LIBDIR}/test/pot/pgettext.pot
|
||||
${GEM_LIBDIR}/test/pot/sgettext.pot
|
||||
${GEM_LIBDIR}/test/run-test.rb
|
||||
${GEM_LIBDIR}/test/test_class_info.rb
|
||||
${GEM_LIBDIR}/test/test_gettext.rb
|
||||
${GEM_LIBDIR}/test/test_locale_path.rb
|
||||
${GEM_LIBDIR}/test/test_mofile.rb
|
||||
${GEM_LIBDIR}/test/test_parser.rb
|
||||
${GEM_LIBDIR}/test/test_po_generation.rb
|
||||
${GEM_LIBDIR}/test/test_pomessage.rb
|
||||
|
@ -726,6 +736,7 @@ ${GEM_LIBDIR}/test/test_textdomain_multi.rb
|
|||
${GEM_LIBDIR}/test/test_textdomain_toplevel.rb
|
||||
${GEM_LIBDIR}/test/test_thread.rb
|
||||
${GEM_LIBDIR}/test/testlib/N_.rb
|
||||
${GEM_LIBDIR}/test/testlib/backslash.rb
|
||||
${GEM_LIBDIR}/test/testlib/erb.rhtml
|
||||
${GEM_LIBDIR}/test/testlib/erb.rxml
|
||||
${GEM_LIBDIR}/test/testlib/gettext.rb
|
||||
|
@ -733,6 +744,7 @@ ${GEM_LIBDIR}/test/testlib/gladeparser.glade
|
|||
${GEM_LIBDIR}/test/testlib/helper.rb
|
||||
${GEM_LIBDIR}/test/testlib/multi_textdomain.rb
|
||||
${GEM_LIBDIR}/test/testlib/ngettext.rb
|
||||
${GEM_LIBDIR}/test/testlib/non_ascii.rb
|
||||
${GEM_LIBDIR}/test/testlib/npgettext.rb
|
||||
${GEM_LIBDIR}/test/testlib/nsgettext.rb
|
||||
${GEM_LIBDIR}/test/testlib/pgettext.rb
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.9 2012/03/12 15:41:37 taca Exp $
|
||||
$NetBSD: distinfo,v 1.10 2012/06/02 00:37:25 taca Exp $
|
||||
|
||||
SHA1 (gettext-2.2.0.gem) = e946ac8dd750d3dc9c317950b1a4b683885c418b
|
||||
RMD160 (gettext-2.2.0.gem) = b244912f12c48df505b869e85d17dd040f31e2eb
|
||||
Size (gettext-2.2.0.gem) = 169472 bytes
|
||||
SHA1 (patch-aa) = 5415998d82d44f29893eb5d8247c61b882633e23
|
||||
SHA1 (patch-ac) = 7dc7eba8f176c69ef71d2537822e46a49d5c5773
|
||||
SHA1 (patch-ad) = e9b9c285945327a6b4e3f905e3b9c932f73453d6
|
||||
SHA1 (patch-ae) = 1f4fb087af927947ad138065103171934a7cd49c
|
||||
SHA1 (gettext-2.2.1.gem) = c089bd39531f2c77b0c995d16ea33220d4aead2d
|
||||
RMD160 (gettext-2.2.1.gem) = 3ec8fcedf8eeb57824280316e49d906ba99ad74d
|
||||
Size (gettext-2.2.1.gem) = 172032 bytes
|
||||
|
|
Loading…
Reference in a new issue