From nobody@FreeBSD.org  Sat Apr  5 15:27:40 2014
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id 1F70F7FF
	for <freebsd-gnats-submit@FreeBSD.org>; Sat,  5 Apr 2014 15:27:40 +0000 (UTC)
Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(Client did not present a certificate)
	by mx1.freebsd.org (Postfix) with ESMTPS id 0BBA0CE8
	for <freebsd-gnats-submit@FreeBSD.org>; Sat,  5 Apr 2014 15:27:40 +0000 (UTC)
Received: from cgiserv.freebsd.org ([127.0.1.6])
	by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s35FRdLO041554
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 5 Apr 2014 15:27:39 GMT
	(envelope-from nobody@cgiserv.freebsd.org)
Received: (from nobody@localhost)
	by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s35FRdvs041546;
	Sat, 5 Apr 2014 15:27:39 GMT
	(envelope-from nobody)
Message-Id: <201404051527.s35FRdvs041546@cgiserv.freebsd.org>
Date: Sat, 5 Apr 2014 15:27:39 GMT
From: Pawel Pekala <pawel@FreeBSD.org>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [PATCH] bsd.port.mk document COPYTREE_BIN COPYTREE_SHARE
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         188292
>Category:       ports
>Synopsis:       [PATCH] bsd.port.mk document COPYTREE_BIN COPYTREE_SHARE
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    portmgr
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Apr 05 15:30:00 UTC 2014
>Closed-Date:    Sat Apr 05 16:08:57 UTC 2014
>Last-Modified:  Sat Apr  5 16:10:00 UTC 2014
>Originator:     Pawel Pekala
>Release:        10.0
>Organization:
>Environment:
FreeBSD caprica.slowicza.org 10.0-STABLE FreeBSD 10.0-STABLE #2 r262297: Fri Feb 21 17:42:25 CET 2014     root@caprica.slowicza.org:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
Doing staging work I noticed that COPYTREE_* commands are underused IMHO.
Document them so hopefully they will be more visible and widely used.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: bsd.port.mk
===================================================================
--- bsd.port.mk	(wersja 350228)
+++ bsd.port.mk	(kopia robocza)
@@ -587,7 +587,17 @@
 # INSTALL_DATA	- A command to install sharable data.
 # INSTALL_MAN	- A command to install manpages.  May or not compress,
 #				  depending on the value of MANCOMPRESSED (see below).
+# COPYTREE_BIN
+# COPYTREE_SHARE
+#				- Similiar to INSTALL commands but working on whole
+#				  trees of directories, takes 3 arguments, last one is
+#				  find(1) arguments and optional.
+#				  Example use: 
+#				  cd ${WRKSRC}/doc && ${COPYTREE} . ${DOCSDIR} "! -name *.bak"
 #
+#				  Installs all directories and files from ${WRKSRC}/doc
+#				  to ${DOCSDIR} except sed backup files.
+#
 # Boolean to control whether manpages are installed.
 #
 # NO_INSTALL_MANPAGES


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->portmgr 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sat Apr 5 15:30:06 UTC 2014 
Responsible-Changed-Why:  
bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=188292 

From: Baptiste Daroussin <bapt@FreeBSD.org>
To: Pawel Pekala <pawel@FreeBSD.org>
Cc: freebsd-gnats-submit@FreeBSD.org
Subject: Re: ports/188292: [PATCH] bsd.port.mk document COPYTREE_BIN
 COPYTREE_SHARE
Date: Sat, 5 Apr 2014 17:35:20 +0200

 --m972NQjnE83KvVa/
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 Content-Transfer-Encoding: quoted-printable
 
 On Sat, Apr 05, 2014 at 03:27:39PM +0000, Pawel Pekala wrote:
 >=20
 > >Number:         188292
 > >Category:       ports
 > >Synopsis:       [PATCH] bsd.port.mk document COPYTREE_BIN COPYTREE_SHARE
 > >Confidential:   no
 > >Severity:       non-critical
 > >Priority:       low
 > >Responsible:    freebsd-ports-bugs
 > >State:          open
 > >Quarter:       =20
 > >Keywords:      =20
 > >Date-Required:
 > >Class:          change-request
 > >Submitter-Id:   current-users
 > >Arrival-Date:   Sat Apr 05 15:30:00 UTC 2014
 > >Closed-Date:
 > >Last-Modified:
 > >Originator:     Pawel Pekala
 > >Release:        10.0
 > >Organization:
 > >Environment:
 > FreeBSD caprica.slowicza.org 10.0-STABLE FreeBSD 10.0-STABLE #2 r262297: =
 Fri Feb 21 17:42:25 CET 2014     root@caprica.slowicza.org:/usr/obj/usr/src=
 /sys/GENERIC  i386
 > >Description:
 > Doing staging work I noticed that COPYTREE_* commands are underused IMHO.
 > Document them so hopefully they will be more visible and widely used.
 > >How-To-Repeat:
 >=20
 > >Fix:
 >=20
 >=20
 > Patch attached with submission follows:
 >=20
 > Index: bsd.port.mk
 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
 > --- bsd.port.mk	(wersja 350228)
 > +++ bsd.port.mk	(kopia robocza)
 > @@ -587,7 +587,17 @@
 >  # INSTALL_DATA	- A command to install sharable data.
 >  # INSTALL_MAN	- A command to install manpages.  May or not compress,
 >  #				  depending on the value of MANCOMPRESSED (see below).
 > +# COPYTREE_BIN
 > +# COPYTREE_SHARE
 > +#				- Similiar to INSTALL commands but working on whole
 > +#				  trees of directories, takes 3 arguments, last one is
 > +#				  find(1) arguments and optional.
 > +#				  Example use:=20
 > +#				  cd ${WRKSRC}/doc && ${COPYTREE} . ${DOCSDIR} "! -name *.bak"
 >  #
 > +#				  Installs all directories and files from ${WRKSRC}/doc
 > +#				  to ${DOCSDIR} except sed backup files.
 > +#
 >  # Boolean to control whether manpages are installed.
 >  #
 >  # NO_INSTALL_MANPAGES
 >=20
 >=20
 > >Release-Note:
 > >Audit-Trail:
 > >Unformatted:
 > _______________________________________________
 > freebsd-ports-bugs@freebsd.org mailing list
 > http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs
 > To unsubscribe, send any mail to "freebsd-ports-bugs-unsubscribe@freebsd.=
 org"
 
 please commit
 
 regards,
 Bapt
 
 --m972NQjnE83KvVa/
 Content-Type: application/pgp-signature
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.22 (FreeBSD)
 
 iEYEARECAAYFAlNAIrgACgkQ8kTtMUmk6EwMKQCgtPpHJDK/M0VD7nMpNqLbRbYI
 JC4AoIA7iBIWuRXXCWTqvyyeaEGcjEGz
 =JH6l
 -----END PGP SIGNATURE-----
 
 --m972NQjnE83KvVa/--
State-Changed-From-To: open->closed 
State-Changed-By: pawel 
State-Changed-When: Sat Apr 5 16:08:57 UTC 2014 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=188292 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/188292: commit references a PR
Date: Sat,  5 Apr 2014 16:08:22 +0000 (UTC)

 Author: pawel
 Date: Sat Apr  5 16:08:16 2014
 New Revision: 350242
 URL: http://svnweb.freebsd.org/changeset/ports/350242
 QAT: https://qat.redports.org/buildarchive/r350242/
 
 Log:
   Document COPYTREE_BIN, COPYTREE_SHARE commands
   
   PR:		ports/188292
   Submitted by:	myself
   Approved by:	portmgr (bapt)
 
 Modified:
   head/Mk/bsd.port.mk
 
 Modified: head/Mk/bsd.port.mk
 ==============================================================================
 --- head/Mk/bsd.port.mk	Sat Apr  5 16:06:05 2014	(r350241)
 +++ head/Mk/bsd.port.mk	Sat Apr  5 16:08:16 2014	(r350242)
 @@ -587,6 +587,16 @@ FreeBSD_MAINTAINER=	portmgr@FreeBSD.org
  # INSTALL_DATA	- A command to install sharable data.
  # INSTALL_MAN	- A command to install manpages.  May or not compress,
  #				  depending on the value of MANCOMPRESSED (see below).
 +# COPYTREE_BIN
 +# COPYTREE_SHARE
 +#				- Similiar to INSTALL commands but working on whole
 +#				  trees of directories, takes 3 arguments, last one is
 +#				  find(1) arguments and optional.
 +#				  Example use: 
 +#				  cd ${WRKSRC}/doc && ${COPYTREE} . ${DOCSDIR} "! -name *.bak"
 +#
 +#				  Installs all directories and files from ${WRKSRC}/doc
 +#				  to ${DOCSDIR} except sed backup files.
  #
  # Boolean to control whether manpages are installed.
  #
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
