From bofh@bofh.1asiacom.net  Mon May 26 10:03:14 2014
Return-Path: <bofh@bofh.1asiacom.net>
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 9F4E522D
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon, 26 May 2014 10:03:14 +0000 (UTC)
Received: from bofh.1asiacom.net (bofh.1asiacom.net [103.4.110.2])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(Client CN "bofh.1asiacom.net", Issuer "bofh.1asiacom.net" (not verified))
	by mx1.freebsd.org (Postfix) with ESMTPS id CBEFE2F8D
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon, 26 May 2014 10:03:13 +0000 (UTC)
Received: from bofh.1asiacom.net (localhost [127.0.0.1])
	by bofh.1asiacom.net (8.14.8/8.14.8) with ESMTP id s4QA3AcJ013532
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO)
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon, 26 May 2014 16:03:10 +0600 (BDT)
	(envelope-from bofh@bofh.1asiacom.net)
Received: (from root@localhost)
	by bofh.1asiacom.net (8.14.8/8.14.8/Submit) id s4QA380A013531;
	Mon, 26 May 2014 16:03:08 +0600 (BDT)
	(envelope-from bofh)
Message-Id: <201405261003.s4QA380A013531@bofh.1asiacom.net>
Date: Mon, 26 May 2014 16:03:08 +0600 (BDT)
From: Muhammad Moinur Rahman <5u623l20@gmail.com>
To: FreeBSD-gnats-submit@FreeBSD.org
Cc:
Subject: [PATCH] multimedia/py-periscope: Added STAGE Support, take maintainership
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         190255
>Category:       ports
>Synopsis:       [PATCH] multimedia/py-periscope: Added STAGE Support, take maintainership
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    sunpoet
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon May 26 10:10:00 UTC 2014
>Closed-Date:    Fri May 30 05:33:50 UTC 2014
>Last-Modified:  Fri May 30 05:40:09 UTC 2014
>Originator:     Muhammad Moinur Rahman
>Release:        FreeBSD 11.0-CURRENT amd64
>Organization:
>Environment:
System: FreeBSD bofh.1asiacom.net 11.0-CURRENT FreeBSD 11.0-CURRENT #2 r265972: Wed May 14 02:05:04 BDT
>Description:
- Added STAGE Support
- Take maintainership

Generated with FreeBSD Port Tools 1.02 (mode: change, diff: ports)
>How-To-Repeat:
>Fix:

--- py-periscope-0.2.4.patch begins here ---
diff -ruN /usr/ports//multimedia/py-periscope/Makefile ./Makefile
--- /usr/ports//multimedia/py-periscope/Makefile	2014-02-14 22:51:44.000000000 +0600
+++ ./Makefile	2014-05-26 15:33:40.075057585 +0600
@@ -3,7 +3,7 @@
 
 PORTNAME=	periscope
 PORTVERSION=	0.2.4
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	multimedia python
 MASTER_SITES=	GOOGLE_CODE
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -12,7 +12,7 @@
 DIST_SUBDIR=	${PORTNAME}
 EXTRACT_ONLY=	python-${PORTNAME}_${PORTVERSION}.orig${EXTRACT_SUFX}
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	5u623l20@gmail.com
 COMMENT=	Subtitles searching module
 
 LICENSE=	LGPL3
@@ -20,32 +20,28 @@
 RUN_DEPENDS=	${PYTHON_SITELIBDIR}/BeautifulSoup.py:${PORTSDIR}/www/py-beautifulsoup32
 BUILD_DEPENDS:=	${RUN_DEPENDS}
 
-USE_GNOME=	desktopfileutils
+USES=desktop-file-utils
 USE_PYTHON=	yes
-USE_PYDISTUTILS=	easy_install
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
 NO_WRKSUBDIR=	yes
-USES=	desktop-file-utils
 
 OPTIONS_DEFINE=	UNRAR
 UNRAR_DESC=	rar support (.rar) for compressed subtitles
+UNRAR_RUN_DEPENDS=	unrar:${PORTSDIR}/archivers/unrar
 
 OPTIONS_DEFAULT=	UNRAR
 
 PLIST_SUB=	DESKTOPDIR=${DESKTOPDIR_WITHOUT_PREFIX:Q}
+PLIST_FILES=	%%DESKTOPDIR%%/periscope.desktop
 
 DESKTOPDIR_WITHOUT_PREFIX=	${DESKTOPDIR:S,^${PREFIX}/,,}
 
-NO_STAGE=	yes
 post-install:
-	@${MKDIR} ${DESKTOPDIR}
+	@${MKDIR} ${STAGEDIR}${DESKTOPDIR}
 	@${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/periscope.desktop \
-		${DESKTOPDIR}
+		${STAGEDIR}${DESKTOPDIR}
 
-.include <bsd.port.options.mk>
-.include <bsd.port.pre.mk>
+#.include <bsd.port.options.mk>
 
-.if ${PORT_OPTIONS:MUNRAR}
-RUN_DEPENDS+=	unrar:${PORTSDIR}/archivers/unrar
-.endif
-
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff -ruN /usr/ports//multimedia/py-periscope/pkg-plist ./pkg-plist
--- /usr/ports//multimedia/py-periscope/pkg-plist	2014-01-22 21:16:56.000000000 +0600
+++ ./pkg-plist	1970-01-01 06:00:00.000000000 +0600
@@ -1,3 +0,0 @@
-bin/periscope
-%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
-%%DESKTOPDIR%%/periscope.desktop
--- py-periscope-0.2.4.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Mon May 26 10:10:04 UTC 2014 
Responsible-Changed-Why:  
sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=190255 
State-Changed-From-To: open->closed 
State-Changed-By: sunpoet 
State-Changed-When: Fri May 30 05:33:50 UTC 2014 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/190255: commit references a PR
Date: Fri, 30 May 2014 05:31:25 +0000 (UTC)

 Author: sunpoet
 Date: Fri May 30 05:31:20 2014
 New Revision: 355776
 URL: http://svnweb.freebsd.org/changeset/ports/355776
 QAT: https://qat.redports.org/buildarchive/r355776/
 
 Log:
   - Add LICENSE
   - Use USE_PYDISTUTILS=yes and PYDISTUTILS_AUTOPLIST
   - Remove USE_GNOME=desktopfileutils
   - Convert to new options helper
   - Support STAGEDIR
   - Bump PORTREVISION for package change
   - Pass maintainership to submitter
   - While I'm here:
     - Fix post-install: DESKTOPDIR is already in BSD.local.dist
     - Simplify Makefile
   
   PR:		ports/190255
   Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
 
 Deleted:
   head/multimedia/py-periscope/pkg-plist
 Modified:
   head/multimedia/py-periscope/Makefile
 
 Modified: head/multimedia/py-periscope/Makefile
 ==============================================================================
 --- head/multimedia/py-periscope/Makefile	Fri May 30 05:31:16 2014	(r355775)
 +++ head/multimedia/py-periscope/Makefile	Fri May 30 05:31:20 2014	(r355776)
 @@ -3,7 +3,7 @@
  
  PORTNAME=	periscope
  PORTVERSION=	0.2.4
 -PORTREVISION=	2
 +PORTREVISION=	3
  CATEGORIES=	multimedia python
  MASTER_SITES=	GOOGLE_CODE
  PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 @@ -12,40 +12,30 @@ DISTFILES=	python-${PORTNAME}_${PORTVERS
  DIST_SUBDIR=	${PORTNAME}
  EXTRACT_ONLY=	python-${PORTNAME}_${PORTVERSION}.orig${EXTRACT_SUFX}
  
 -MAINTAINER=	ports@FreeBSD.org
 +MAINTAINER=	5u623l20@gmail.com
  COMMENT=	Subtitles searching module
  
  LICENSE=	LGPL3
  
 -RUN_DEPENDS=	${PYTHON_SITELIBDIR}/BeautifulSoup.py:${PORTSDIR}/www/py-beautifulsoup32
 -BUILD_DEPENDS:=	${RUN_DEPENDS}
 +BUILD_DEPENDS=	${PYTHON_SITELIBDIR}/BeautifulSoup.py:${PORTSDIR}/www/py-beautifulsoup32
 +RUN_DEPENDS:=	${BUILD_DEPENDS}
  
 -USE_GNOME=	desktopfileutils
  USE_PYTHON=	yes
 -USE_PYDISTUTILS=	easy_install
 +USE_PYDISTUTILS=yes
 +PYDISTUTILS_AUTOPLIST=	yes
  NO_WRKSUBDIR=	yes
 -USES=	desktop-file-utils
 +USES=		desktop-file-utils
  
  OPTIONS_DEFINE=	UNRAR
  UNRAR_DESC=	rar support (.rar) for compressed subtitles
 +UNRAR_RUN_DEPENDS=	unrar:${PORTSDIR}/archivers/unrar
  
  OPTIONS_DEFAULT=	UNRAR
  
 -PLIST_SUB=	DESKTOPDIR=${DESKTOPDIR_WITHOUT_PREFIX:Q}
 +PLIST_FILES=	share/applications/periscope.desktop
  
 -DESKTOPDIR_WITHOUT_PREFIX=	${DESKTOPDIR:S,^${PREFIX}/,,}
 -
 -NO_STAGE=	yes
  post-install:
 -	@${MKDIR} ${DESKTOPDIR}
  	@${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/periscope.desktop \
 -		${DESKTOPDIR}
 -
 -.include <bsd.port.options.mk>
 -.include <bsd.port.pre.mk>
 -
 -.if ${PORT_OPTIONS:MUNRAR}
 -RUN_DEPENDS+=	unrar:${PORTSDIR}/archivers/unrar
 -.endif
 +		${STAGEDIR}${DESKTOPDIR}
  
 -.include <bsd.port.post.mk>
 +.include <bsd.port.mk>
 _______________________________________________
 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:
