From owner-svn-ports-head@FreeBSD.ORG Mon Oct 7 16:02:21 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id C7EF3506; Mon, 7 Oct 2013 16:02:21 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A53722D7E; Mon, 7 Oct 2013 16:02:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r97G2LKv002145; Mon, 7 Oct 2013 16:02:21 GMT (envelope-from feld@svn.freebsd.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r97G2LbW002139; Mon, 7 Oct 2013 16:02:21 GMT (envelope-from feld@svn.freebsd.org) Message-Id: <201310071602.r97G2LbW002139@svn.freebsd.org> From: Mark Felder Date: Mon, 7 Oct 2013 16:02:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329710 - head/news/sabnzbdplus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Oct 2013 16:02:22 -0000 Author: feld Date: Mon Oct 7 16:02:20 2013 New Revision: 329710 URL: http://svnweb.freebsd.org/changeset/ports/329710 Log: - Update to 0.7.16 - STAGE support Approved by: crees (mentor) Modified: head/news/sabnzbdplus/Makefile head/news/sabnzbdplus/distinfo head/news/sabnzbdplus/pkg-plist Modified: head/news/sabnzbdplus/Makefile ============================================================================== --- head/news/sabnzbdplus/Makefile Mon Oct 7 15:03:41 2013 (r329709) +++ head/news/sabnzbdplus/Makefile Mon Oct 7 16:02:20 2013 (r329710) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sabnzbdplus -PORTVERSION= 0.7.14 +PORTVERSION= 0.7.16 CATEGORIES= news MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} DISTNAME= SABnzbd-${PORTVERSION}-src @@ -92,7 +92,6 @@ UNRAR_DESC= Often required for unpacking FEEDPARSER_DESC= rss-feed support YENC_DESC= yenc support -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPAR2CMDLINE} @@ -124,24 +123,24 @@ post-patch: # the NO_BUILD option stops execution after configure. This should really be # post-build do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/SABnzbd.py ${PREFIX}/bin - ${INSTALL} -d ${PYTHONPREFIX_SITELIBDIR}/sabnzbd - cd ${WRKSRC}/sabnzbd && ${COPYTREE_SHARE} \* ${PYTHONPREFIX_SITELIBDIR}/sabnzbd - ${INSTALL} -d ${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/SABnzbd.py ${STAGEDIR}${PREFIX}/bin + ${INSTALL} -d ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/sabnzbd + cd ${WRKSRC}/sabnzbd && ${COPYTREE_SHARE} \* ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/sabnzbd + ${INSTALL} -d ${STAGEDIR}${DATADIR} + ${INSTALL} -d ${STAGEDIR}${PREFIX}/sabnzbd .for i in cherrypy gntp interfaces locale po tools util - ${MKDIR} ${DATADIR}/${i} - cd ${WRKSRC}/${i} && ${COPYTREE_SHARE} \* ${DATADIR}/${i} + ${MKDIR} ${STAGEDIR}${DATADIR}/${i} + cd ${WRKSRC}/${i} && ${COPYTREE_SHARE} \* ${STAGEDIR}${DATADIR}/${i} .endfor -post-install: .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif - ${MKDIR} ${PREFIX}/sabnzbd - ${CHOWN} _sabnzbd:_sabnzbd ${PREFIX}/sabnzbd + +post-install: @${CAT} ${WRKDIR}/pkg-message .include Modified: head/news/sabnzbdplus/distinfo ============================================================================== --- head/news/sabnzbdplus/distinfo Mon Oct 7 15:03:41 2013 (r329709) +++ head/news/sabnzbdplus/distinfo Mon Oct 7 16:02:20 2013 (r329710) @@ -1,2 +1,2 @@ -SHA256 (SABnzbd-0.7.14-src.tar.gz) = b5aefb2911349697db3be86eca815622a2bddb4ab370ed5522b4b0322d45c843 -SIZE (SABnzbd-0.7.14-src.tar.gz) = 2275312 +SHA256 (SABnzbd-0.7.16-src.tar.gz) = 2c50496c8be81ac4498944a5209b2c6b3bdfecc48cf4e0df54552c5d985e5772 +SIZE (SABnzbd-0.7.16-src.tar.gz) = 2275768 Modified: head/news/sabnzbdplus/pkg-plist ============================================================================== --- head/news/sabnzbdplus/pkg-plist Mon Oct 7 15:03:41 2013 (r329709) +++ head/news/sabnzbdplus/pkg-plist Mon Oct 7 16:02:20 2013 (r329710) @@ -498,5 +498,4 @@ bin/SABnzbd.py @dirrm %%PYTHON_SITELIBDIR%%/sabnzbd/utils @dirrm %%PYTHON_SITELIBDIR%%/sabnzbd @dirrmtry %%PYTHON_SITELIBDIR%% -@exec mkdir -p %D/sabnzbd @exec chown _sabnzbd:_sabnzbd %D/sabnzbd