Skip to content

Commit

Permalink
Do not store inc/ modules in repository
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarr committed Sep 24, 2009
1 parent 72912c0 commit 2446eca
Show file tree
Hide file tree
Showing 20 changed files with 49 additions and 4,332 deletions.
12 changes: 12 additions & 0 deletions .gitignore
@@ -1,3 +1,15 @@
Makefile
blib
pm_to_blib
*.bak
*.old
.*
_dev
cover_db
/inc/
/Authen-SASL-*
/META.yml
/MANIFEST
/SIGNATURE
*.rej
*.orig
45 changes: 0 additions & 45 deletions MANIFEST

This file was deleted.

23 changes: 23 additions & 0 deletions MANIFEST.SKIP
@@ -0,0 +1,23 @@
^_build
^Build$
^blib
~$
\.bak$
\.DS_Store
cover_db
\..*\.sw.?$
^Makefile$
^pm_to_blib$
^MakeMaker-\d
^blibdirs$
\.old$
^#.*#$
^\.#
^TODO$
^PLANS$
^doc/
^benchmarks
^\._.*$
\.shipit
^Authen-SASL-*
\.git.*
22 changes: 0 additions & 22 deletions META.yml

This file was deleted.

60 changes: 14 additions & 46 deletions Makefile.PL
@@ -1,54 +1,22 @@
# This -*- perl -*- script makes the Makefile

use strict;
use warnings;
use 5.005;
use inc::Module::Install;

name ('Authen-SASL');
abstract ('SASL Authentication framework');
author ('Graham Barr <gbarr@pobox.com>');
version_from ('lib/Authen/SASL.pm');
license ('perl');
repository ('git://git.goingon.net/Authen-SASL.git');
name 'Authen-SASL';
abstract 'SASL Authentication framework';
author 'Graham Barr <gbarr@pobox.com>';
version_from 'lib/Authen/SASL.pm';
license 'perl';
repository 'http://github.com/gbarr/perl-authen-sasl';

check_nmake(); # check and download nmake.exe for Win32
perl_version 5.005;

perl_version 5.005;

include_deps ('Test::More');
include ('ExtUtils::AutoInstall');

features(
'DIGEST-MD5 mechanism' => [
-default => 1,
'Digest::MD5' => 0,
'Digest::HMAC_MD5' => 0,
],
'CRAM-MD5 mechanism' => [
-default => 0,
'Digest::HMAC_MD5' => 0,
],
'GSSAPI mechanism' => [
-default => 0,
'GSSAPI' => 0,
],
);

auto_install_now();

&Makefile->write;
&Meta->write;

## - - - - - - - -

sub MY::postamble {
return <<'POSTAMBLE';
distdir : manifest run_cpansign
run_cpansign :
cpansign -s
POSTAMBLE

}
test_requires 'Test::More' => 0;
requires 'Digest::MD5' => 0;
requires 'Digest::HMAC_MD5' => 0;
recommends 'GSSAPI' => 0;

WriteAll();
67 changes: 0 additions & 67 deletions SIGNATURE

This file was deleted.

0 comments on commit 2446eca

Please sign in to comment.