From 47f284e38be08082be46718d14c61aa170f6f72c Mon Sep 17 00:00:00 2001 From: trizen Date: Fri, 30 Oct 2020 18:37:15 +0200 Subject: [PATCH] new file: META.json new file: META.yml --- .gitignore | 5 ++- META.json | 122 +++++++++++++++++++++++++++++++++++++++++++++++++++++ META.yml | 82 +++++++++++++++++++++++++++++++++++ 3 files changed, 207 insertions(+), 2 deletions(-) create mode 100644 META.json create mode 100644 META.yml diff --git a/.gitignore b/.gitignore index ecf66f8..8fd35e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ !Build/ .last_cover_stats -/META.yml -/META.json +#/META.yml +#/META.json /MYMETA.* *.o *.pm.tdy @@ -33,3 +33,4 @@ inc/ /MANIFEST.bak /pm_to_blib /*.zip +/bin/*.json diff --git a/META.json b/META.json new file mode 100644 index 0000000..2b6b6db --- /dev/null +++ b/META.json @@ -0,0 +1,122 @@ +{ + "abstract" : "A very easy interface to YouTube, using the API of invidio.us.", + "author" : [ + "Trizen " + ], + "dynamic_config" : 1, + "generated_by" : "Module::Build version 0.4231", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : 2 + }, + "name" : "WWW-PipeViewer", + "prereqs" : { + "build" : { + "requires" : { + "Test::More" : "0" + } + }, + "configure" : { + "requires" : { + "Module::Build" : "0" + } + }, + "runtime" : { + "recommends" : { + "JSON::XS" : "0", + "LWP::UserAgent::Cached" : "0", + "Mozilla::CA" : "0", + "Term::ReadLine::Gnu" : "0" + }, + "requires" : { + "Data::Dump" : "0", + "Encode" : "0", + "File::Path" : "0", + "File::Spec" : "0", + "File::Spec::Functions" : "0", + "Getopt::Long" : "0", + "HTTP::Request" : "0", + "JSON" : "0", + "LWP::Protocol::https" : "0", + "LWP::UserAgent" : "0", + "List::Util" : "0", + "MIME::Base64" : "0", + "Memoize" : "0", + "Term::ANSIColor" : "0", + "Term::ReadLine" : "0", + "Text::ParseWords" : "0", + "Text::Wrap" : "0", + "URI::Escape" : "0", + "perl" : "5.016" + } + } + }, + "provides" : { + "WWW::PipeViewer" : { + "file" : "lib/WWW/PipeViewer.pm", + "version" : "v0.0.1" + }, + "WWW::PipeViewer::Activities" : { + "file" : "lib/WWW/PipeViewer/Activities.pm" + }, + "WWW::PipeViewer::Authentication" : { + "file" : "lib/WWW/PipeViewer/Authentication.pm" + }, + "WWW::PipeViewer::Channels" : { + "file" : "lib/WWW/PipeViewer/Channels.pm" + }, + "WWW::PipeViewer::CommentThreads" : { + "file" : "lib/WWW/PipeViewer/CommentThreads.pm" + }, + "WWW::PipeViewer::GetCaption" : { + "file" : "lib/WWW/PipeViewer/GetCaption.pm" + }, + "WWW::PipeViewer::GuideCategories" : { + "file" : "lib/WWW/PipeViewer/GuideCategories.pm" + }, + "WWW::PipeViewer::Itags" : { + "file" : "lib/WWW/PipeViewer/Itags.pm" + }, + "WWW::PipeViewer::ParseJSON" : { + "file" : "lib/WWW/PipeViewer/ParseJSON.pm" + }, + "WWW::PipeViewer::ParseXML" : { + "file" : "lib/WWW/PipeViewer/ParseXML.pm" + }, + "WWW::PipeViewer::PlaylistItems" : { + "file" : "lib/WWW/PipeViewer/PlaylistItems.pm" + }, + "WWW::PipeViewer::Playlists" : { + "file" : "lib/WWW/PipeViewer/Playlists.pm" + }, + "WWW::PipeViewer::RegularExpressions" : { + "file" : "lib/WWW/PipeViewer/RegularExpressions.pm" + }, + "WWW::PipeViewer::Search" : { + "file" : "lib/WWW/PipeViewer/Search.pm" + }, + "WWW::PipeViewer::Subscriptions" : { + "file" : "lib/WWW/PipeViewer/Subscriptions.pm" + }, + "WWW::PipeViewer::Utils" : { + "file" : "lib/WWW/PipeViewer/Utils.pm" + }, + "WWW::PipeViewer::VideoCategories" : { + "file" : "lib/WWW/PipeViewer/VideoCategories.pm" + }, + "WWW::PipeViewer::Videos" : { + "file" : "lib/WWW/PipeViewer/Videos.pm" + } + }, + "release_status" : "stable", + "resources" : { + "license" : [ + "http://dev.perl.org/licenses/" + ] + }, + "version" : "v0.0.1", + "x_serialization_backend" : "JSON::PP version 4.05" +} diff --git a/META.yml b/META.yml new file mode 100644 index 0000000..f5dd29b --- /dev/null +++ b/META.yml @@ -0,0 +1,82 @@ +--- +abstract: 'A very easy interface to YouTube, using the API of invidio.us.' +author: + - 'Trizen ' +build_requires: + Test::More: '0' +configure_requires: + Module::Build: '0' +dynamic_config: 1 +generated_by: 'Module::Build version 0.4231, CPAN::Meta::Converter version 2.150010' +license: perl +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: '1.4' +name: WWW-PipeViewer +provides: + WWW::PipeViewer: + file: lib/WWW/PipeViewer.pm + version: v0.0.1 + WWW::PipeViewer::Activities: + file: lib/WWW/PipeViewer/Activities.pm + WWW::PipeViewer::Authentication: + file: lib/WWW/PipeViewer/Authentication.pm + WWW::PipeViewer::Channels: + file: lib/WWW/PipeViewer/Channels.pm + WWW::PipeViewer::CommentThreads: + file: lib/WWW/PipeViewer/CommentThreads.pm + WWW::PipeViewer::GetCaption: + file: lib/WWW/PipeViewer/GetCaption.pm + WWW::PipeViewer::GuideCategories: + file: lib/WWW/PipeViewer/GuideCategories.pm + WWW::PipeViewer::Itags: + file: lib/WWW/PipeViewer/Itags.pm + WWW::PipeViewer::ParseJSON: + file: lib/WWW/PipeViewer/ParseJSON.pm + WWW::PipeViewer::ParseXML: + file: lib/WWW/PipeViewer/ParseXML.pm + WWW::PipeViewer::PlaylistItems: + file: lib/WWW/PipeViewer/PlaylistItems.pm + WWW::PipeViewer::Playlists: + file: lib/WWW/PipeViewer/Playlists.pm + WWW::PipeViewer::RegularExpressions: + file: lib/WWW/PipeViewer/RegularExpressions.pm + WWW::PipeViewer::Search: + file: lib/WWW/PipeViewer/Search.pm + WWW::PipeViewer::Subscriptions: + file: lib/WWW/PipeViewer/Subscriptions.pm + WWW::PipeViewer::Utils: + file: lib/WWW/PipeViewer/Utils.pm + WWW::PipeViewer::VideoCategories: + file: lib/WWW/PipeViewer/VideoCategories.pm + WWW::PipeViewer::Videos: + file: lib/WWW/PipeViewer/Videos.pm +recommends: + JSON::XS: '0' + LWP::UserAgent::Cached: '0' + Mozilla::CA: '0' + Term::ReadLine::Gnu: '0' +requires: + Data::Dump: '0' + Encode: '0' + File::Path: '0' + File::Spec: '0' + File::Spec::Functions: '0' + Getopt::Long: '0' + HTTP::Request: '0' + JSON: '0' + LWP::Protocol::https: '0' + LWP::UserAgent: '0' + List::Util: '0' + MIME::Base64: '0' + Memoize: '0' + Term::ANSIColor: '0' + Term::ReadLine: '0' + Text::ParseWords: '0' + Text::Wrap: '0' + URI::Escape: '0' + perl: '5.016' +resources: + license: http://dev.perl.org/licenses/ +version: v0.0.1 +x_serialization_backend: 'CPAN::Meta::YAML version 0.018'