Skip to content

Commit e92241f

Browse files
committed
Add static docs for github
1 parent 061535c commit e92241f

File tree

8 files changed

+3818
-1
lines changed

8 files changed

+3818
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*.tar.gz
77
*.tbz
88
*.tgz
9+
*.tmp
910
*.xsi
1011
.perlcriticrc
1112
blib
@@ -22,5 +23,6 @@ tags
2223
tar
2324
test-*
2425
test_*
26+
tmp/*
2527
ulib
2628
sandbox/dta

ChangeLog

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* Update to Devel::PPPort-3.58
33
* Update to Devel::PPPort-3.62
44
* Fix META issue for bugtracker
5+
* Add static docs for github
56

67
0.90 - 14 Feb 2020, H.Merijn Brand
78
* It's 2018

MANIFEST.SKIP

+2
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,5 @@ tags
2424
tar
2525
test-*
2626
ulib/
27+
xt/
28+
doc/

Makefile.PL

+12-1
Original file line numberDiff line numberDiff line change
@@ -285,10 +285,21 @@ sub postamble {
285285
' perl sandbox/genMETA.pl',
286286
' ls -l */META.yml',
287287
'',
288-
'tgzdist: checkmeta fixmeta $(DISTVNAME).tar.gz distcheck',
288+
'tgzdist: doc checkmeta fixmeta $(DISTVNAME).tar.gz distcheck',
289289
' -@mv -f $(DISTVNAME).tar.gz $(DISTVNAME).tgz',
290290
' -@cpants_lint.pl $(DISTVNAME).tgz',
291291
' -@rm -f Debian_CPANTS.txt',
292+
'',
293+
'doc docs: doc/Unify.md doc/Unify.html doc/Unify.man',
294+
'doc/Unify.md: Unify.pm',
295+
' pod2markdown < $? > $@',
296+
'doc/Unify.html: Unify.pm',
297+
' pod2html < $? 2>&1 | grep -v "^Cannot find" > $@',
298+
'doc/Unify.3: Unify.pm',
299+
' pod2man < $? > $@',
300+
'doc/Unify.man: doc/Unify.3',
301+
' nroff -mandoc < $? > $@',
302+
'',
292303
@pc,
293304
'',
294305
'linkext::',

0 commit comments

Comments
 (0)