[Bps-public-commit] app-aws-cloudwatch-monitor-check-mailqueue branch add-check-module updated. 160f09ae33c632141f92a4b36f8711fb86efe693

BPS Git Server git at git.bestpractical.com
Thu Dec 2 00:30:56 UTC 2021


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "app-aws-cloudwatch-monitor-check-mailqueue".

The branch, add-check-module has been updated
       via  160f09ae33c632141f92a4b36f8711fb86efe693 (commit)
       via  1fbe4d9456bd2b3cfeb011665627592b1230188f (commit)
      from  4eeaa2c06f7c78b8d7eba042db52b097a9a514ce (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 160f09ae33c632141f92a4b36f8711fb86efe693
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Wed Dec 1 18:18:18 2021 -0600

    Add initial build scaffolding

diff --git a/MANIFEST b/MANIFEST
new file mode 100644
index 0000000..6ae1eb3
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,5 @@
+lib/App/AWS/CloudWatch/Monitor/Check/MailQueue.pm
+Makefile.PL
+MANIFEST			This list of files
+MANIFEST.SKIP
+README
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644
index 0000000..8086331
--- /dev/null
+++ b/MANIFEST.SKIP
@@ -0,0 +1,38 @@
+# Avoid version control files.
+\bRCS\b
+\bCVS\b
+\bSCCS\b
+,v$
+\B\.svn\b
+\B\.git\b
+\B\.gitignore\b
+\b_darcs\b
+
+# Avoid Makemaker generated and utility files.
+\bMANIFEST\.bak
+\bMakefile$
+\bblib/
+\bMakeMaker-\d
+\bpm_to_blib\.ts$
+\bpm_to_blib$
+\bblibdirs\.ts$         # 6.18 through 6.25 generated this
+
+# Avoid Module::Build generated and utility files.
+\bBuild$
+\b_build/
+
+# Avoid temp and backup files.
+~$
+\.old$
+\#$
+\b\.#
+\.bak$
+
+# Avoid Devel::Cover files.
+\bcover_db\b
+
+t/tmp/
+\.tagstagstags
+MYMETA\.json
+MYMETA\.yml$
+\.tar\.gz$$
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..de9bde7
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,37 @@
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+    NAME => 'App::AWS::CloudWatch::Monitor::Check::MailQueue',
+    AUTHOR => 'Best Practical Solutions, LLC <modules at bestpractical.com>',
+    ABSTRACT_FROM => 'lib/App/AWS/CloudWatch/Monitor/Check/MailQueue.pm',
+    VERSION_FROM => 'lib/App/AWS/CloudWatch/Monitor/Check/MailQueue.pm',
+    LICENSE => 'perl_5',
+    META_MERGE => {
+        'meta-spec' => { version => 2 },
+        resources => {
+            bugtracker => {
+                web => 'https://github.com/bestpractical/app-aws-cloudwatch-monitor-check-mailqueue/issues',
+            },
+            homepage => 'https://github.com/bestpractical/app-aws-cloudwatch-monitor-check-mailqueue',
+            repository => {
+                type => 'git',
+                url => 'https://github.com/bestpractical/app-aws-cloudwatch-monitor-check-mailqueue.git',
+                web => 'https://github.com/bestpractical/app-aws-cloudwatch-monitor-check-mailqueue',
+            },
+        },
+    },
+
+    MIN_PERL_VERSION => '5.10.1',
+    BUILD_REQUIRES => {
+        'ExtUtils::MakeMaker' => '6.46',
+    },
+    CONFIGURE_REQUIRES => {
+        'ExtUtils::MakeMaker' => '6.46',
+    },
+    PREREQ_PM => {
+        'App::AWS::CloudWatch::Monitor::Check' => 0,
+        'parent' => 0,
+        'strict' => 0,
+        'warnings' => 0,
+    },
+);
commit 1fbe4d9456bd2b3cfeb011665627592b1230188f
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Wed Dec 1 18:17:43 2021 -0600

    Add gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b68ecd1
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,13 @@
+MYMETA.*
+blib/
+/nytprof.out*
+/.prove
+*~
+*.swp
+*.swo
+cover_db/
+Makefile
+Makefile.old
+MANIFEST.bak
+App-AWS-CloudWatch-Monitor-Check-MailQueue-*
+pm_to_blib
-----------------------------------------------------------------------

Summary of changes:
 .gitignore    | 13 +++++++++++++
 MANIFEST      |  5 +++++
 MANIFEST.SKIP | 38 ++++++++++++++++++++++++++++++++++++++
 Makefile.PL   | 37 +++++++++++++++++++++++++++++++++++++
 4 files changed, 93 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 MANIFEST
 create mode 100644 MANIFEST.SKIP
 create mode 100644 Makefile.PL


hooks/post-receive
-- 
app-aws-cloudwatch-monitor-check-mailqueue


More information about the Bps-public-commit mailing list