Projects
openEuler:Mainline
perl-YAML-Tiny
Sign Up
Log In
Username
Password
We truncated the diff of some files because they were too big. If you want to see the full diff for every file,
click here
.
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 4
View file
_service:tar_scm:perl-YAML-Tiny.spec
Changed
@@ -1,7 +1,7 @@ %{bcond_with perl_YAML_Tiny_enables_JSON_MaybeX_test} Name: perl-YAML-Tiny -Version: 1.73 -Release: 4 +Version: 1.74 +Release: 1 Summary: Read/Write YAML files with as little code as possible License: GPL+ or Artistic URL: https://metacpan.org/release/YAML-Tiny @@ -56,5 +56,8 @@ %{_mandir}/man3/YAML::Tiny.3* %changelog +* Thu Jun 15 2023 wulei <wu_lei@hoperun.com> - 1.74-1 +- Update to 1.74 + * Wed Nov 20 2019 yangjian<yangjian79@huawei.com> - 1.73-4 - Package init
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/lib
Deleted
-(directory)
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/t/tml-local
Deleted
-(directory)
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/xt
Deleted
-(directory)
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/xt/release/distmeta.t
Deleted
@@ -1,6 +0,0 @@ -#!perl -# This file was automatically generated by Dist::Zilla::Plugin::MetaTests. - -use Test::CPAN::Meta; - -meta_yaml_ok();
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/xt/release/minimum-version.t
Deleted
@@ -1,8 +0,0 @@ -#!perl - -use Test::More; - -eval "use Test::MinimumVersion"; -plan skip_all => "Test::MinimumVersion required for testing minimum versions" - if $@; -all_minimum_version_ok( qq{5.008001} );
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/CONTRIBUTING -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/CONTRIBUTING
Changed
@@ -21,8 +21,8 @@ $ prove -lv t/some_test_file.t $ prove -lvr t/ -In most cases, 'prove' is entirely sufficient for you to test any -patches you have. +In most cases, 'prove' is entirely sufficient for you to test any patches you +have. You may need to satisfy some dependencies. The easiest way to satisfy dependencies is to install the last release -- this is available at @@ -72,13 +72,22 @@ You can learn more about Dist::Zilla at http://dzil.org/. The code for this distribution is hosted at GitHub. The repository is: + https://github.com/Perl-Toolchain-Gang/YAML-Tiny + You can submit code changes by forking the repository, pushing your code -changes to your clone, and then submitting a pull request. Detailed -instructions for doing that is available here: +changes to your clone, and then submitting a pull request. Please include a +suitable end-user-oriented entry in the Changes file describing your change. +Detailed instructions for doing that is available here: https://help.github.com/articles/creating-a-pull-request +All pull requests for this distribution will be automatically tested on Linux +by Travis at: https://travis-ci.com/Perl-Toolchain-Gang/YAML-Tiny +Results will be visible in the pull request on GitHub. Follow the appropriate +links for details when tests fail. Changes will not be mergeable until all +tests pass. + If you have found a bug, but do not have an accompanying patch to fix it, you can submit an issue report here: https://rt.cpan.org/Public/Dist/Display.html?Name=YAML-Tiny @@ -94,5 +103,5 @@ request to the .mailmap file to contain the correct mapping. -This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.013 from a -template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.133. +This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.015 +from a template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.162.
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/Changes -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/Changes
Changed
@@ -1,5 +1,11 @@ Revision history for YAML-Tiny +1.74 2023-03-23 03:19:08Z + + FIXED + + - a few documentation tweaks (thanks, Giovanni Los and Richlv!) + 1.73 2018-02-21 21:07:59Z - shipping 1.72 as stable, with no changes.
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/INSTALL -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/INSTALL
Changed
@@ -21,8 +21,11 @@ ## Manual installation -As a last resort, you can manually install it. Download the tarball, untar it, -then build it: +As a last resort, you can manually install it. If you have not already +downloaded the release tarball, you can find the download link on the module's +MetaCPAN page: https://metacpan.org/pod/YAML::Tiny + +Untar the tarball, install configure prerequisites (see below), then build it: % perl Makefile.PL % make && make test @@ -31,13 +34,42 @@ % make install +On Windows platforms, you should use `dmake` or `nmake`, instead of `make`. + If your perl is system-managed, you can create a local::lib in your home directory to install modules to. For details, see the local::lib documentation: https://metacpan.org/pod/local::lib +The prerequisites of this distribution will also have to be installed manually. The +prerequisites are listed in one of the files: `MYMETA.yml` or `MYMETA.json` generated +by running the manual build process described above. + +## Configure Prerequisites + +This distribution requires other modules to be installed before this +distribution's installer can be run. They can be found under the +"configure_requires" key of META.yml or the +"{prereqs}{configure}{requires}" key of META.json. + +## Other Prerequisites + +This distribution may require additional modules to be installed after running +Makefile.PL. +Look for prerequisites in the following phases: + +* to run make, PHASE = build +* to use the module code itself, PHASE = runtime +* to run tests, PHASE = test + +They can all be found in the "PHASE_requires" key of MYMETA.yml or the +"{prereqs}{PHASE}{requires}" key of MYMETA.json. + ## Documentation YAML-Tiny documentation is available as POD. -You can run perldoc from a shell to read the documentation: +You can run `perldoc` from a shell to read the documentation: % perldoc YAML::Tiny + +For more information on installing Perl modules via CPAN, please see: +https://www.cpan.org/modules/INSTALL.html
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/LICENSE -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/LICENSE
Changed
@@ -292,21 +292,21 @@ - "Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through - textual modification. + textual modification. - "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright - Holder. + Holder. - "Copyright Holder" is whoever is named in the copyright or copyrights for - the package. + the package. - "You" is you, if you're thinking about copying or distributing this Package. - "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the - computing community at large as a market that must bear the fee.) + computing community at large as a market that must bear the fee.) - "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they - received it. + received it. 1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you @@ -373,7 +373,7 @@ 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. The End
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/MANIFEST -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/MANIFEST
Changed
@@ -1,4 +1,4 @@ -# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.011. +# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.030. CONTRIBUTING Changes INSTALL @@ -65,8 +65,10 @@ t/tml-world/yaml_org.tml xt/author/00-compile.t xt/author/clean-namespaces.t +xt/author/distmeta.t xt/author/eol.t xt/author/kwalitee.t +xt/author/minimum-version.t xt/author/mojibake.t xt/author/no-tabs.t xt/author/pod-coverage.t @@ -77,5 +79,3 @@ xt/lib/ExtraTest.pm xt/release/changes_has_content.t xt/release/cpan-changes.t -xt/release/distmeta.t -xt/release/minimum-version.t
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/META.json -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/META.json
Changed
@@ -4,7 +4,7 @@ "Adam Kennedy <adamk@cpan.org>" , "dynamic_config" : 0, - "generated_by" : "Dist::Zilla version 6.011, CPAN::Meta::Converter version 2.150010", + "generated_by" : "Dist::Zilla version 6.030, CPAN::Meta::Converter version 2.150010", "keywords" : "YAML", "markup", @@ -40,8 +40,8 @@ }, "develop" : { "recommends" : { - "Dist::Zilla::PluginBundle::Author::ETHER" : "0.133", - "Dist::Zilla::PluginBundle::Git::VersionManager" : "0.005" + "Dist::Zilla::PluginBundle::Author::ETHER" : "0.162", + "Dist::Zilla::PluginBundle::Git::VersionManager" : "0.007" }, "requires" : { "Encode" : "0", @@ -100,6 +100,7 @@ "Test::More" : "0.88", "base" : "0", "lib" : "0", + "open" : "0", "perl" : "5.008001", "utf8" : "0", "vars" : "0" @@ -160,7 +161,7 @@ "Dist::Zilla::Plugin::PromptIfStale" : "0", "Dist::Zilla::Plugin::Readme" : "0", "Dist::Zilla::Plugin::ReadmeAnyFromPod" : "0.142180", - "Dist::Zilla::Plugin::RewriteVersion::Transitional" : "0.004", + "Dist::Zilla::Plugin::RewriteVersion::Transitional" : "0.006", "Dist::Zilla::Plugin::Run::AfterBuild" : "0.041", "Dist::Zilla::Plugin::Run::AfterRelease" : "0.038", "Dist::Zilla::Plugin::RunExtraTests" : "0.024", @@ -171,7 +172,7 @@ "Dist::Zilla::Plugin::Test::Compile" : "2.039", "Dist::Zilla::Plugin::Test::EOL" : "0.17", "Dist::Zilla::Plugin::Test::Kwalitee" : "2.10", - "Dist::Zilla::Plugin::Test::MinimumVersion" : "2.000003", + "Dist::Zilla::Plugin::Test::MinimumVersion" : "2.000010", "Dist::Zilla::Plugin::Test::NoTabs" : "0.08", "Dist::Zilla::Plugin::Test::PodSpelling" : "2.006003", "Dist::Zilla::Plugin::Test::Portability" : "2.000007", @@ -179,8 +180,8 @@ "Dist::Zilla::Plugin::TestRelease" : "0", "Dist::Zilla::Plugin::UploadToCPAN" : "0", "Dist::Zilla::Plugin::UseUnsafeInc" : "0", - "Dist::Zilla::PluginBundle::Author::ETHER" : "0.119", - "Dist::Zilla::PluginBundle::Git::VersionManager" : "0", + "Dist::Zilla::PluginBundle::Author::ETHER" : "0.151", + "Dist::Zilla::PluginBundle::Git::VersionManager" : "0.007", "Software::License::Perl_5" : "0" } } @@ -188,7 +189,7 @@ "provides" : { "YAML::Tiny" : { "file" : "lib/YAML/Tiny.pm", - "version" : "1.73" + "version" : "1.74" } }, "release_status" : "stable", @@ -205,16 +206,16 @@ }, "x_IRC" : "irc://irc.perl.org/#yaml" }, - "version" : "1.73", + "version" : "1.74", "x_Dist_Zilla" : { "perl" : { - "version" : "5.027008" + "version" : "5.037009" }, "plugins" : { "class" : "Dist::Zilla::Plugin::PodVersion", "name" : "PodVersion", - "version" : "6.011" + "version" : "6.030" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -225,7 +226,7 @@ } }, "name" : "@Author::ETHER/pluginbundle version", - "version" : "6.011" + "version" : "6.030" }, { "class" : "Dist::Zilla::Plugin::PromptIfStale", @@ -242,27 +243,12 @@ } }, "name" : "@Author::ETHER/stale modules, build", - "version" : "0.054" - }, - { - "class" : "Dist::Zilla::Plugin::PromptIfStale", - "config" : { - "Dist::Zilla::Plugin::PromptIfStale" : { - "check_all_plugins" : 1, - "check_all_prereqs" : 1, - "modules" : , - "phase" : "release", - "run_under_travis" : 0, - "skip" : - } - }, - "name" : "@Author::ETHER/stale modules, release", - "version" : "0.054" + "version" : "0.057" }, { "class" : "Dist::Zilla::Plugin::FileFinder::ByName", "name" : "@Author::ETHER/Examples", - "version" : "6.011" + "version" : "6.030" }, { "class" : "Dist::Zilla::Plugin::Git::GatherDir", @@ -286,32 +272,32 @@ } }, "name" : "@Author::ETHER/Git::GatherDir", - "version" : "2.043" + "version" : "2.048" }, { "class" : "Dist::Zilla::Plugin::MetaYAML", "name" : "@Author::ETHER/MetaYAML", - "version" : "6.011" + "version" : "6.030" }, { "class" : "Dist::Zilla::Plugin::MetaJSON", "name" : "@Author::ETHER/MetaJSON", - "version" : "6.011" + "version" : "6.030" }, { "class" : "Dist::Zilla::Plugin::Readme", "name" : "@Author::ETHER/Readme", - "version" : "6.011" + "version" : "6.030" }, { "class" : "Dist::Zilla::Plugin::Manifest", "name" : "@Author::ETHER/Manifest", - "version" : "6.011" + "version" : "6.030" }, { "class" : "Dist::Zilla::Plugin::License", "name" : "@Author::ETHER/License", - "version" : "6.011" + "version" : "6.030" }, { "class" : "Dist::Zilla::Plugin::GenerateFile::FromShareDir", @@ -327,16 +313,22 @@ "Dist::Zilla::Role::RepoFileInjector" : { "allow_overwrite" : 1, "repo_root" : ".", - "version" : "0.007" + "version" : "0.009" } }, "name" : "@Author::ETHER/generate CONTRIBUTING", - "version" : "0.013" + "version" : "0.015" }, { "class" : "Dist::Zilla::Plugin::InstallGuide", + "config" : { + "Dist::Zilla::Role::ModuleMetadata" : { + "Module::Metadata" : "1.000037", + "version" : "0.006" + } + }, "name" : "@Author::ETHER/InstallGuide", - "version" : "1.200007" + "version" : "1.200014" }, { "class" : "Dist::Zilla::Plugin::Test::Compile", @@ -400,7 +392,7 @@ { "class" : "Dist::Zilla::Plugin::MetaTests", "name" : "@Author::ETHER/MetaTests", - "version" : "6.011" + "version" : "6.030" }, { "class" : "Dist::Zilla::Plugin::Test::CPAN::Changes", @@ -419,18 +411,23 @@
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/META.yml -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/META.yml
Changed
@@ -16,6 +16,7 @@ Test::More: '0.88' base: '0' lib: '0' + open: '0' perl: '5.008001' utf8: '0' vars: '0' @@ -23,7 +24,7 @@ ExtUtils::MakeMaker: '0' perl: '5.008001' dynamic_config: 0 -generated_by: 'Dist::Zilla version 6.011, CPAN::Meta::Converter version 2.150010' +generated_by: 'Dist::Zilla version 6.030, CPAN::Meta::Converter version 2.150010' keywords: - YAML - markup @@ -44,7 +45,7 @@ provides: YAML::Tiny: file: lib/YAML/Tiny.pm - version: '1.73' + version: '1.74' requires: B: '0' Carp: '0' @@ -59,15 +60,15 @@ bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=YAML-Tiny homepage: https://github.com/Perl-Toolchain-Gang/YAML-Tiny repository: https://github.com/Perl-Toolchain-Gang/YAML-Tiny.git -version: '1.73' +version: '1.74' x_Dist_Zilla: perl: - version: '5.027008' + version: '5.037009' plugins: - class: Dist::Zilla::Plugin::PodVersion name: PodVersion - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::Prereqs config: @@ -75,7 +76,7 @@ phase: develop type: recommends name: '@Author::ETHER/pluginbundle version' - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::PromptIfStale config: @@ -88,23 +89,11 @@ run_under_travis: 0 skip: name: '@Author::ETHER/stale modules, build' - version: '0.054' - - - class: Dist::Zilla::Plugin::PromptIfStale - config: - Dist::Zilla::Plugin::PromptIfStale: - check_all_plugins: 1 - check_all_prereqs: 1 - modules: - phase: release - run_under_travis: 0 - skip: - name: '@Author::ETHER/stale modules, release' - version: '0.054' + version: '0.057' - class: Dist::Zilla::Plugin::FileFinder::ByName name: '@Author::ETHER/Examples' - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::Git::GatherDir config: @@ -123,27 +112,27 @@ Dist::Zilla::Plugin::Git::GatherDir: include_untracked: 0 name: '@Author::ETHER/Git::GatherDir' - version: '2.043' + version: '2.048' - class: Dist::Zilla::Plugin::MetaYAML name: '@Author::ETHER/MetaYAML' - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::MetaJSON name: '@Author::ETHER/MetaJSON' - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::Readme name: '@Author::ETHER/Readme' - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::Manifest name: '@Author::ETHER/Manifest' - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::License name: '@Author::ETHER/License' - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::GenerateFile::FromShareDir config: @@ -157,18 +146,22 @@ Dist::Zilla::Role::RepoFileInjector: allow_overwrite: 1 repo_root: . - version: '0.007' + version: '0.009' name: '@Author::ETHER/generate CONTRIBUTING' - version: '0.013' + version: '0.015' - class: Dist::Zilla::Plugin::InstallGuide + config: + Dist::Zilla::Role::ModuleMetadata: + Module::Metadata: '1.000037' + version: '0.006' name: '@Author::ETHER/InstallGuide' - version: '1.200007' + version: '1.200014' - class: Dist::Zilla::Plugin::Test::Compile config: Dist::Zilla::Plugin::Test::Compile: - bail_out_on_fail: '1' + bail_out_on_fail: 1 fail_on_warning: author fake_home: 0 filename: xt/author/00-compile.t @@ -213,7 +206,7 @@ - class: Dist::Zilla::Plugin::MetaTests name: '@Author::ETHER/MetaTests' - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::Test::CPAN::Changes config: @@ -227,16 +220,19 @@ version: '0.011' - class: Dist::Zilla::Plugin::Test::MinimumVersion + config: + Dist::Zilla::Plugin::Test::MinimumVersion: + max_target_perl: '5.008001' name: '@Author::ETHER/Test::MinimumVersion' - version: '2.000007' + version: '2.000010' - class: Dist::Zilla::Plugin::PodSyntaxTests name: '@Author::ETHER/PodSyntaxTests' - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::PodCoverageTests name: '@Author::ETHER/PodCoverageTests' - version: '6.011' + version: '6.030' - class: Dist::Zilla::Plugin::Test::PodSpelling config: @@ -268,14 +264,14 @@ - class: Dist::Zilla::Plugin::Test::ReportPrereqs name: '@Author::ETHER/Test::ReportPrereqs' - version: '0.027' + version: '0.029' - class: Dist::Zilla::Plugin::Test::Portability config: Dist::Zilla::Plugin::Test::Portability: options: '' name: '@Author::ETHER/Test::Portability' - version: '2.001000' + version: '2.001001' - class: Dist::Zilla::Plugin::Test::CleanNamespaces config: @@ -287,11 +283,11 @@ - class: Dist::Zilla::Plugin::Git::Describe name: '@Author::ETHER/Git::Describe' - version: '0.007' + version: '0.008' - class: Dist::Zilla::Plugin::GithubMeta name: '@Author::ETHER/GithubMeta' - version: '0.54'
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/Makefile.PL -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/Makefile.PL
Changed
@@ -1,4 +1,4 @@ -# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.011. +# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.030. use strict; use warnings; @@ -39,10 +39,11 @@ "Test::More" => "0.88", "base" => 0, "lib" => 0, + "open" => 0, "utf8" => 0, "vars" => 0 }, - "VERSION" => "1.73", + "VERSION" => "1.74", "test" => { "TESTS" => "t/*.t" } @@ -68,6 +69,7 @@ "Test::More" => "0.88", "base" => 0, "lib" => 0, + "open" => 0, "strict" => 0, "utf8" => 0, "vars" => 0,
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/README -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/README
Changed
@@ -1,5 +1,5 @@ This archive contains the distribution YAML-Tiny, -version 1.73: +version 1.74: Read/Write YAML files with as little code as possible @@ -9,4 +9,4 @@ the same terms as the Perl 5 programming language system itself. -This README file was generated by Dist::Zilla::Plugin::Readme v6.011. +This README file was generated by Dist::Zilla::Plugin::Readme v6.030.
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/dist.ini -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/dist.ini
Changed
@@ -10,11 +10,11 @@ ; version is determined from lib/YAML/Tiny.pm and is bumped automatically ; after each release @Author::ETHER -:version = 0.119 +:version = 0.151 installer = MakeMaker changes_version_columns = 8 -remove = PodWeaver -Authority.authority = cpan:ADAMK +authority = cpan:ADAMK Test::MinimumVersion.max_target_perl = 5.008001 Keywords.keywords = YAML markup language serializer serialiser string data -remove = Test::Pod::No404s ; RIP use.perl.org
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/lib/YAML/Tiny.pm -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/lib/YAML/Tiny.pm
Changed
@@ -1,12 +1,12 @@ use 5.008001; # sane UTF-8 support use strict; use warnings; -package YAML::Tiny; # git description: v1.72-7-g8682f63 +package YAML::Tiny; # git description: v1.73-12-ge02f827 # XXX-INGY is 5.8.1 too old/broken for utf8? # XXX-XDG Lancaster consensus was that it was sufficient until # proven otherwise -our $VERSION = '1.73'; +our $VERSION = '1.74'; ##################################################################### # The YAML::Tiny API. @@ -876,7 +876,7 @@ =head1 VERSION -version 1.73 +version 1.74 =head1 PREAMBLE @@ -895,7 +895,7 @@ does not require a compiler to install, is back-compatible to Perl v5.8.1, and can be inlined into other modules if needed. -In exchange for this adding this extreme flexibility, it provides support +In exchange for adding this extreme flexibility, it provides support for only a limited subset of YAML. But the subset supported contains most of the features for the more common uses of YAML. @@ -1361,8 +1361,8 @@ Support for the document boundary market "..." is B<not> required. -If necessary, a document boundary should simply by indicated with a -"---" marker, with not preceding "..." marker. +If necessary, a document boundary should simply be indicated with a +"---" marker, with no preceding "..." marker. Support for empty streams (containing no documents) is required.
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/t/00-report-prereqs.dd -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/t/00-report-prereqs.dd
Changed
@@ -10,8 +10,8 @@ }, 'develop' => { 'recommends' => { - 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.133', - 'Dist::Zilla::PluginBundle::Git::VersionManager' => '0.005' + 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.162', + 'Dist::Zilla::PluginBundle::Git::VersionManager' => '0.007' }, 'requires' => { 'Encode' => '0', @@ -70,6 +70,7 @@ 'Test::More' => '0.88', 'base' => '0', 'lib' => '0', + 'open' => '0', 'perl' => '5.008001', 'utf8' => '0', 'vars' => '0' @@ -130,7 +131,7 @@ 'Dist::Zilla::Plugin::PromptIfStale' => '0', 'Dist::Zilla::Plugin::Readme' => '0', 'Dist::Zilla::Plugin::ReadmeAnyFromPod' => '0.142180', - 'Dist::Zilla::Plugin::RewriteVersion::Transitional' => '0.004', + 'Dist::Zilla::Plugin::RewriteVersion::Transitional' => '0.006', 'Dist::Zilla::Plugin::Run::AfterBuild' => '0.041', 'Dist::Zilla::Plugin::Run::AfterRelease' => '0.038', 'Dist::Zilla::Plugin::RunExtraTests' => '0.024', @@ -141,7 +142,7 @@ 'Dist::Zilla::Plugin::Test::Compile' => '2.039', 'Dist::Zilla::Plugin::Test::EOL' => '0.17', 'Dist::Zilla::Plugin::Test::Kwalitee' => '2.10', - 'Dist::Zilla::Plugin::Test::MinimumVersion' => '2.000003', + 'Dist::Zilla::Plugin::Test::MinimumVersion' => '2.000010', 'Dist::Zilla::Plugin::Test::NoTabs' => '0.08', 'Dist::Zilla::Plugin::Test::PodSpelling' => '2.006003', 'Dist::Zilla::Plugin::Test::Portability' => '2.000007', @@ -149,8 +150,8 @@ 'Dist::Zilla::Plugin::TestRelease' => '0', 'Dist::Zilla::Plugin::UploadToCPAN' => '0', 'Dist::Zilla::Plugin::UseUnsafeInc' => '0', - 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.119', - 'Dist::Zilla::PluginBundle::Git::VersionManager' => '0', + 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.151', + 'Dist::Zilla::PluginBundle::Git::VersionManager' => '0.007', 'Software::License::Perl_5' => '0' } }
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/t/00-report-prereqs.t -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/t/00-report-prereqs.t
Changed
@@ -3,7 +3,7 @@ use strict; use warnings; -# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.027 +# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.029 use Test::More tests => 1; @@ -60,7 +60,10 @@ } my @include = qw( + Encode + File::Temp JSON::PP + Module::Runtime Pod::Coverage Sub::Name YAML @@ -113,20 +116,24 @@ my @reports = qw/Module Want Have/; for my $mod ( sort keys %{ $req_hash->{$phase}{$type} } ) { - next if $mod eq 'perl'; next if grep { $_ eq $mod } @exclude; - my $file = $mod; - $file =~ s{::}{/}g; - $file .= ".pm"; - my ($prefix) = grep { -e File::Spec->catfile($_, $file) } @INC; - my $want = $req_hash->{$phase}{$type}{$mod}; $want = "undef" unless defined $want; $want = "any" if !$want && $want == 0; + if ($mod eq 'perl') { + push @reports, 'perl', $want, $; + next; + } + my $req_string = $want eq 'any' ? 'any version required' : "version '$want' required"; + my $file = $mod; + $file =~ s{::}{/}g; + $file .= ".pm"; + my ($prefix) = grep { -e File::Spec->catfile($_, $file) } @INC; + if ($prefix) { my $have = MM->parse_version( File::Spec->catfile($prefix, $file) ); $have = "undef" unless defined $have; @@ -192,6 +199,6 @@ ); } -pass; +pass('Reported prereqs'); # vim: ts=4 sts=4 sw=4 et:
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/t/lib/TestBridge.pm -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/t/lib/TestBridge.pm
Changed
@@ -3,17 +3,12 @@ use strict; use warnings; use lib 't/lib'; +use open ':std', ':encoding(UTF-8)'; # force stdin, stdout, stderr into utf8 use Test::More 0.88; use SubtestCompat; use TestUtils; use TestML::Tiny; -BEGIN { - $| = 1; - binmode(Test::More->builder->$_, ":utf8") - for qw/output failure_output todo_output/; -} - use YAML::Tiny; use Exporter ();
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/t/lib/TestML/Tiny.pm -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/t/lib/TestML/Tiny.pm
Changed
@@ -66,6 +66,9 @@ #------------------------------------------------------------------------------ =comment + +=for :stopwords TestML + ::Runtime -- Run a TestML Function The TestML Code and Data get compiled into a Function, and the Function is run @@ -93,7 +96,7 @@ ::Compiler -- Turn a TestML document into a runnable TestML Function. A TestML "document" is comprised of 3 main parts: Meta, Code, Data. This -information often is in a single TestML (.tml) file or string, but it doesn't +information often is in a single TestML (F<.tml>) file or string, but it doesn't need to be. The information can come from anywhere and be in any form that is supported; it just must all be present when it is needed.
View file
_service:tar_scm:YAML-Tiny-1.74.tar.gz/xt/author/distmeta.t
Added
@@ -0,0 +1,7 @@ +#!perl +# This file was automatically generated by Dist::Zilla::Plugin::MetaTests. +use strict; +use warnings; +use Test::CPAN::Meta; + +meta_yaml_ok();
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/xt/author/eol.t -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/xt/author/eol.t
Changed
@@ -29,8 +29,10 @@ 't/tml', 'xt/author/00-compile.t', 'xt/author/clean-namespaces.t', + 'xt/author/distmeta.t', 'xt/author/eol.t', 'xt/author/kwalitee.t', + 'xt/author/minimum-version.t', 'xt/author/mojibake.t', 'xt/author/no-tabs.t', 'xt/author/pod-coverage.t', @@ -40,9 +42,7 @@ 'xt/compare/roundtrip.t', 'xt/lib/ExtraTest.pm', 'xt/release/changes_has_content.t', - 'xt/release/cpan-changes.t', - 'xt/release/distmeta.t', - 'xt/release/minimum-version.t' + 'xt/release/cpan-changes.t' ); eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files;
View file
_service:tar_scm:YAML-Tiny-1.74.tar.gz/xt/author/minimum-version.t
Added
@@ -0,0 +1,6 @@ +use strict; +use warnings; + +use Test::More; +use Test::MinimumVersion; +all_minimum_version_ok( qq{5.008001} );
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/xt/author/no-tabs.t -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/xt/author/no-tabs.t
Changed
@@ -29,8 +29,10 @@ 't/tml', 'xt/author/00-compile.t', 'xt/author/clean-namespaces.t', + 'xt/author/distmeta.t', 'xt/author/eol.t', 'xt/author/kwalitee.t', + 'xt/author/minimum-version.t', 'xt/author/mojibake.t', 'xt/author/no-tabs.t', 'xt/author/pod-coverage.t', @@ -40,9 +42,7 @@ 'xt/compare/roundtrip.t', 'xt/lib/ExtraTest.pm', 'xt/release/changes_has_content.t', - 'xt/release/cpan-changes.t', - 'xt/release/distmeta.t', - 'xt/release/minimum-version.t' + 'xt/release/cpan-changes.t' ); notabs_ok($_) foreach @files;
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/xt/author/pod-coverage.t -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/xt/author/pod-coverage.t
Changed
@@ -1,6 +1,7 @@ #!perl # This file was automatically generated by Dist::Zilla::Plugin::PodCoverageTests. - +use strict; +use warnings; use Test::Pod::Coverage 1.08; use Pod::Coverage::TrustPod;
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/xt/author/pod-spell.t -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/xt/author/pod-spell.t
Changed
@@ -38,6 +38,7 @@ Olivier Poletti Rezic +Richlv Slaven Steffen Tim @@ -60,6 +61,7 @@ lib neil nothingmuch +richlv slaven smueller xdg
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/xt/author/portability.t -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/xt/author/portability.t
Changed
@@ -3,8 +3,6 @@ use Test::More; -eval 'use Test::Portability::Files'; -plan skip_all => 'Test::Portability::Files required for testing portability' - if $@; +use Test::Portability::Files; run_tests();
View file
_service:tar_scm:YAML-Tiny-1.73.tar.gz/xt/release/changes_has_content.t -> _service:tar_scm:YAML-Tiny-1.74.tar.gz/xt/release/changes_has_content.t
Changed
@@ -2,7 +2,7 @@ note 'Checking Changes'; my $changes_file = 'Changes'; -my $newver = '1.73'; +my $newver = '1.74'; my $trial_token = '-TRIAL'; my $encoding = 'UTF-8';
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2