Date: Sat, 11 Jul 2009 01:54:39 -0700 From: Charlie Kester <corky1951@comcast.net> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/136658: [MAINTAINER PATCH] sysutils/moreutils: update to 0.36 Message-ID: <20090711085441.843C18FC29@mx1.freebsd.org> Resent-Message-ID: <200907110900.n6B901Q3025304@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 136658 >Category: ports >Synopsis: [MAINTAINER PATCH] sysutils/moreutils: update to 0.36 >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: Sat Jul 11 09:00:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Charlie Kester <corky1951@comcast.net> >Release: FreeBSD 7.2-RELEASE i386 >Organization: >Environment: System: FreeBSD atom.local 7.2-RELEASE FreeBSD 7.2-RELEASE #1: Mon May 4 15:50:49 PDT 2009 root@atom.local:/usr/obj/usr/src/sys/ATOM i386 >Description: Per the project website, this release fixes the following bug: * mispipe: Fix closing of extra pipe FD before starting command so it is not inherited by daemons. It also included a new utility named parallel, but I have not included it in this port because it uses the waitid function which isn't yet available on FreeBSD. I'm also taking this opportunity to note the omitted utilities in the pkg-descr file. >How-To-Repeat: >Fix: --- moreutils-0.36.diff begins here --- diff -ruN /usr/ports/sysutils/moreutils/Makefile ./moreutils/Makefile --- /usr/ports/sysutils/moreutils/Makefile 2009-06-21 03:24:49.000000000 -0700 +++ ./moreutils/Makefile 2009-07-11 00:15:24.000000000 -0700 @@ -7,7 +7,7 @@ # PORTNAME= moreutils -PORTVERSION= 0.35 +PORTVERSION= 0.36 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} DISTNAME= ${PORTNAME}_${PORTVERSION} diff -ruN /usr/ports/sysutils/moreutils/distinfo ./moreutils/distinfo --- /usr/ports/sysutils/moreutils/distinfo 2009-06-21 03:24:49.000000000 -0700 +++ ./moreutils/distinfo 2009-07-10 23:18:53.000000000 -0700 @@ -1,3 +1,3 @@ -MD5 (moreutils_0.35.tar.gz) = e3089831539284f740f0180ec589d079 -SHA256 (moreutils_0.35.tar.gz) = 8ac8467171c099a1c5b661f02286d59ba264c2034c77a30832015cc68f62ed2e -SIZE (moreutils_0.35.tar.gz) = 37009 +MD5 (moreutils_0.36.tar.gz) = c2df31a6c2e1ab5344808d5401365fba +SHA256 (moreutils_0.36.tar.gz) = 5e450f96e7aff87f3b32f389d46fdb6bb84c736579ad053351efa42f80c29a7b +SIZE (moreutils_0.36.tar.gz) = 39266 diff -ruN /usr/ports/sysutils/moreutils/files/patch-Makefile ./moreutils/files/patch-Makefile --- /usr/ports/sysutils/moreutils/files/patch-Makefile 2009-06-21 03:24:50.000000000 -0700 +++ ./moreutils/files/patch-Makefile 2009-07-11 00:12:27.000000000 -0700 @@ -1,10 +1,10 @@ ---- Makefile.orig 2009-05-05 12:09:22.000000000 -0700 -+++ Makefile 2009-06-20 07:59:27.000000000 -0700 -@@ -1,24 +1,24 @@ --BINS=isutf8 ifdata ifne pee sponge mispipe lckdo +--- Makefile.orig 2009-07-02 12:00:44.000000000 -0700 ++++ Makefile 2009-07-10 23:24:22.000000000 -0700 +@@ -1,25 +1,25 @@ +-BINS=isutf8 ifdata ifne pee sponge mispipe lckdo parallel +BINS=isutf8 ifne pee sponge mispipe lckdo 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 +-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 +MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifne.1 pee.1 zrun.1 mispipe.1 lckdo.1 CFLAGS=-O2 -g -Wall INSTALL_BIN?=install -s @@ -26,12 +26,13 @@ - mkdir -p $(DESTDIR)$(PREFIX)/bin - $(INSTALL_BIN) $(BINS) $(DESTDIR)$(PREFIX)/bin - install $(PERLSCRIPTS) $(DESTDIR)$(PREFIX)/bin -- -- mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 -- install $(MANS) $(DESTDIR)$(PREFIX)/share/man/man1 + mkdir -p $(PREFIX)/bin + $(INSTALL_BIN) $(BINS) $(PREFIX)/bin + install $(PERLSCRIPTS) $(PREFIX)/bin - + +- mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 +- install $(MANS) $(DESTDIR)$(PREFIX)/share/man/man1 +- check: isutf8 ./check-isutf8 + diff -ruN /usr/ports/sysutils/moreutils/pkg-descr ./moreutils/pkg-descr --- /usr/ports/sysutils/moreutils/pkg-descr 2009-06-21 03:24:49.000000000 -0700 +++ ./moreutils/pkg-descr 2009-07-11 00:14:54.000000000 -0700 @@ -15,4 +15,6 @@ - isutf8: check if a file or standard input is utf-8 - lckdo: execute a program with a lock held +The 'ifdata' and 'parallel' utilities are not included in this FreeBSD port. + WWW: http://kitenet.net/~joey/code/moreutils/ --- moreutils-0.36.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20090711085441.843C18FC29>