projects
/
gitmo/Class-C3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9ab3d5c
)
distar fixes
Graham Knop [Sat, 16 Aug 2014 00:28:23 +0000 (20:28 -0400)]
.gitignore
patch
|
blob
|
blame
|
history
Changes
[moved from
ChangeLog
with 100% similarity]
patch
|
blob
|
blame
|
history
maint/Makefile.PL.include
[new file with mode: 0644]
patch
|
blob
diff --git
a/.gitignore
b/.gitignore
index
8ec66bc
..
802f097
100644
(file)
--- a/
.gitignore
+++ b/
.gitignore
@@
-1,18
+1,15
@@
-.*
-!.gitignore
-Makefile*
-!Makefile.PL
-META.*
-MYMETA.*
-blib
-build
-inc
-pm_to_blib
+/Makefile
+/Makefile.old
+/META.*
+/MYMETA.*
+/blib
+/build
+/inc
+/pm_to_blib
/MANIFEST
/MANIFEST.bak
/MANIFEST.SKIP
/Distar
Debian*
-README
/Class-C3-*/
/Class-C3-*.tar.gz
diff --git
a/ChangeLog
b/Changes
similarity index 100%
rename from
ChangeLog
rename to
Changes
diff --git a/maint/Makefile.PL.include
b/maint/Makefile.PL.include
new file mode 100644
(file)
index 0000000..
d573dd7
--- /dev/null
+++ b/
maint/Makefile.PL.include
@@ -0,0
+1,11
@@
+BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") }
+use lib 'Distar/lib';
+use Distar 0.001;
+
+use ExtUtils::MakeMaker 6.57_10 ();
+
+author 'Stevan Little, <stevan@iinteractive.com>';
+
+manifest_include opt => '.pm';
+
+1;