ports/152347: [MAINTAINER] sysutils/moreutils: update to 0.43
Charlie Kester
corky1951 at comcast.net
Thu Nov 18 02:30:11 UTC 2010
>Number: 152347
>Category: ports
>Synopsis: [MAINTAINER] sysutils/moreutils: update to 0.43
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: maintainer-update
>Submitter-Id: current-users
>Arrival-Date: Thu Nov 18 02:30:10 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator: Charlie Kester
>Release: FreeBSD 8.1-STABLE i386
>Organization:
>Environment:
System: FreeBSD atom.local 8.1-STABLE FreeBSD 8.1-STABLE #0: Tue Nov 16 17:15:14 PST 2010 root at atom.local:/usr/obj/usr/src/sys/ATOM i386
>Description:
Update to version 0.43
- chronic: New utility; runs a command quietly, unless it fails
- Now depends on IPC::Run, used by chronic
>How-To-Repeat:
>Fix:
---
No port files added or removed.
Minor changes only.
---
--- moreutils-0.43.diff begins here ---
diff -ruN /usr/ports/sysutils/moreutils/Makefile ./moreutils/Makefile
--- /usr/ports/sysutils/moreutils/Makefile 2010-10-09 00:36:20.000000000 -0700
+++ ./moreutils/Makefile 2010-11-17 18:05:43.000000000 -0800
@@ -7,7 +7,7 @@
#
PORTNAME= moreutils
-PORTVERSION= 0.42
+PORTVERSION= 0.43
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL}
DISTNAME= ${PORTNAME}_${PORTVERSION}
@@ -17,9 +17,12 @@
CONFLICTS= parallel-[0-9]*
+RUN_DEPENDS= ${SITE_PERL}/IPC/Run.pm:${PORTSDIR}/devel/p5-IPC-Run
+
USE_PERL5= yes
-PLIST_FILES= bin/combine \
+PLIST_FILES= bin/chronic \
+ bin/combine \
bin/ifne \
bin/isutf8 \
bin/lckdo \
@@ -39,7 +42,8 @@
.include <bsd.port.pre.mk>
.if !defined(NO_INSTALL_MANPAGES)
-MAN1= combine.1 \
+MAN1= chronic.1 \
+ combine.1 \
ifne.1 \
isutf8.1 \
lckdo.1 \
diff -ruN /usr/ports/sysutils/moreutils/distinfo ./moreutils/distinfo
--- /usr/ports/sysutils/moreutils/distinfo 2010-10-08 00:38:16.000000000 -0700
+++ ./moreutils/distinfo 2010-11-17 18:05:43.000000000 -0800
@@ -1,3 +1,2 @@
-MD5 (moreutils_0.42.tar.gz) = 9bac64540b315e9008521a9fea19d9ab
-SHA256 (moreutils_0.42.tar.gz) = 71cf9b37dd5093d51c4c7bbebca786bee54806b13b9c6be683f486fc0d5b614f
-SIZE (moreutils_0.42.tar.gz) = 43296
+SHA256 (moreutils_0.43.tar.gz) = 09e31e4f308bb1e8f9ab4f7d57f9e3c8246e3e3824015534af59763114a85c7d
+SIZE (moreutils_0.43.tar.gz) = 44233
diff -ruN /usr/ports/sysutils/moreutils/files/patch-Makefile ./moreutils/files/patch-Makefile
--- /usr/ports/sysutils/moreutils/files/patch-Makefile 2010-02-12 01:23:58.000000000 -0800
+++ ./moreutils/files/patch-Makefile 2010-11-17 16:02:26.000000000 -0800
@@ -1,10 +1,10 @@
---- Makefile.orig 2009-07-02 12:00:44.000000000 -0700
-+++ Makefile 2010-02-09 22:13:14.000000000 -0800
-@@ -1,51 +1,34 @@
+--- ./Makefile.orig 2010-10-29 12:47:09.000000000 -0700
++++ ./Makefile 2010-11-17 16:02:08.000000000 -0800
+@@ -1,51 +1,35 @@
-BINS=isutf8 ifdata ifne pee sponge mispipe lckdo parallel
+BINS=isutf8 ifne pee sponge mispipe lckdo parallel
- PERLSCRIPTS=vidir vipe ts combine zrun
--MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 mispipe.1 lckdo.1 parallel.1
+ PERLSCRIPTS=vidir vipe ts combine zrun chronic
+-MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 chronic.1 mispipe.1 lckdo.1 parallel.1
-CFLAGS=-O2 -g -Wall
+MANS=sponge.1 isutf8.1 ifne.1 pee.1 mispipe.1 lckdo.1 parallel.1
+CFLAGS+= -Wall
@@ -12,16 +12,17 @@
-PREFIX=/usr
-DOCBOOK2XMAN=docbook2x-man
++
+.SUFFIXES: .1 .docbook
+
+DOCBOOK2XMAN= ${LOCALBASE}/bin/xsltproc ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl
all: $(BINS) $(MANS)
-
++
+bins: ${BINS}
+
+mans: ${MANS}
-+
+
clean:
rm -f $(BINS) $(MANS)
diff -ruN /usr/ports/sysutils/moreutils/files/patch-parallel.c ./moreutils/files/patch-parallel.c
--- /usr/ports/sysutils/moreutils/files/patch-parallel.c 2010-02-12 01:23:58.000000000 -0800
+++ ./moreutils/files/patch-parallel.c 2010-11-17 16:02:26.000000000 -0800
@@ -1,6 +1,6 @@
---- parallel.c.orig 2010-02-09 12:39:08.000000000 -0800
-+++ parallel.c 2010-02-09 22:27:25.000000000 -0800
-@@ -76,6 +76,7 @@
+--- ./parallel.c.orig 2010-07-06 12:06:47.000000000 -0700
++++ ./parallel.c 2010-11-17 15:49:57.000000000 -0800
+@@ -87,6 +87,7 @@
return;
}
@@ -8,8 +8,8 @@
int wait_for_child(int options) {
id_t id_ignored = 0;
siginfo_t infop;
-@@ -88,6 +89,18 @@
- return infop.si_status;
+@@ -101,6 +102,18 @@
+ }
return 1;
}
+#else
diff -ruN /usr/ports/sysutils/moreutils/pkg-descr ./moreutils/pkg-descr
--- /usr/ports/sysutils/moreutils/pkg-descr 2009-09-20 11:54:27.000000000 -0700
+++ ./moreutils/pkg-descr 2010-11-17 18:12:02.000000000 -0800
@@ -15,7 +15,8 @@
- isutf8: check if a file or standard input is utf-8
- lckdo: execute a program with a lock held
- parallel: run multiple jobs at once
+ - chronic: run a command quietly, unless it fails
-The 'ifdata' utility is not included in this FreeBSD port.
+The Linux-specific 'ifdata' utility is not included in this FreeBSD port.
WWW: http://kitenet.net/~joey/code/moreutils/
--- moreutils-0.43.diff ends here ---
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list