ports/116254: [MAINTAINER-UPDATE] ports-mgmt/bpkg: update to 1.5

Andy Kosela andy.kosela at gmail.com
Mon Sep 10 09:10:02 UTC 2007


>Number:         116254
>Category:       ports
>Synopsis:       [MAINTAINER-UPDATE] ports-mgmt/bpkg: update to 1.5
>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:   Mon Sep 10 09:10:01 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Andy kosela
>Release:        FreeBSD 6.2-RELEASE-p2 i386
>Organization:
Protect Ya Neck Records/Wu-Tang Management
>Environment:
System: FreeBSD aegis.um.lublin.pl 6.2-RELEASE-p2 FreeBSD 6.2-RELEASE-p2 #0: Tue Feb 27 22:56:09 UTC 2007
>Description:
- Update to 1.5

>How-To-Repeat:
>Fix:

--- bpkg-1.5.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/ports-mgmt/bpkg/Makefile /usr/home/spear/downloads/bpkg-1.5/Makefile
--- /usr/ports/ports-mgmt/bpkg/Makefile	Fri Aug 17 10:42:35 2007
+++ /usr/home/spear/downloads/bpkg-1.5/Makefile	Mon Sep 10 11:05:20 2007
@@ -2,13 +2,13 @@
 # Date created:				24 June 2007
 # Whom:					Andy Kosela <andy.kosela at gmail.com>
 #
-# $FreeBSD: ports/ports-mgmt/bpkg/Makefile,v 1.6 2007/08/17 08:42:35 mm Exp $
+# $FreeBSD$
 #
 # This port is self contained in the files directory.
 #
 
 PORTNAME=	bpkg
-PORTVERSION=	1.4
+PORTVERSION=	1.5
 CATEGORIES=	ports-mgmt
 MASTER_SITES=	# none
 DISTFILES=	# none
diff -ruN --exclude=CVS /usr/ports/ports-mgmt/bpkg/files/bpkg.sh.in /usr/home/spear/downloads/bpkg-1.5/files/bpkg.sh.in
--- /usr/ports/ports-mgmt/bpkg/files/bpkg.sh.in	Fri Aug 17 10:42:35 2007
+++ /usr/home/spear/downloads/bpkg-1.5/files/bpkg.sh.in	Mon Sep 10 11:03:36 2007
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $FreeBSD: ports/ports-mgmt/bpkg/files/bpkg.sh.in,v 1.5 2007/08/17 08:42:35 mm Exp $
+# $FreeBSD$
 
 #  Copyright (c) 2007 Andy Kosela <andy.kosela at gmail.com>
 #  All rights reserved.
@@ -287,7 +287,7 @@
 		info=`grep $e /var/db/pkg/*/+CONTENTS | grep -w ORIGIN | cut -d/ -f5`
 	
 		if [ -z "$info" ]; then
-			path=`cd /usr/ports && make search path=/$e | grep Path | cut -d/ -f4,5`
+			path=`cd /usr/ports && make search path=/$e | grep -w Path | cut -d/ -f4,5`
 			echo -e "\033[33m*** not installed ***\033[0m"
 			for i in $path; do
 				echo "$i: `cat /usr/ports/$i/Makefile | grep COMMENT | cut -d= -f2`"
@@ -348,10 +348,10 @@
 		info=`grep $e /var/db/pkg/*/+CONTENTS | grep -w ORIGIN | cut -d: -f3`
 	
 		if [ -z "$info" ]; then
-			path=`cd /usr/ports && make search path=/$e.* | grep Path | cut -d/ -f4,5`
+			path=`cd /usr/ports && make search path=/$e.* | grep -w Path | cut -d/ -f4,5`
 			for i in $path; do
 				echo -e "\033[33m*** not installed ***\033[0m"
-				echo "$i: `cat /usr/ports/$i/Makefile | grep COMMENT | cut -d= -f2`"
+				echo "$i: `cat /usr/ports/$i/Makefile | grep -w COMMENT | cut -d= -f2`"
 				echo ""
 				echo "Information in ports for `echo $i | cut -d/ -f2`:"
 				echo ""
@@ -397,10 +397,10 @@
 		info=`grep $e /var/db/pkg/*/+CONTENTS | grep -w ORIGIN | cut -d: -f3`
 	
 		if [ -z "$info" ]; then
-			path=`cd /usr/ports && make search path=/$e.* | grep Path | cut -d/ -f4,5`
+			path=`cd /usr/ports && make search path=/$e.* | grep -w Path | cut -d/ -f4,5`
 			for i in $path; do
 				echo -e "\033[33m*** not installed ***\033[0m"
-				echo "$i: `cat /usr/ports/$i/Makefile | grep COMMENT | cut -d= -f2`"
+				echo "$i: `cat /usr/ports/$i/Makefile | grep -w COMMENT | cut -d= -f2`"
 				echo ""
 				echo "Packing list:"
 				cat /usr/ports/$i/pkg-plist
@@ -459,10 +459,10 @@
 		info=`grep $e /var/db/pkg/*/+CONTENTS | grep -w ORIGIN | cut -d: -f3`
 	
 		if [ -z "$info" ]; then
-			path=`cd /usr/ports && make search path=/$e.* | grep Path | cut -d/ -f4,5`
+			path=`cd /usr/ports && make search path=/$e.* | grep -w Path | cut -d/ -f4,5`
 			for i in $path; do
 				echo -e "\033[33m*** not installed ***\033[0m"
-				echo "$i: `cat /usr/ports/$i/Makefile | grep COMMENT | cut -d= -f2`"
+				echo "$i: `cat /usr/ports/$i/Makefile | grep -w COMMENT | cut -d= -f2`"
 				echo ""
 				echo "Description:"
 				echo "`cat /usr/ports/$i/pkg-descr`"
@@ -488,15 +488,15 @@
 }
 
 pkg_path() {
-	path=`cd /usr/ports && make search path=/$pkg | grep Path | cut -d/ -f4,5`
+	path=`cd /usr/ports && make search path=/$pkg | grep -w Path | cut -d/ -f4,5`
 	for e in $path; do
-		echo "$e" ; cat /usr/ports/$e/Makefile | grep COMMENT | cut -d= -f2
+		echo "$e" ; cat /usr/ports/$e/Makefile | grep -w COMMENT | cut -d= -f2
 	done
 	exit 0
 }
 
 pkg_makefile() {
-	path=`cd /usr/ports && make search path=/$pkg$ | grep Path | cut -d/ -f4,5`
+	path=`cd /usr/ports && make search path=/$pkg$ | grep -w Path | cut -d/ -f4,5`
 	[ -z "$path" ] && missing
 
 	less /usr/ports/$path/Makefile 2>/dev/null
@@ -508,7 +508,7 @@
 		info=`grep $e /var/db/pkg/*/+CONTENTS | grep -w ORIGIN | cut -d: -f3`
 	
 		if [ -z "$info" ]; then
-			path=`cd /usr/ports && make search path=/$e | grep Path | cut -d/ -f4,5`
+			path=`cd /usr/ports && make search path=/$e | grep -w Path | cut -d/ -f4,5`
 			for i in $path; do
 				echo -e "\033[33m*** not installed ***\033[0m"
 				cd /usr/ports && make search path=/$i$
--- bpkg-1.5.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list