diff options
author | seb <seb@pkgsrc.org> | 2009-11-11 06:34:29 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2009-11-11 06:34:29 +0000 |
commit | 7ffcbd9f82649c3abd34f9e3329e58b194e2faf0 (patch) | |
tree | 55322313f411685acb1aa0b5911910fab26c1ee3 /textproc/p5-Text-Markdown | |
parent | c97d81691169b4a97b150b59b8319080c9f6bac4 (diff) | |
download | pkgsrc-7ffcbd9f82649c3abd34f9e3329e58b194e2faf0.tar.gz |
Update p5-Text-Markdown from version 1.0.25 to version 1.0.29 (upstream
version 1.000029)
Pkgsrc changes:
- Adjust dependencies.
- Don't override Module::Install as extensions are bundled by upstream
Upstream changes:
1.0.29 2009-10-28T15:19:26
- Note Test::Differences is needed for tests to run (RT#50918)
- Change build_requires to test_requires in Makefile.PL where
appropriate.
1.0.28 2009-10-27T14:28:12
- Fix MANIFEST.skip to avoid extraneous crap in the distribution.
1.0.27 2009-10-25T19:13:47
- Change to perl style version numbers (from 3 part versions) to
avoid depndency confusion with Text::MultiMarkdown
1.0.26 2009-10-04T00:37:00
- Minor POD changes (typos, wrapping)
- Added note about and test for output always ending in exactly one newline (dandv)
- Fix RT#48943 + tests (genehack)
- Support for optionally interpreting markdown in HTML block elements
using the markdown="1" attribute (GitHub issue #1; dandv)
Diffstat (limited to 'textproc/p5-Text-Markdown')
-rw-r--r-- | textproc/p5-Text-Markdown/Makefile | 8 | ||||
-rw-r--r-- | textproc/p5-Text-Markdown/distinfo | 10 | ||||
-rw-r--r-- | textproc/p5-Text-Markdown/patches/patch-aa | 10 |
3 files changed, 14 insertions, 14 deletions
diff --git a/textproc/p5-Text-Markdown/Makefile b/textproc/p5-Text-Markdown/Makefile index 281ec4a35b2..484255faf67 100644 --- a/textproc/p5-Text-Markdown/Makefile +++ b/textproc/p5-Text-Markdown/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.8 2009/09/12 19:57:27 sno Exp $ +# $NetBSD: Makefile,v 1.9 2009/11/11 06:34:29 seb Exp $ # -DISTNAME= Text-Markdown-1.0.25 -PKGNAME= p5-${DISTNAME} +DISTNAME= Text-Markdown-1.000029 +PKGNAME= p5-Text-Markdown-1.0.29 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Text/} @@ -16,9 +16,9 @@ PKG_DESTDIR_SUPPORT= user-destdir BUILD_DEPENDS+= p5-File-Slurp>=9999.08:../../devel/p5-File-Slurp BUILD_DEPENDS+= p5-List-MoreUtils-[0-9]*:../../devel/p5-List-MoreUtils BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception +BUILD_DEPENDS+= p5-Test-Differences-[0-9]*:../../devel/p5-Test-Differences PERL5_PACKLIST= auto/Text/Markdown/.packlist -PERL5_MODULE_TYPE= Module::Install USE_LANGUAGES= # none .include "../../lang/perl5/module.mk" diff --git a/textproc/p5-Text-Markdown/distinfo b/textproc/p5-Text-Markdown/distinfo index 29b2794ea65..f0bb83c1fa3 100644 --- a/textproc/p5-Text-Markdown/distinfo +++ b/textproc/p5-Text-Markdown/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.6 2009/09/12 19:57:27 sno Exp $ +$NetBSD: distinfo,v 1.7 2009/11/11 06:34:29 seb Exp $ -SHA1 (Text-Markdown-1.0.25.tar.gz) = 93edda9b3674a147d0aeadbd43b3206b46aba3b1 -RMD160 (Text-Markdown-1.0.25.tar.gz) = 950e439359e6fd286627502e8168186b95091b91 -Size (Text-Markdown-1.0.25.tar.gz) = 98076 bytes -SHA1 (patch-aa) = f41cb2a919218ae83559898f55952f160b074f07 +SHA1 (Text-Markdown-1.000029.tar.gz) = deac16e70cd7029f6fa7d997f943c263b2488d47 +RMD160 (Text-Markdown-1.000029.tar.gz) = 04ebf8458b95140cb22896bece53d083910cb357 +Size (Text-Markdown-1.000029.tar.gz) = 114029 bytes +SHA1 (patch-aa) = ba922871c9aea5d04585ff1c01006f0d0508adfe diff --git a/textproc/p5-Text-Markdown/patches/patch-aa b/textproc/p5-Text-Markdown/patches/patch-aa index 711eb5ddefd..9b94bd76fc5 100644 --- a/textproc/p5-Text-Markdown/patches/patch-aa +++ b/textproc/p5-Text-Markdown/patches/patch-aa @@ -1,9 +1,9 @@ -$NetBSD: patch-aa,v 1.2 2009/09/12 19:57:27 sno Exp $ +$NetBSD: patch-aa,v 1.3 2009/11/11 06:34:29 seb Exp $ ---- Makefile.PL.orig 2009-08-25 08:31:09.000000000 +0000 -+++ Makefile.PL 2009-09-12 19:53:37.000000000 +0000 -@@ -22,6 +22,6 @@ - build_requires 'FindBin' => undef; +--- Makefile.PL.orig 2009-10-28 15:20:58.000000000 +0000 ++++ Makefile.PL +@@ -33,6 +33,6 @@ check_conflicts( + ); # Scripts I install -prompt_script('script/Markdown.pl'); |