From 14ae143796586ce9eda266d03a9be2d6d3f1b6ee Mon Sep 17 00:00:00 2001 From: Zoffix Znet Date: Thu, 4 Feb 2016 18:50:17 -0500 Subject: Fix packaging --- META.info | 19 ------------------- META6.json | 19 +++++++++++++++++++ xt/meta.t | 7 +++++++ 3 files changed, 26 insertions(+), 19 deletions(-) delete mode 100644 META.info create mode 100644 META6.json create mode 100644 xt/meta.t diff --git a/META.info b/META.info deleted file mode 100644 index d92ef63..0000000 --- a/META.info +++ /dev/null @@ -1,19 +0,0 @@ -{ - "perl" : "6.c", - "name" : "IRC::Client", - "version" : "2.003001", - "description" : "Extendable Internet Relay Chat client", - "depends" : [ "Data::Dump" ], - "test-depends" : [ "Test" ], - "provides" : { - "IRC::Client" : "lib/IRC/Client.pm6", - "IRC::Grammar" : "lib/IRC/Grammar.pm6", - "IRC::Parser" : "lib/IRC/Parser.pm6", - "IRC::Grammar::Actions" : "lib/IRC/Grammar/Actions.pm6", - "IRC::Client::Plugin" : "lib/IRC/Client/Plugin.pm6", - "IRC::Client::Plugin::Debugger" : "lib/IRC/Client/Plugin/Debugger.pm6", - "IRC::Client::Plugin::PingPong" : "lib/IRC/Client/Plugin/PingPong.pm6" - }, - "author" : "Zoffix Znet", - "source-url" : "git://github.com/zoffixznet/perl6-IRC-Client.git" -} diff --git a/META6.json b/META6.json new file mode 100644 index 0000000..8f6d0d7 --- /dev/null +++ b/META6.json @@ -0,0 +1,19 @@ +{ + "perl" : "6.c", + "name" : "IRC::Client", + "version" : "2.003001", + "description" : "Extendable Internet Relay Chat client", + "depends" : [ "Data::Dump" ], + "test-depends" : [ "Test" ], + "provides" : { + "IRC::Client" : "lib/IRC/Client.pm6", + "IRC::Grammar" : "lib/IRC/Grammar.pm6", + "IRC::Parser" : "lib/IRC/Parser.pm6", + "IRC::Grammar::Actions" : "lib/IRC/Grammar/Actions.pm6", + "IRC::Client::Plugin" : "lib/IRC/Client/Plugin.pm6", + "IRC::Client::Plugin::Debugger" : "lib/IRC/Client/Plugin/Debugger.pm6", + "IRC::Client::Plugin::PingPong" : "lib/IRC/Client/Plugin/PingPong.pm6" + }, + "authors" : ["Zoffix Znet"], + "support" : {"source" : "git://github.com/zoffixznet/perl6-IRC-Client.git"} +} diff --git a/xt/meta.t b/xt/meta.t new file mode 100644 index 0000000..6e2447d --- /dev/null +++ b/xt/meta.t @@ -0,0 +1,7 @@ +#!perl6 + +use lib 'lib'; +use Test; +use Test::META; +meta-ok; +done-testing; -- cgit v1.1