[openpgp-applet] 09/61: removing META.yml and inc/ from master

2015-08-18 Thread Clement Hermann
This is an automated email from the git hooks/post-receive script.

nodens-guest pushed a commit to annotated tag OpenPGP_Applet-0.9
in repository openpgp-applet.

commit 467331efb01a79d7898b37553793bde3221ec2f5
Author: Clément Hermann (nodens) 
Date:   Sat Aug 2 01:22:31 2014 +0200

removing META.yml and inc/ from master
---
 META.yml   |  39 ---
 inc/Module/Install.pm  | 473 --
 inc/Module/Install/Base.pm |  83 -
 inc/Module/Install/Can.pm  | 154 -
 inc/Module/Install/Fetch.pm|  97 --
 inc/Module/Install/Makefile.pm | 418 ---
 inc/Module/Install/Metadata.pm | 754 -
 inc/Module/Install/Scripts.pm  |  33 --
 inc/Module/Install/Share.pm|  96 --
 inc/Module/Install/Win32.pm|  68 
 inc/Module/Install/WriteAll.pm |  67 
 11 files changed, 2282 deletions(-)

diff --git a/META.yml b/META.yml
deleted file mode 100644
index 2783e44..000
--- a/META.yml
+++ /dev/null
@@ -1,39 +0,0 @@

-abstract: 'GNOME applet for OpenPGP text encryption'
-author:
-  - 'Tails developers '
-build_requires:
-  ExtUtils::MakeMaker: 6.59
-configure_requires:
-  ExtUtils::MakeMaker: 6.59
-distribution_type: module
-dynamic_config: 1
-generated_by: 'Module::Install version 1.10'
-license: gpl,artistic
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
-name: OpenPGP_Applet
-no_index:
-  directory:
-- inc
-- share
-requires:
-  Any::Moose: 0
-  Carp: 0
-  DateTime: 0
-  Encode: 0
-  File::ShareDir: 0
-  Glib: 0
-  Gtk2: 0
-  Gtk2::Gdk::Keysyms: 0
-  Gtk2::SimpleList: 0
-  I18N::Langinfo: 0
-  IO::Handle: 0
-  List::MoreUtils: 0
-  Locale::gettext: 0
-  POSIX: 0
-  Switch: 0
-  namespace::autoclean: 0
-  perl: 5.10.0
-version: 0.8
diff --git a/inc/Module/Install.pm b/inc/Module/Install.pm
deleted file mode 100644
index 99f677c..000
--- a/inc/Module/Install.pm
+++ /dev/null
@@ -1,473 +0,0 @@
-#line 1
-package Module::Install;
-
-# For any maintainers:
-# The load order for Module::Install is a bit magic.
-# It goes something like this...
-#
-# IF ( host has Module::Install installed, creating author mode ) {
-# 1. Makefile.PL calls "use inc::Module::Install"
-# 2. $INC{inc/Module/Install.pm} set to installed version of 
inc::Module::Install
-# 3. The installed version of inc::Module::Install loads
-# 4. inc::Module::Install calls "require Module::Install"
-# 5. The ./inc/ version of Module::Install loads
-# } ELSE {
-# 1. Makefile.PL calls "use inc::Module::Install"
-# 2. $INC{inc/Module/Install.pm} set to ./inc/ version of Module::Install
-# 3. The ./inc/ version of Module::Install loads
-# }
-
-use 5.006;
-use strict 'vars';
-use Cwd();
-use File::Find ();
-use File::Path ();
-
-use vars qw{$VERSION $MAIN};
-BEGIN {
-   # All Module::Install core packages now require synchronised versions.
-   # This will be used to ensure we don't accidentally load old or
-   # different versions of modules.
-   # This is not enforced yet, but will be some time in the next few
-   # releases once we can make sure it won't clash with custom
-   # Module::Install extensions.
-   $VERSION = '1.10';
-
-   # Storage for the pseudo-singleton
-   $MAIN= undef;
-
-   *inc::Module::Install::VERSION = *VERSION;
-   @inc::Module::Install::ISA = __PACKAGE__;
-
-}
-
-sub import {
-   my $class = shift;
-   my $self  = $class->new(@_);
-   my $who   = $self->_caller;
-
-   #-
-   # all of the following checks should be included in import(),
-   # to allow "eval 'require Module::Install; 1' to test
-   # installation of Module::Install. (RT #51267)
-   #-
-
-   # Whether or not inc::Module::Install is actually loaded, the
-   # $INC{inc/Module/Install.pm} is what will still get set as long as
-   # the caller loaded module this in the documented manner.
-   # If not set, the caller may NOT have loaded the bundled version, and 
thus
-   # they may not have a MI version that works with the Makefile.PL. This 
would
-   # result in false errors or unexpected behaviour. And we don't want 
that.
-   my $file = join( '/', 'inc', split /::/, __PACKAGE__ ) . '.pm';
-   unless ( $INC{$file} ) { die <<"END_DIE" }
-
-Please invoke ${\__PACKAGE__} with:
-
-   use inc::${\__PACKAGE__};
-
-not:
-
-   use ${\__PACKAGE__};
-
-END_DIE
-
-   # This reportedly fixes a rare Win32 UTC file time issue, but
-   # as this is a non-cross-platform XS module not in the core,
-   # we shouldn't really depend on it. See RT #24194 for detail.
-   # (Also, this module only supports Perl 5.6 and above).
-   eval "use Win32::UTCFileTime" if $^O eq 'MSWin32' && $] >= 5.006;
-
-   # 

[openpgp-applet] 09/61: removing META.yml and inc/ from master

2015-08-15 Thread Clément Hermann
This is an automated email from the git hooks/post-receive script.

nodens-guest pushed a commit to annotated tag OpenPGP_Applet-0.9
in repository openpgp-applet.

commit 467331efb01a79d7898b37553793bde3221ec2f5
Author: Clément Hermann (nodens) 
Date:   Sat Aug 2 01:22:31 2014 +0200

removing META.yml and inc/ from master
---
 META.yml   |  39 ---
 inc/Module/Install.pm  | 473 --
 inc/Module/Install/Base.pm |  83 -
 inc/Module/Install/Can.pm  | 154 -
 inc/Module/Install/Fetch.pm|  97 --
 inc/Module/Install/Makefile.pm | 418 ---
 inc/Module/Install/Metadata.pm | 754 -
 inc/Module/Install/Scripts.pm  |  33 --
 inc/Module/Install/Share.pm|  96 --
 inc/Module/Install/Win32.pm|  68 
 inc/Module/Install/WriteAll.pm |  67 
 11 files changed, 2282 deletions(-)

diff --git a/META.yml b/META.yml
deleted file mode 100644
index 2783e44..000
--- a/META.yml
+++ /dev/null
@@ -1,39 +0,0 @@

-abstract: 'GNOME applet for OpenPGP text encryption'
-author:
-  - 'Tails developers '
-build_requires:
-  ExtUtils::MakeMaker: 6.59
-configure_requires:
-  ExtUtils::MakeMaker: 6.59
-distribution_type: module
-dynamic_config: 1
-generated_by: 'Module::Install version 1.10'
-license: gpl,artistic
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
-name: OpenPGP_Applet
-no_index:
-  directory:
-- inc
-- share
-requires:
-  Any::Moose: 0
-  Carp: 0
-  DateTime: 0
-  Encode: 0
-  File::ShareDir: 0
-  Glib: 0
-  Gtk2: 0
-  Gtk2::Gdk::Keysyms: 0
-  Gtk2::SimpleList: 0
-  I18N::Langinfo: 0
-  IO::Handle: 0
-  List::MoreUtils: 0
-  Locale::gettext: 0
-  POSIX: 0
-  Switch: 0
-  namespace::autoclean: 0
-  perl: 5.10.0
-version: 0.8
diff --git a/inc/Module/Install.pm b/inc/Module/Install.pm
deleted file mode 100644
index 99f677c..000
--- a/inc/Module/Install.pm
+++ /dev/null
@@ -1,473 +0,0 @@
-#line 1
-package Module::Install;
-
-# For any maintainers:
-# The load order for Module::Install is a bit magic.
-# It goes something like this...
-#
-# IF ( host has Module::Install installed, creating author mode ) {
-# 1. Makefile.PL calls "use inc::Module::Install"
-# 2. $INC{inc/Module/Install.pm} set to installed version of 
inc::Module::Install
-# 3. The installed version of inc::Module::Install loads
-# 4. inc::Module::Install calls "require Module::Install"
-# 5. The ./inc/ version of Module::Install loads
-# } ELSE {
-# 1. Makefile.PL calls "use inc::Module::Install"
-# 2. $INC{inc/Module/Install.pm} set to ./inc/ version of Module::Install
-# 3. The ./inc/ version of Module::Install loads
-# }
-
-use 5.006;
-use strict 'vars';
-use Cwd();
-use File::Find ();
-use File::Path ();
-
-use vars qw{$VERSION $MAIN};
-BEGIN {
-   # All Module::Install core packages now require synchronised versions.
-   # This will be used to ensure we don't accidentally load old or
-   # different versions of modules.
-   # This is not enforced yet, but will be some time in the next few
-   # releases once we can make sure it won't clash with custom
-   # Module::Install extensions.
-   $VERSION = '1.10';
-
-   # Storage for the pseudo-singleton
-   $MAIN= undef;
-
-   *inc::Module::Install::VERSION = *VERSION;
-   @inc::Module::Install::ISA = __PACKAGE__;
-
-}
-
-sub import {
-   my $class = shift;
-   my $self  = $class->new(@_);
-   my $who   = $self->_caller;
-
-   #-
-   # all of the following checks should be included in import(),
-   # to allow "eval 'require Module::Install; 1' to test
-   # installation of Module::Install. (RT #51267)
-   #-
-
-   # Whether or not inc::Module::Install is actually loaded, the
-   # $INC{inc/Module/Install.pm} is what will still get set as long as
-   # the caller loaded module this in the documented manner.
-   # If not set, the caller may NOT have loaded the bundled version, and 
thus
-   # they may not have a MI version that works with the Makefile.PL. This 
would
-   # result in false errors or unexpected behaviour. And we don't want 
that.
-   my $file = join( '/', 'inc', split /::/, __PACKAGE__ ) . '.pm';
-   unless ( $INC{$file} ) { die <<"END_DIE" }
-
-Please invoke ${\__PACKAGE__} with:
-
-   use inc::${\__PACKAGE__};
-
-not:
-
-   use ${\__PACKAGE__};
-
-END_DIE
-
-   # This reportedly fixes a rare Win32 UTC file time issue, but
-   # as this is a non-cross-platform XS module not in the core,
-   # we shouldn't really depend on it. See RT #24194 for detail.
-   # (Also, this module only supports Perl 5.6 and above).
-   eval "use Win32::UTCFileTime" if $^O eq 'MSWin32' && $] >= 5.006;
-
-   #