diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2003-12-21 17:03:51 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2003-12-21 17:03:51 +0000 |
commit | acdea2b2a5c41af8a8b22bb71d4ca090fb809db6 (patch) | |
tree | 3b583200af849fda196a184ba2eaa6da75e72871 /devel | |
parent | 5b92ee5df516300cadc2eb5e1dbc49ae86cbe477 (diff) | |
download | ports-acdea2b2a5c41af8a8b22bb71d4ca090fb809db6.tar.gz ports-acdea2b2a5c41af8a8b22bb71d4ca090fb809db6.zip |
- upgrade to 0.39
- remove redundant 'DESCRIPTION' header from pkg-descr
PR: 60410
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=96319
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-Proc-ProcessTable/Makefile | 2 | ||||
-rw-r--r-- | devel/p5-Proc-ProcessTable/distinfo | 2 | ||||
-rw-r--r-- | devel/p5-Proc-ProcessTable/files/patch-processtable.xs | 35 | ||||
-rw-r--r-- | devel/p5-Proc-ProcessTable/pkg-descr | 2 |
4 files changed, 37 insertions, 4 deletions
diff --git a/devel/p5-Proc-ProcessTable/Makefile b/devel/p5-Proc-ProcessTable/Makefile index 6374318f9749..5f43f95924fe 100644 --- a/devel/p5-Proc-ProcessTable/Makefile +++ b/devel/p5-Proc-ProcessTable/Makefile @@ -6,7 +6,7 @@ # PORTNAME= Proc-ProcessTable -PORTVERSION= 0.38 +PORTVERSION= 0.39 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Proc diff --git a/devel/p5-Proc-ProcessTable/distinfo b/devel/p5-Proc-ProcessTable/distinfo index aaace0199ebd..290d07aa637a 100644 --- a/devel/p5-Proc-ProcessTable/distinfo +++ b/devel/p5-Proc-ProcessTable/distinfo @@ -1 +1 @@ -MD5 (Proc-ProcessTable-0.38.tar.gz) = 69d25190ed3bfd56f12c9e6932528c62 +MD5 (Proc-ProcessTable-0.39.tar.gz) = c153cf906e8b71ac847fa5c3e79970de diff --git a/devel/p5-Proc-ProcessTable/files/patch-processtable.xs b/devel/p5-Proc-ProcessTable/files/patch-processtable.xs new file mode 100644 index 000000000000..f3ef536eb9c3 --- /dev/null +++ b/devel/p5-Proc-ProcessTable/files/patch-processtable.xs @@ -0,0 +1,35 @@ +$FreeBSD$ + +--- ProcessTable.xs.orig Sat May 31 13:05:56 2003 ++++ ProcessTable.xs Sat Dec 20 20:16:41 2003 +@@ -32,7 +32,6 @@ + #include <stdarg.h> + + /* prototypes to make the compiler shut up */ +-void ppt_warn(const char*, ...); + void ppt_die(const char*, ...); + void store_ttydev(HV*, unsigned long); + void bless_into_proc(char* , char**, ...); +@@ -56,22 +55,7 @@ + * croak() in perl 5.8?? warn and croak exist in 5.6, but don't + * seem to accept format args. + */ +-void ppt_warn(const char *pat, ...) { +- dTHX; +- va_list args; +- va_start(args, pat); +- vwarn(pat, &args); +- va_end(args); +-} + +-/* same with croak */ +-void ppt_croak(const char *pat, ...) { +- dTHX; +- va_list args; +- va_start(args, pat); +- vcroak(pat, &args); +- va_end(args); +-} + + /* Look up the tty device, given the ttynum and store it */ + void store_ttydev( HV* myhash, unsigned long ttynum ){ diff --git a/devel/p5-Proc-ProcessTable/pkg-descr b/devel/p5-Proc-ProcessTable/pkg-descr index 2857d6c313f7..08bb807ed731 100644 --- a/devel/p5-Proc-ProcessTable/pkg-descr +++ b/devel/p5-Proc-ProcessTable/pkg-descr @@ -1,5 +1,3 @@ -DESCRIPTION -=========== This module is a first crack at providing a consistent interface to Unix (and maybe other multitasking OS's) process table information. The impetus for this came about with my frustration at having to parse |