Bug 143406 - [MAINTAINER-UPDATE] ports-mgmt/bpkg: update to 2.0.10
Summary: [MAINTAINER-UPDATE] ports-mgmt/bpkg: update to 2.0.10
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Philip M. Gollucci
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-01-31 16:00 UTC by Andy Kosela
Modified: 2010-02-04 04:10 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andy Kosela 2010-01-31 16:00:04 UTC
- Update to 2.0.10
  * fix typo that break bpkg(8) on CURRENT
  * manual page reformat

Fix: 

--
Andy Kosela
akosela@andykosela.com--t7hti0Pv6EnfpEA8lZmBr6I5D0YYrPcfXFqzM82QtKZuhdzG
Content-Type: text/plain; name="bpkg-2.0.10.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="bpkg-2.0.10.patch"

diff -ruN --exclude=CVS /usr/ports/ports-mgmt/bpkg/Makefile /usr/home/akosela/bpkg/Makefile
--- /usr/ports/ports-mgmt/bpkg/Makefile	2009-12-26 19:02:32.000000000 +0100
+++ /usr/home/akosela/bpkg/Makefile	2010-01-31 15:41:18.000000000 +0100
@@ -8,7 +8,7 @@
 #
 
 PORTNAME=	bpkg
-PORTVERSION=	2.0.9
+PORTVERSION=	2.0.10
 CATEGORIES=	ports-mgmt
 MASTER_SITES=	# none
 DISTFILES=	# none
@@ -19,12 +19,12 @@
 NO_BUILD=	yes
 SUB_FILES=	bpkg.sh
 
-PLIST_FILES=	sbin/bpkg
+PLIST_FILES=	bin/bpkg
 
 MAN8=		bpkg.8
 
 do-install:
-	${INSTALL_SCRIPT} ${WRKDIR}/bpkg.sh ${PREFIX}/sbin/bpkg
+	${INSTALL_SCRIPT} ${WRKDIR}/bpkg.sh ${PREFIX}/bin/bpkg
 	${INSTALL_MAN} ${FILESDIR}/bpkg.8 ${MAN8PREFIX}/man/man8
 
 .include <bsd.port.mk>
diff -ruN --exclude=CVS /usr/ports/ports-mgmt/bpkg/files/bpkg.8 /usr/home/akosela/bpkg/files/bpkg.8
--- /usr/ports/ports-mgmt/bpkg/files/bpkg.8	2009-12-26 19:02:32.000000000 +0100
+++ /usr/home/akosela/bpkg/files/bpkg.8	2010-01-31 15:45:05.000000000 +0100
@@ -1,4 +1,4 @@
-.\" Copyright (c) 2007-2009 Andy Kosela <akosela@andykosela.com>
+.\" Copyright (c) 2007-2010 Andy Kosela <akosela@andykosela.com>
 .\" All rights reserved.
 .\"
 .\" Redistribution and use in source and binary forms, with or without
@@ -25,7 +25,7 @@
 .\" SUCH DAMAGE.
 .\"
 .\"
-.Dd December 25, 2009
+.Dd January 31, 2010
 .Dt BPKG 8
 .Os
 .Sh NAME
@@ -128,19 +128,19 @@
 .Nm
 command:
 .Pp
-.Dl "plato> bpkg -i foo" 
+.Dl "$ bpkg -i foo" 
 .Pp
 Display info about port foo.
 .Pp
-.Dl "plato> bpkg -S 'foo[0-9]+$'"
+.Dl "$ bpkg -S 'foo[0-9]+$'"
 .Pp
 Display all ports matching the regular expression.
 .Pp
-.Dl "plato> bpkg -t | head"
+.Dl "$ bpkg -t | head"
 .Pp
 Display 10 most recently installed ports.
 .Pp
-.Dl "plato> bpkg -b 'foo bar'"
+.Dl "$ bpkg -b 'foo bar'"
 .Pp
 Create backup packages of foo and bar in /var/tmp/bpkg/ directory.
 .Sh SEE ALSO
diff -ruN --exclude=CVS /usr/ports/ports-mgmt/bpkg/files/bpkg.sh.in /usr/home/akosela/bpkg/files/bpkg.sh.in
--- /usr/ports/ports-mgmt/bpkg/files/bpkg.sh.in	2009-12-26 19:02:32.000000000 +0100
+++ /usr/home/akosela/bpkg/files/bpkg.sh.in	2010-01-31 15:47:37.000000000 +0100
@@ -1,7 +1,7 @@
 #!/bin/sh
 # $FreeBSD: ports/ports-mgmt/bpkg/files/bpkg.sh.in,v 1.23 2009/12/26 18:02:32 miwi Exp $
 
-#  Copyright (c) 2007-2009 Andy Kosela <akosela@andykosela.com>
+#  Copyright (c) 2007-2010 Andy Kosela <akosela@andykosela.com>
 #  All rights reserved.
 #
 #  Redistribution and use in source and binary forms, with or without
@@ -43,7 +43,7 @@
 	fi
 }
 
-########################################################################
+#######################################################################
 # Start of main functions
 
 pkg_info-xI()
@@ -517,7 +517,7 @@
 	cd /var/tmp/bpkg/
 
 	for e in $pkg; do
-		i=`pkg_info -xoQ ^$e | cut -d: -f1'`
+		i=`pkg_info -xoQ ^$e | cut -d: -f1`
 		pkg_create -xb $i 1>/dev/null 2>&1
 	done
 	echo "Done."
@@ -1092,7 +1092,7 @@
 }
 
 # End of functions
-########################################################################
+#######################################################################
 
 while 
 getopts a:b:D:d:e:F:f:g:I:i:j:k:L:M:m:O:o:p:Q:q:r:S:s:w:z:BCchltvZ opts
Comment 1 Philip M. Gollucci freebsd_committer freebsd_triage 2010-02-01 04:03:44 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pgollucci

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2010-02-04 04:03:53 UTC
pgollucci    2010-02-04 04:03:44 UTC

  FreeBSD ports repository

  Modified files:
    ports-mgmt/bpkg      Makefile 
    ports-mgmt/bpkg/files bpkg.8 bpkg.sh.in 
  Log:
  - Update to 2.0.10
  * fix typo that break bpkg(8) on CURRENT
  * manual page reformat
  
  PR:             ports/143406
  Submitted by:   Andy Kosela <akosela@andykosela.com> (maintainer)
  
  Revision  Changes    Path
  1.25      +3 -3      ports/ports-mgmt/bpkg/Makefile
  1.18      +6 -6      ports/ports-mgmt/bpkg/files/bpkg.8
  1.24      +5 -5      ports/ports-mgmt/bpkg/files/bpkg.sh.in
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Philip M. Gollucci freebsd_committer freebsd_triage 2010-02-04 04:10:16 UTC
State Changed
From-To: open->closed

Committed, thanks