Codebase list libfile-mimeinfo-perl / a7673f6
Update upstream source from tag 'upstream/0.33' Update to upstream version '0.33' with Debian dir 306b7c9ff90705729212dee996c3777c1d90c097 gregor herrmann 1 year, 9 months ago
10 changed file(s) with 19 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
00 Revision history for Perl extension File::MimeInfo.
11 Versions up to 0.15 by Jaap Karssenberg <pardus@cpan.org>
22 Versions starting 0.16 by Michiel Beijen <mb@x14.nl>
3
4 0.33 2022-07-12
5 - Fix uninitialized value warning in File::MimeInfo::Applications,
6 provided by SPFabGerman
37
48 0.32 2022-03-06
59 - Fix uninitialized values in _read_list() call, provided by mazunki
33 "Jaap Karssenberg <pardus@cpan.org>"
44 ],
55 "dynamic_config" : 1,
6 "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010",
6 "generated_by" : "ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010",
77 "license" : [
88 "perl_5"
99 ],
5656 "url" : "https://github.com/mbeijen/File-MimeInfo"
5757 }
5858 },
59 "version" : "0.32",
59 "version" : "0.33",
6060 "x_contributors" : [
6161 "Bernhard Rosenkränzer <bero@lindev.ch>",
6262 "Christian Ludwig <chrissicool@gmail.com>",
7171 "Patrick Burroughs (Celti) <celti@celti.name>",
7272 "Philippe Bruhat (BooK) <book@cpan.org>",
7373 "Rudolf Leermakers <rudolf@hatsuseno.org>",
74 "SPFabGerman <42518661+SPFabGerman@users.noreply.github.com>",
7475 "Sean Smith <ssmith@ncsgraphics.com>",
7576 "Stefan Seifert <nine@detonation.org>",
7677 "brian m. carlson <sandals@crustytoothpaste.net>",
7778 "gregor herrmann <gregoa@debian.org>",
7879 "mazunki <rolferen@gmail.com>"
7980 ],
80 "x_serialization_backend" : "JSON::PP version 4.02"
81 "x_serialization_backend" : "JSON::PP version 4.06"
8182 }
77 configure_requires:
88 ExtUtils::MakeMaker: '6.30'
99 dynamic_config: 1
10 generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010'
10 generated_by: 'ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010'
1111 license: perl
1212 meta-spec:
1313 url: http://module-build.sourceforge.net/META-spec-v1.4.html
2929 resources:
3030 bugtracker: https://github.com/mbeijen/File-MimeInfo/issues
3131 repository: https://github.com/mbeijen/File-MimeInfo
32 version: '0.32'
32 version: '0.33'
3333 x_contributors:
3434 - 'Bernhard Rosenkränzer <bero@lindev.ch>'
3535 - 'Christian Ludwig <chrissicool@gmail.com>'
4444 - 'Patrick Burroughs (Celti) <celti@celti.name>'
4545 - 'Philippe Bruhat (BooK) <book@cpan.org>'
4646 - 'Rudolf Leermakers <rudolf@hatsuseno.org>'
47 - 'SPFabGerman <42518661+SPFabGerman@users.noreply.github.com>'
4748 - 'Sean Smith <ssmith@ncsgraphics.com>'
4849 - 'Stefan Seifert <nine@detonation.org>'
4950 - 'brian m. carlson <sandals@crustytoothpaste.net>'
5858 'Patrick Burroughs (Celti) <celti@celti.name>',
5959 'Philippe Bruhat (BooK) <book@cpan.org>',
6060 'Rudolf Leermakers <rudolf@hatsuseno.org>',
61 'SPFabGerman <42518661+SPFabGerman@users.noreply.github.com>',
6162 'Sean Smith <ssmith@ncsgraphics.com>',
6263 'Stefan Seifert <nine@detonation.org>',
6364 'brian m. carlson <sandals@crustytoothpaste.net>',
88 use File::DesktopEntry;
99 require Exporter;
1010
11 our $VERSION = '0.32';
11 our $VERSION = '0.33';
1212
1313 our @ISA = qw(Exporter);
1414 our @EXPORT = qw(
177177 }
178178
179179 sub _find_file {
180 my @list = shift;
180 my @list = @_;
181181 for (@list) {
182182 my $file = data_files('applications', $_);
183183 return File::DesktopEntry->new($file) if $file;
1616 our @ISA = qw(Exporter File::MimeInfo);
1717 our @EXPORT = qw(mimetype);
1818 our @EXPORT_OK = qw(extensions describe globs inodetype magic);
19 our $VERSION = '0.32';
19 our $VERSION = '0.33';
2020 our $DEBUG;
2121
2222 our $_hashed = 0;
1010 our @EXPORT = qw(mime_exec mime_system);
1111 our @EXPORT_OK = qw(suggest_script_name);
1212 our %EXPORT_TAGS = (magic => \@EXPORT);
13 our $VERSION = '0.32';
13 our $VERSION = '0.33';
1414 our @choicespath = (
1515 config_home('rox.sourceforge.net'),
1616 File::Spec->catdir($ENV{HOME}, 'Choices'),
1010 our @ISA = qw(Exporter);
1111 our @EXPORT = qw(mimetype);
1212 our @EXPORT_OK = qw(extensions describe globs inodetype mimetype_canon mimetype_isa);
13 our $VERSION = '0.32';
13 our $VERSION = '0.33';
1414 our $DEBUG;
1515
1616 our ($_hashed, $_hashed_aliases, $_hashed_subclasses, $_has_mimeinfo_database);
11
22 use strict;
33 use warnings;
4 our $VERSION = '0.32';
4 our $VERSION = '0.33';
55 $|++;
66
77 # ########## #
11
22 use strict;
33 use warnings;
4 our $VERSION = '0.32';
4 our $VERSION = '0.33';
55 $|++;
66
77 # ########## #