Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,25 @@
"auth" : "zef:Tux",
"authors" : [ "H.Merijn Brand (Tux)" ],
"tags" : [ "CSV","CPAN5" ],
"depends" : [ "Slang::Tuxic", "File::Temp" ],
"test-depends" : [ "Test", "Test::META" ],
"depends": {
"runtime": {
"requires": [
"Slang::Tuxic:ver<0.0.5+>:auth<zef:raku-community-modules>",
"File::Temp:ver<0.0.12+>:auth<zef:raku-community-modules>"
]
}
},
"test-depends" : [ ],
"provides" : {
"Text::CSV" : "lib/Text/CSV.rakumod",
"Text::IO::String" : "lib/Text/IO/String.rakumod"
},
"repo-type" : "git",
"source-url" : "git://github.com/Tux/CSV.git",
"license" : "Artistic-2.0",
"support" : {
"irc" : "irc://irc.perl.org/#csv"
"support": {
"bugtracker": "https://github.com/lizmat/SBOM-Raku/issues",
"irc" : "irc://irc.perl.org/#csv",
"source" : "https://github.com/Tux/CSV.git"
},
"build-depends" : [ ],
"resources" : [ ]
Expand Down
8 changes: 3 additions & 5 deletions lib/Text/CSV.rakumod
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
#!raku

use Slang::Tuxic;
use File::Temp;
use Slang::Tuxic:ver<0.0.5+>:auth<zef:raku-community-modules>;
use File::Temp:ver<0.0.12+>:auth<zef:raku-community-modules>;
use Text::IO::String;

my $VERSION = "0.022";
my constant $VERSION = "0.022";

my constant $opt_v = %*ENV<RAKU_VERBOSE> // 1;

Expand Down
15 changes: 0 additions & 15 deletions t/99_meta.t
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test::Meta is deprecated?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not as such at the moment, no. But in the SBOM world we're going to need much more info in the META6.json to be able to create CE certifiable SBOMs, and in my opinion it should be part of any standard publication process.

This file was deleted.