From: Dobrica Pavlinusic Date: Sun, 9 Jul 2006 13:20:06 +0000 (+0000) Subject: cpan target and tweaking of distribution files X-Git-Url: http://git.rot13.org/?p=Biblio-Isis;a=commitdiff_plain;h=8a285525531c2188987bd86c250ffdab75115f5f cpan target and tweaking of distribution files git-svn-id: file:///home/dpavlin/svn/Biblio-Isis/trunk@60 4670fa4d-42ec-0310-ab5b-a66af6943492 --- diff --git a/MANIFEST b/MANIFEST index bf55d29..8aa4a6e 100644 --- a/MANIFEST +++ b/MANIFEST @@ -6,10 +6,10 @@ Changes Makefile.PL lib/Biblio/Isis.pm lib/Biblio/Isis/Manual.pod -t/001_load.t -t/002_isis.t -t/998_pod-coverage.t -t/999_pod.t +t/1_load.t +t/2_isis.t +t/9_pod-coverage.t +t/9_pod.t scripts/dump_isisdb.pl scripts/dump_openisis.pl scripts/bench.pl diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 0120b12..f309221 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -11,3 +11,4 @@ Makefile Makefile.old scripts/.svn/ t/.svn/ +blib diff --git a/Makefile.PL b/Makefile.PL index 8c1e288..81d1ed5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -29,7 +29,7 @@ html: $(TO_INST_PM) test ! -z "`which svn2html.pl`" && svn update && svn2html.pl > $(HTML_DIR)/Changes.html changelog: - svn update && svn -v log > Changes + svk update && svk -v log > Changes tags: ctags *.p? */*.p? @@ -41,5 +41,15 @@ cmp: bench: all cd ./scripts/ && ./bench.pl +cpan: + make clean + rm -f Biblio-Isis-*.tar.gz + perl Makefile.PL + make changelog + make dist + make disttest + @echo + @echo -n "Upload" Biblio-Isis-*.tar.gz "to CPAN? [y/N]:" + @read upload && test "$$upload" == "y" && cpan-upload -verbose Biblio-Isis-*.tar.gz MAKE_MORE }