Skip Menu |

This queue is for tickets about the RT-Extension-SMSNotify CPAN distribution.

Report information
The Basics
Id: 105294
Status: new
Priority: 0/
Queue: RT-Extension-SMSNotify

People
Owner: Nobody in particular
Requestors: dom [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.04
Fixed in: (no value)



Subject: Should not ship generated files
This distribution currently includes: Makefile MYMETA.json MYMETA.yml which should not be included - they break installs (if for example Config.pm is not in the expected location). Attached trivial patch fixes this (applied in the Debian package currently in preparation: http://anonscm.debian.org/cgit/pkg-request-tracker/rt-extension-smsnotify.git
Subject: remove_generated.patch

Message body is not shown because it is too large.

Another note on this: I also had to disable automanifest generation, because MANIFEST.SKIP did not exist. This may be technically a separate bug but is closely related.
Subject: disable_auto_manifest.patch
From 6929b971e338364e1a3f450581c51e014bac8f8a Mon Sep 17 00:00:00 2001 From: Dominic Hargreaves <dom@earth.li> Date: Wed, 17 Jun 2015 15:02:38 +0100 Subject: Disable auto_manifest This doesn't work, since MANIFEST.SKIP is missing Patch-Name: disable_auto_manifest.patch --- Makefile.PL | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 0fc497e..4543017 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,5 +1,4 @@ use inc::Module::Install 0.77; -use Module::Install::AutoManifest; use Module::Install::ReadmeFromPod; # See http://search.cpan.org/~falcone/Module-Install-RTx/lib/Module/Install/RTx.pm @@ -22,8 +21,6 @@ readme_from 'lib/RT/Extension/SMSNotify.pm'; license 'perl'; -auto_manifest; - homepage 'https://github.com/2ndQuadrant/rt-extension-smsnotify-perl'; bugtracker 'https://rt.cpan.org/Dist/Display.html?Status=Active&Queue=RT-Extension-SMSNotify'; repository 'git://github.com/2ndQuadrant/rt-extension-smsnotify-perl.git';