diff options
author | schmonz <schmonz@pkgsrc.org> | 2008-06-01 04:22:55 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2008-06-01 04:22:55 +0000 |
commit | 53c9abaf7f2be84a4a934c921612b4d60cd1dedc (patch) | |
tree | 8fc9fb60c9894c340cb0d2df707271258dc4ab7e /textproc | |
parent | b3665833942973503d0e8685d42df1a1374cef6e (diff) | |
download | pkgsrc-53c9abaf7f2be84a4a934c921612b4d60cd1dedc.tar.gz |
Update to 1.0.19. From the changelog:
- Clean up local stuff for settings.
- Do a little cleanup of intialisation (more needed)
- Remove copy pasted regexes from Text::MultiMarkdown
- Fix bug with line breaks in links - http://bugs.debian.org/459885,
thanks to patches and test input / output provided by Adeodato Simó.
(See t/37anchormultilinebugs.t)
- Incorperated MDTest1.1's tests, and made most of the Text-Markdown
and Text-MultiMarkdown tests in MDTest format.
- Add and document an accessor for the parsed markdown URLs.
- Fix html4tags option in Markdown.pl and MultiMarkdown.pl
- Remove auto_install from Makefile.PL, this is a deprecated feature
and it shouldn't be being used at all.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/p5-Text-Markdown/Makefile | 4 | ||||
-rw-r--r-- | textproc/p5-Text-Markdown/distinfo | 9 | ||||
-rw-r--r-- | textproc/p5-Text-Markdown/patches/patch-aa | 14 |
3 files changed, 21 insertions, 6 deletions
diff --git a/textproc/p5-Text-Markdown/Makefile b/textproc/p5-Text-Markdown/Makefile index 46935e666ca..d88414dda4d 100644 --- a/textproc/p5-Text-Markdown/Makefile +++ b/textproc/p5-Text-Markdown/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2008/04/16 09:28:04 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2008/06/01 04:22:55 schmonz Exp $ # -DISTNAME= Text-Markdown-1.0.17 +DISTNAME= Text-Markdown-1.0.19 PKGNAME= p5-${DISTNAME} CATEGORIES= textproc MASTER_SITES= http://search.cpan.org/CPAN/authors/id/B/BO/BOBTFISH/ diff --git a/textproc/p5-Text-Markdown/distinfo b/textproc/p5-Text-Markdown/distinfo index 9fbb63d0879..e0d8d45e522 100644 --- a/textproc/p5-Text-Markdown/distinfo +++ b/textproc/p5-Text-Markdown/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2008/04/16 09:28:04 wiz Exp $ +$NetBSD: distinfo,v 1.3 2008/06/01 04:22:55 schmonz Exp $ -SHA1 (Text-Markdown-1.0.17.tar.gz) = e358ba5cd52490ff33ae9ca0a20ba106f1220a96 -RMD160 (Text-Markdown-1.0.17.tar.gz) = e9f06081748d3222b3437ea7b495816f3cd30f94 -Size (Text-Markdown-1.0.17.tar.gz) = 134030 bytes +SHA1 (Text-Markdown-1.0.19.tar.gz) = 2a71ba335397161d91bb5b1a527ec073e1e0db67 +RMD160 (Text-Markdown-1.0.19.tar.gz) = dfed817985e9f475f2d59c655acd87f8226f87d1 +Size (Text-Markdown-1.0.19.tar.gz) = 154374 bytes +SHA1 (patch-aa) = da3a68afe0ecd5b68d3ea4e0dfa6d2f07cec46df diff --git a/textproc/p5-Text-Markdown/patches/patch-aa b/textproc/p5-Text-Markdown/patches/patch-aa new file mode 100644 index 00000000000..f89ec868685 --- /dev/null +++ b/textproc/p5-Text-Markdown/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1 2008/06/01 04:22:55 schmonz Exp $ + +--- Makefile.PL.orig 2008-04-22 13:34:10.000000000 -0400 ++++ Makefile.PL +@@ -19,7 +19,7 @@ build_requires 'File::Slurp' => und + build_requires 'FindBin' => undef; + + # Scripts I install +-prompt_script('script/Markdown.pl'); +-prompt_script('script/MultiMarkdown.pl'); ++#prompt_script('script/Markdown.pl'); ++#prompt_script('script/MultiMarkdown.pl'); + + WriteAll; |