pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/p5-B-Hooks-Parser pkgsrc changes:
details: https://anonhg.NetBSD.org/pkgsrc/rev/bdd188c7cf9c
branches: trunk
changeset: 395319:bdd188c7cf9c
user: sno <sno%pkgsrc.org@localhost>
date: Tue Jul 07 20:46:53 2009 +0000
description:
pkgsrc changes:
- Updating package for p5 module B::Hooks::Parser from 0.08 to 0.09
- Adjusting dependencies according to META.yml
- Setting license according to META.yml
Upstream changes:
0.09 Wed, 03 Jun 2009 13:20:21 +0200
* Don't redefine various macros if they already exist.
* Add B::Hooks::Toke::skipspace function (Liu Kang-min).
diffstat:
devel/p5-B-Hooks-Parser/Makefile | 9 ++++++---
devel/p5-B-Hooks-Parser/distinfo | 10 +++++-----
devel/p5-B-Hooks-Parser/patches/patch-aa | 23 ++++++++++-------------
3 files changed, 21 insertions(+), 21 deletions(-)
diffs (74 lines):
diff -r 1798fb552e30 -r bdd188c7cf9c devel/p5-B-Hooks-Parser/Makefile
--- a/devel/p5-B-Hooks-Parser/Makefile Tue Jul 07 20:46:04 2009 +0000
+++ b/devel/p5-B-Hooks-Parser/Makefile Tue Jul 07 20:46:53 2009 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.1.1.1 2009/01/19 18:02:57 abs Exp $
+# $NetBSD: Makefile,v 1.2 2009/07/07 20:46:53 sno Exp $
#
-DISTNAME= B-Hooks-Parser-0.08
+DISTNAME= B-Hooks-Parser-0.09
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=B/}
@@ -9,9 +9,12 @@
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://search.cpan.org/dist/B-Hooks-Parser/
COMMENT= Interface to perls parser variables
+LICENSE= ${PERL5_LICENSE}
+DEPENDS+= p5-parent>0:../../devel/p5-parent
+
+BUILD_DEPENDS+= p5-B-Hooks-EndOfScope-[0-9]*:../../devel/p5-B-Hooks-EndOfScope
BUILD_DEPENDS+= p5-ExtUtils-Depends>0:../../devel/p5-ExtUtils-Depends
-DEPENDS+= p5-parent>0:../../devel/p5-parent
PKG_DESTDIR_SUPPORT= user-destdir
diff -r 1798fb552e30 -r bdd188c7cf9c devel/p5-B-Hooks-Parser/distinfo
--- a/devel/p5-B-Hooks-Parser/distinfo Tue Jul 07 20:46:04 2009 +0000
+++ b/devel/p5-B-Hooks-Parser/distinfo Tue Jul 07 20:46:53 2009 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1.1.1 2009/01/19 18:02:57 abs Exp $
+$NetBSD: distinfo,v 1.2 2009/07/07 20:46:53 sno Exp $
-SHA1 (B-Hooks-Parser-0.08.tar.gz) = 3566f9e7c6c7adbedab5af3da9e19cb6de60243d
-RMD160 (B-Hooks-Parser-0.08.tar.gz) = c1eb5205510913d301d32fe0c6894d5e19223032
-Size (B-Hooks-Parser-0.08.tar.gz) = 65716 bytes
-SHA1 (patch-aa) = 19a6f2dab8be6f3f6d5a562223740c1ce394ee72
+SHA1 (B-Hooks-Parser-0.09.tar.gz) = d88bac9785f6d5a1f4092d63403f3458ef2e00d9
+RMD160 (B-Hooks-Parser-0.09.tar.gz) = 32e0f5714dc5d88139fd8664150a9ee40297107b
+Size (B-Hooks-Parser-0.09.tar.gz) = 67510 bytes
+SHA1 (patch-aa) = 5de150e40cd2db27b5c85c2d9a81e531d7183388
diff -r 1798fb552e30 -r bdd188c7cf9c devel/p5-B-Hooks-Parser/patches/patch-aa
--- a/devel/p5-B-Hooks-Parser/patches/patch-aa Tue Jul 07 20:46:04 2009 +0000
+++ b/devel/p5-B-Hooks-Parser/patches/patch-aa Tue Jul 07 20:46:53 2009 +0000
@@ -1,18 +1,15 @@
-$NetBSD: patch-aa,v 1.1.1.1 2009/01/19 18:02:57 abs Exp $
+$NetBSD: patch-aa,v 1.2 2009/07/07 20:46:53 sno Exp $
Do not error out if perl was built without PERL_MALLOC_WRAP
---- stolen_chunk_of_toke.c.orig 2009-01-19 15:42:56.000000000 +0000
-+++ stolen_chunk_of_toke.c
-@@ -39,7 +39,10 @@ STATIC char* S_scan_word(pTHX_ char *
- #define DPTR2FPTR(t,p) ((t)PTR2nat(p)) /* data pointer to function pointer */
- #define FPTR2DPTR(t,p) ((t)PTR2nat(p)) /* function pointer to data pointer */
+--- stolen_chunk_of_toke.c.orig 2009-06-03 11:18:50.000000000 +0000
++++ stolen_chunk_of_toke.c 2009-06-22 07:23:46.000000000 +0000
+@@ -48,7 +48,7 @@
#define PTR2nat(p) (PTRV)(p) /* pointer to integer of PTRSIZE */
--#define MEM_WRAP_CHECK_(n,t) MEM_WRAP_CHECK(n,t),
-+
-+#ifdef PERL_MALLOC_WRAP
-+# define MEM_WRAP_CHECK_(n,t) MEM_WRAP_CHECK(n,t),
-+#endif
+ #endif
- /* On MacOS, respect nonbreaking spaces */
- #ifdef MACOS_TRADITIONAL
+-#ifndef MEM_WRAP_CHECK_
++#if defined(PERL_MALLOC_WRAP) && !defined(MEM_WRAP_CHECK_)
+ #define MEM_WRAP_CHECK_(n,t) MEM_WRAP_CHECK(n,t),
+ #endif
+
Home |
Main Index |
Thread Index |
Old Index