Advanced to version 1.30.
This commit is contained in:
parent
302d640305
commit
4ce25cc489
2
Build.PL
2
Build.PL
@ -4,7 +4,7 @@ use Module::Build;
|
|||||||
|
|
||||||
my $build = Module::Build->new(
|
my $build = Module::Build->new(
|
||||||
dist_name => "Locale-Maketext-Gettext",
|
dist_name => "Locale-Maketext-Gettext",
|
||||||
dist_version => "1.29",
|
dist_version => "1.30",
|
||||||
dist_abstract => "Joins gettext and Maketext frameworks",
|
dist_abstract => "Joins gettext and Maketext frameworks",
|
||||||
dist_author => "imacat <imacat\@mail.imacat.idv.tw>",
|
dist_author => "imacat <imacat\@mail.imacat.idv.tw>",
|
||||||
license => "perl",
|
license => "perl",
|
||||||
|
8
Changes
8
Changes
@ -1,5 +1,13 @@
|
|||||||
Locale-Maketext-Gettext change log
|
Locale-Maketext-Gettext change log
|
||||||
|
|
||||||
|
2019-09-17 version 1.30
|
||||||
|
Fix after 10 years.
|
||||||
|
1. 12-cache.t: Fixed so that it works on MS-Win32. I forgot to
|
||||||
|
issue binmode when copying the MO files.
|
||||||
|
2. 00-signature.t: Removed TEST_SIGNATURE, as this does not work
|
||||||
|
on everybody who does not have my GPG public key, but me.
|
||||||
|
3. 03-errors.t: Removed the debugging output.
|
||||||
|
|
||||||
2019-09-09 version 1.29
|
2019-09-09 version 1.29
|
||||||
Fix after 10 years.
|
Fix after 10 years.
|
||||||
1. Gettext.pm: Added support to purge the lexicon cache and
|
1. Gettext.pm: Added support to purge the lexicon cache and
|
||||||
|
36
META.json
36
META.json
@ -4,7 +4,7 @@
|
|||||||
"imacat <imacat@mail.imacat.idv.tw>"
|
"imacat <imacat@mail.imacat.idv.tw>"
|
||||||
],
|
],
|
||||||
"dynamic_config" : 1,
|
"dynamic_config" : 1,
|
||||||
"generated_by" : "Module::Build version 0.422",
|
"generated_by" : "ExtUtils::MakeMaker version 7.1002, CPAN::Meta::Converter version 2.150005",
|
||||||
"license" : [
|
"license" : [
|
||||||
"perl_5"
|
"perl_5"
|
||||||
],
|
],
|
||||||
@ -13,34 +13,28 @@
|
|||||||
"version" : "2"
|
"version" : "2"
|
||||||
},
|
},
|
||||||
"name" : "Locale-Maketext-Gettext",
|
"name" : "Locale-Maketext-Gettext",
|
||||||
|
"no_index" : {
|
||||||
|
"directory" : [
|
||||||
|
"t",
|
||||||
|
"inc"
|
||||||
|
]
|
||||||
|
},
|
||||||
"prereqs" : {
|
"prereqs" : {
|
||||||
|
"build" : {
|
||||||
|
"requires" : {
|
||||||
|
"ExtUtils::MakeMaker" : "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"configure" : {
|
"configure" : {
|
||||||
"requires" : {
|
"requires" : {
|
||||||
"Module::Build" : "0.42"
|
"ExtUtils::MakeMaker" : "0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtime" : {
|
"runtime" : {
|
||||||
"requires" : {
|
"requires" : {}
|
||||||
"perl" : "v5.8.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"provides" : {
|
|
||||||
"Locale::Maketext::Gettext" : {
|
|
||||||
"file" : "lib/Locale/Maketext/Gettext.pm",
|
|
||||||
"version" : "1.29"
|
|
||||||
},
|
|
||||||
"Locale::Maketext::Gettext::Functions" : {
|
|
||||||
"file" : "lib/Locale/Maketext/Gettext/Functions.pm",
|
|
||||||
"version" : "0.13"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"release_status" : "stable",
|
"release_status" : "stable",
|
||||||
"resources" : {
|
"version" : "1.30",
|
||||||
"license" : [
|
|
||||||
"http://dev.perl.org/licenses/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"version" : "1.29",
|
|
||||||
"x_serialization_backend" : "JSON::PP version 2.27300_01"
|
"x_serialization_backend" : "JSON::PP version 2.27300_01"
|
||||||
}
|
}
|
||||||
|
25
META.yml
25
META.yml
@ -2,26 +2,21 @@
|
|||||||
abstract: 'Joins gettext and Maketext frameworks'
|
abstract: 'Joins gettext and Maketext frameworks'
|
||||||
author:
|
author:
|
||||||
- 'imacat <imacat@mail.imacat.idv.tw>'
|
- 'imacat <imacat@mail.imacat.idv.tw>'
|
||||||
build_requires: {}
|
build_requires:
|
||||||
|
ExtUtils::MakeMaker: '0'
|
||||||
configure_requires:
|
configure_requires:
|
||||||
Module::Build: '0.42'
|
ExtUtils::MakeMaker: '0'
|
||||||
dynamic_config: 1
|
dynamic_config: 1
|
||||||
generated_by: 'Module::Build version 0.422, CPAN::Meta::Converter version 2.150005'
|
generated_by: 'ExtUtils::MakeMaker version 7.1002, CPAN::Meta::Converter version 2.150005'
|
||||||
license: perl
|
license: perl
|
||||||
meta-spec:
|
meta-spec:
|
||||||
url: http://module-build.sourceforge.net/META-spec-v1.4.html
|
url: http://module-build.sourceforge.net/META-spec-v1.4.html
|
||||||
version: '1.4'
|
version: '1.4'
|
||||||
name: Locale-Maketext-Gettext
|
name: Locale-Maketext-Gettext
|
||||||
provides:
|
no_index:
|
||||||
Locale::Maketext::Gettext:
|
directory:
|
||||||
file: lib/Locale/Maketext/Gettext.pm
|
- t
|
||||||
version: '1.29'
|
- inc
|
||||||
Locale::Maketext::Gettext::Functions:
|
requires: {}
|
||||||
file: lib/Locale/Maketext/Gettext/Functions.pm
|
version: '1.30'
|
||||||
version: '0.13'
|
|
||||||
requires:
|
|
||||||
perl: v5.8.0
|
|
||||||
resources:
|
|
||||||
license: http://dev.perl.org/licenses/
|
|
||||||
version: '1.29'
|
|
||||||
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
|
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
|
||||||
|
@ -12,7 +12,7 @@ $eummver =~ s/_//;
|
|||||||
|
|
||||||
WriteMakefile(
|
WriteMakefile(
|
||||||
NAME => "Locale-Maketext-Gettext",
|
NAME => "Locale-Maketext-Gettext",
|
||||||
VERSION => "1.29",
|
VERSION => "1.30",
|
||||||
ABSTRACT => "Joins gettext and Maketext frameworks",
|
ABSTRACT => "Joins gettext and Maketext frameworks",
|
||||||
AUTHOR => "imacat <imacat\@mail.imacat.idv.tw>",
|
AUTHOR => "imacat <imacat\@mail.imacat.idv.tw>",
|
||||||
%license,
|
%license,
|
||||||
|
18
SIGNATURE
18
SIGNATURE
@ -16,18 +16,18 @@ Hash: SHA1
|
|||||||
|
|
||||||
SHA1 be0627fff2e8aef3d2a14d5d7486babc8a4873ba Artistic
|
SHA1 be0627fff2e8aef3d2a14d5d7486babc8a4873ba Artistic
|
||||||
SHA1 f044bfe71c57b6f25c659bc0a6067aa854bc8343 BUGS
|
SHA1 f044bfe71c57b6f25c659bc0a6067aa854bc8343 BUGS
|
||||||
SHA1 b90670f4f18c5fc6f31a54cfc70cc1768f78231c Build.PL
|
SHA1 3a6b06abecc4014d03f93aef9ba3d7844f347015 Build.PL
|
||||||
SHA1 8624bcdae55baeef00cd11d5dfcfa60f68710a02 COPYING
|
SHA1 8624bcdae55baeef00cd11d5dfcfa60f68710a02 COPYING
|
||||||
SHA1 52e62d6d9ecb0a0bcf6415b47dac732d08bef2b7 Changes
|
SHA1 8c73bc41a89b871228690905237f623cb0441914 Changes
|
||||||
SHA1 db0a35525a84c33ed78ab4f59df93b20fa31c8cf INSTALL
|
SHA1 db0a35525a84c33ed78ab4f59df93b20fa31c8cf INSTALL
|
||||||
SHA1 c3d0ffec086f8f4b993ca18d13e245cd8bd0897e MANIFEST
|
SHA1 c3d0ffec086f8f4b993ca18d13e245cd8bd0897e MANIFEST
|
||||||
SHA1 e92ba33ca5de51688c225ade02d547c60ccc773c META.json
|
SHA1 a49b0303abb2d3713f8cd63575dfa78b47e74c24 META.json
|
||||||
SHA1 98494a81340535c15b51d135641f5e19995048af META.yml
|
SHA1 d2f49e6aec4739c0645708880e0c317faf823a74 META.yml
|
||||||
SHA1 9f6cc97aaa34f3e33968fd6c0a5c470d1b43b8e9 Makefile.PL
|
SHA1 c74edd007cc28a2e9cea45b209b64fbb3e919749 Makefile.PL
|
||||||
SHA1 d9b790a6c16c3ed5be90396ec345fc18b6964e3a README
|
SHA1 d9b790a6c16c3ed5be90396ec345fc18b6964e3a README
|
||||||
SHA1 3db402b52e04cf5a6e60291c23aac8c16f2db810 THANKS
|
SHA1 3db402b52e04cf5a6e60291c23aac8c16f2db810 THANKS
|
||||||
SHA1 85dd5ac895cc0a5b95827060999578d8ce8d41dd TODO
|
SHA1 85dd5ac895cc0a5b95827060999578d8ce8d41dd TODO
|
||||||
SHA1 45c670256cc3918914ef5007f066a8c91f471190 lib/Locale/Maketext/Gettext.pm
|
SHA1 659e822f5846550c1634eed3c737c454605db96d lib/Locale/Maketext/Gettext.pm
|
||||||
SHA1 b88b6bad1e8cb0ba825594c233c006c1b297646f lib/Locale/Maketext/Gettext/Functions.pm
|
SHA1 b88b6bad1e8cb0ba825594c233c006c1b297646f lib/Locale/Maketext/Gettext/Functions.pm
|
||||||
SHA1 f89afd70fdcbaeeab44fada7ed3087d5c7f6f018 script/maketext
|
SHA1 f89afd70fdcbaeeab44fada7ed3087d5c7f6f018 script/maketext
|
||||||
SHA1 7f2e13f5f6a798d52ea897d24d07b49af4039341 t/00-signature.t
|
SHA1 7f2e13f5f6a798d52ea897d24d07b49af4039341 t/00-signature.t
|
||||||
@ -60,7 +60,7 @@ SHA1 20f810c6229d0bd4064b27f9b3d86b61a20f0821 t/locale/zh_TW/LC_MESSAGES/test_be
|
|||||||
SHA1 eb13887b005e3c3e9fab774dfea22de5c01ad1ef t/locale/zh_TW/LC_MESSAGES/test_utf8.mo
|
SHA1 eb13887b005e3c3e9fab774dfea22de5c01ad1ef t/locale/zh_TW/LC_MESSAGES/test_utf8.mo
|
||||||
-----BEGIN PGP SIGNATURE-----
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
iF0EARECAB0WIQSBin4eTeP7OclnnAOL2C5vMLlLXAUCXX+/7AAKCRCL2C5vMLlL
|
iF0EARECAB0WIQSBin4eTeP7OclnnAOL2C5vMLlLXAUCXX/B1QAKCRCL2C5vMLlL
|
||||||
XOn5AJ4yKPYyqQlsFyXS5bY+AysOOVM9pACfecpTcJVKt8HmaveYeL9Mq+u/cbA=
|
XJnyAJ9cZyEzYRhZLyhvznz8dNsRw9I+8wCeLD6iHk5ji4KuH5OlMz2ysE5Bqyk=
|
||||||
=k8Bb
|
=Hpbp
|
||||||
-----END PGP SIGNATURE-----
|
-----END PGP SIGNATURE-----
|
||||||
|
@ -11,7 +11,7 @@ use strict;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use base qw(Locale::Maketext Exporter);
|
use base qw(Locale::Maketext Exporter);
|
||||||
use vars qw($VERSION @ISA %Lexicon @EXPORT @EXPORT_OK);
|
use vars qw($VERSION @ISA %Lexicon @EXPORT @EXPORT_OK);
|
||||||
$VERSION = 1.29;
|
$VERSION = 1.30;
|
||||||
@EXPORT = qw(read_mo);
|
@EXPORT = qw(read_mo);
|
||||||
@EXPORT_OK = @EXPORT;
|
@EXPORT_OK = @EXPORT;
|
||||||
# Prototype declaration
|
# Prototype declaration
|
||||||
|
Loading…
Reference in New Issue
Block a user