From kimelto@gmail.com  Sun Oct  3 18:34:38 2010
Return-Path: <kimelto@gmail.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 0DAF110656A4
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  3 Oct 2010 18:34:38 +0000 (UTC)
	(envelope-from kimelto@gmail.com)
Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182])
	by mx1.freebsd.org (Postfix) with ESMTP id 981218FC15
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  3 Oct 2010 18:34:37 +0000 (UTC)
Received: by wyb29 with SMTP id 29so3443193wyb.13
        for <FreeBSD-gnats-submit@freebsd.org>; Sun, 03 Oct 2010 11:34:36 -0700 (PDT)
Received: by 10.216.13.201 with SMTP id b51mr4334188web.42.1286130875582;
        Sun, 03 Oct 2010 11:34:35 -0700 (PDT)
Received: from localhost (cpc2-oxfd15-0-0-cust958.4-3.cable.virginmedia.com [86.24.195.191])
        by mx.google.com with ESMTPS id r18sm2403753weo.0.2010.10.03.11.34.34
        (version=TLSv1/SSLv3 cipher=RC4-MD5);
        Sun, 03 Oct 2010 11:34:34 -0700 (PDT)
Message-Id: <4ca8ccba.12d1d80a.1567.7811@mx.google.com>
Date: Sun, 03 Oct 2010 11:34:34 -0700 (PDT)
From: Julien Laffaye <kimelto@gmail.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc: daniel@netwalk.org
Subject: [PATCH] news/sabnzbdplus: add missing SQLite dep
X-Send-Pr-Version: 3.113
X-GNATS-Notify: daniel@netwalk.org

>Number:         151176
>Category:       ports
>Synopsis:       [PATCH] news/sabnzbdplus: add missing SQLite dep
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    swills
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Oct 03 18:40:00 UTC 2010
>Closed-Date:    Wed Oct 06 00:34:47 UTC 2010
>Last-Modified:  Wed Oct  6 00:40:00 UTC 2010
>Originator:     Julien Laffaye
>Release:        FreeBSD 8.1-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD chulak.lan 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010
>Description:
- Add missing SQLite dep
- Use ${PYTHON_REL} from bsd.python.mk for python version checks
- Add LICENSE

Port maintainer (daniel@netwalk.org) is cc'd.

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- sabnzbdplus-0.5.4.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/news/sabnzbdplus.orig/Makefile /usr/ports/news/sabnzbdplus/Makefile
--- /usr/ports/news/sabnzbdplus.orig/Makefile	2010-10-03 18:04:41.000000000 +0100
+++ /usr/ports/news/sabnzbdplus/Makefile	2010-10-03 18:41:45.000000000 +0100
@@ -17,11 +17,10 @@
 RUN_DEPENDS=	cheetah:${PORTSDIR}/devel/py-cheetah \
 		${PYTHON_SITELIBDIR}/cherrypy/__init__.py:${PORTSDIR}/www/py-cherrypy \
 		${PYTHON_SITELIBDIR}/pythonutils/configobj.py:${PORTSDIR}/devel/py-utils
-BUILD_DEPENDS=	${RUN_DEPENDS}
 
-USE_PYTHON=	2.4+
+LICENSE=	GPLv2
 
-PYVERSION=	${PYTHON_VERSION:S/^python//}
+USE_PYTHON=	2.4+
 
 NO_BUILD=	yes
 WRKSRC=		${WRKDIR}/SABnzbd-${PORTVERSION}
@@ -37,10 +36,16 @@
 
 .include <bsd.port.pre.mk>
 
-.if defined(PYTHON_VERSION) && ${PYVERSION:S/.//} < 25
+.if ${PYTHON_REL} < 250
 RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/cElementTree.so:${PORTSDIR}/devel/py-celementtree
 .endif
 
+.if ${PYTHON_REL} < 250
+RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23
+.else
+RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3
+.endif
+
 .if !defined(WITHOUT_PAR2CMDLINE)
 RUN_DEPENDS+=	par2repair:${PORTSDIR}/archivers/par2cmdline
 .endif
--- sabnzbdplus-0.5.4.patch ends here ---

>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Sun Oct 3 18:40:08 UTC 2010 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

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

From: Edwin Groothuis <edwin@FreeBSD.org>
To: daniel@netwalk.org
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/151176: [PATCH] news/sabnzbdplus: add missing SQLite dep
Date: Sun, 3 Oct 2010 18:40:06 UT

 Maintainer of news/sabnzbdplus,
 
 Please note that PR ports/151176 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151176
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: Daniel <daniel@netwalk.org>
To: bug-followup@freebsd.org
Cc:  
Subject: Re: ports/151176: [PATCH] news/sabnzbdplus: add missing SQLite dep
Date: Sun, 3 Oct 2010 11:42:44 -0700

 --001636284a681cab5e0491bacb8c
 Content-Type: text/plain; charset=ISO-8859-1
 
 I'm not able to view this patch
 
 No PRs Matched Query
 
 
 On Sun, Oct 3, 2010 at 11:40 AM, Edwin Groothuis <edwin@freebsd.org> wrote:
 
 > Maintainer of news/sabnzbdplus,
 >
 > Please note that PR ports/151176 has just been submitted.
 >
 > If it contains a patch for an upgrade, an enhancement or a bug fix
 > you agree on, reply to this email stating that you approve the patch
 > and a committer will take care of it.
 >
 > The full text of the PR can be found at:
 >    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151176
 >
 > --
 > Edwin Groothuis via the GNATS Auto Assign Tool
 > edwin@FreeBSD.org
 >
 
 
 
 -- 
 "America was founded by men who understood that the threat of domestic
 tyranny is as great as any threat from abroad. If we want to be worthy of
 their legacy, we must resist the rush toward ever-increasing state control
 of our society. Otherwise, our own government will become a greater threat
 to our freedoms than any foreign terrorist."
  - Ron Paul, Texas Straight Talk, May 31, 2004
 
 --001636284a681cab5e0491bacb8c
 Content-Type: text/html; charset=ISO-8859-1
 Content-Transfer-Encoding: quoted-printable
 
 I&#39;m not able to view this patch<div><br></div><div><span class=3D"Apple=
 -style-span" style=3D"font-family: verdana, sans-serif; font-size: 11px; ">=
 <h1 style=3D"font-size: 1.4em; font-weight: bold; margin-top: 0em; margin-r=
 ight: 0em; margin-bottom: 1.2em; margin-left: 0em; color: rgb(153, 0, 0); "=
 >
 No PRs Matched Query</h1><div><br></div></span><br><div class=3D"gmail_quot=
 e">On Sun, Oct 3, 2010 at 11:40 AM, Edwin Groothuis <span dir=3D"ltr">&lt;<=
 a href=3D"mailto:edwin@freebsd.org">edwin@freebsd.org</a>&gt;</span> wrote:=
 <br>
 <blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
 x #ccc solid;padding-left:1ex;">Maintainer of news/sabnzbdplus,<br>
 <br>
 Please note that PR ports/151176 has just been submitted.<br>
 <br>
 If it contains a patch for an upgrade, an enhancement or a bug fix<br>
 you agree on, reply to this email stating that you approve the patch<br>
 and a committer will take care of it.<br>
 <br>
 The full text of the PR can be found at:<br>
  =A0 =A0<a href=3D"http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/15117=
 6" target=3D"_blank">http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/151=
 176</a><br>
 <font color=3D"#888888"><br>
 --<br>
 Edwin Groothuis via the GNATS Auto Assign Tool<br>
 edwin@FreeBSD.org<br>
 </font></blockquote></div><br><br clear=3D"all"><br>-- <br>&quot;America wa=
 s founded by men who understood that the threat of domestic tyranny is as g=
 reat as any threat from abroad. If we want to be worthy of their legacy, we=
  must resist the rush toward ever-increasing state control of our society. =
 Otherwise, our own government will become a greater threat to our freedoms =
 than any foreign terrorist.&quot;<br>
 =A0- Ron Paul, Texas Straight Talk, May 31, 2004<br>
 </div>
 
 --001636284a681cab5e0491bacb8c--

From: Daniel <daniel@netwalk.org>
To: bug-followup@freebsd.org
Cc:  
Subject: Re: ports/151176: [PATCH] news/sabnzbdplus: add missing SQLite dep
Date: Sun, 3 Oct 2010 11:47:38 -0700

 --0016e64bfe28a8cbf60491badc87
 Content-Type: text/plain; charset=ISO-8859-1
 
 I saw the email as I was CC:ed. I approve
 
 On Sun, Oct 3, 2010 at 11:42 AM, Daniel <daniel@netwalk.org> wrote:
 
 > I'm not able to view this patch
 >
 > No PRs Matched Query
 >
 >
 > On Sun, Oct 3, 2010 at 11:40 AM, Edwin Groothuis <edwin@freebsd.org>wrote:
 >
 >> Maintainer of news/sabnzbdplus,
 >>
 >> Please note that PR ports/151176 has just been submitted.
 >>
 >> If it contains a patch for an upgrade, an enhancement or a bug fix
 >> you agree on, reply to this email stating that you approve the patch
 >> and a committer will take care of it.
 >>
 >> The full text of the PR can be found at:
 >>    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151176
 >>
 >> --
 >> Edwin Groothuis via the GNATS Auto Assign Tool
 >> edwin@FreeBSD.org
 >>
 >
 >
 >
 > --
 > "America was founded by men who understood that the threat of domestic
 > tyranny is as great as any threat from abroad. If we want to be worthy of
 > their legacy, we must resist the rush toward ever-increasing state control
 > of our society. Otherwise, our own government will become a greater threat
 > to our freedoms than any foreign terrorist."
 >  - Ron Paul, Texas Straight Talk, May 31, 2004
 >
 
 
 
 -- 
 "America was founded by men who understood that the threat of domestic
 tyranny is as great as any threat from abroad. If we want to be worthy of
 their legacy, we must resist the rush toward ever-increasing state control
 of our society. Otherwise, our own government will become a greater threat
 to our freedoms than any foreign terrorist."
  - Ron Paul, Texas Straight Talk, May 31, 2004
 
 --0016e64bfe28a8cbf60491badc87
 Content-Type: text/html; charset=ISO-8859-1
 Content-Transfer-Encoding: quoted-printable
 
 I saw the email as I was CC:ed. I approve<br><br><div class=3D"gmail_quote"=
 >On Sun, Oct 3, 2010 at 11:42 AM, Daniel <span dir=3D"ltr">&lt;<a href=3D"m=
 ailto:daniel@netwalk.org">daniel@netwalk.org</a>&gt;</span> wrote:<br><bloc=
 kquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #cc=
 c solid;padding-left:1ex;">
 I&#39;m not able to view this patch<div><br></div><div><span style=3D"font-=
 family:verdana, sans-serif;font-size:11px"><h1 style=3D"font-size:1.4em;fon=
 t-weight:bold;margin-top:0em;margin-right:0em;margin-bottom:1.2em;margin-le=
 ft:0em;color:rgb(153, 0, 0)">
 
 No PRs Matched Query</h1><div><br></div></span><div><div></div><div class=
 =3D"h5"><br><div class=3D"gmail_quote">On Sun, Oct 3, 2010 at 11:40 AM, Edw=
 in Groothuis <span dir=3D"ltr">&lt;<a href=3D"mailto:edwin@freebsd.org" tar=
 get=3D"_blank">edwin@freebsd.org</a>&gt;</span> wrote:<br>
 
 <blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
 x #ccc solid;padding-left:1ex">Maintainer of news/sabnzbdplus,<br>
 <br>
 Please note that PR ports/151176 has just been submitted.<br>
 <br>
 If it contains a patch for an upgrade, an enhancement or a bug fix<br>
 you agree on, reply to this email stating that you approve the patch<br>
 and a committer will take care of it.<br>
 <br>
 The full text of the PR can be found at:<br>
  =A0 =A0<a href=3D"http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/15117=
 6" target=3D"_blank">http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/151=
 176</a><br>
 <font color=3D"#888888"><br>
 --<br>
 Edwin Groothuis via the GNATS Auto Assign Tool<br>
 edwin@FreeBSD.org<br>
 </font></blockquote></div><br><br clear=3D"all"><br></div></div>-- <br>&quo=
 t;America was founded by men who understood that the threat of domestic tyr=
 anny is as great as any threat from abroad. If we want to be worthy of thei=
 r legacy, we must resist the rush toward ever-increasing state control of o=
 ur society. Otherwise, our own government will become a greater threat to o=
 ur freedoms than any foreign terrorist.&quot;<br>
 
 =A0- Ron Paul, Texas Straight Talk, May 31, 2004<br>
 </div>
 </blockquote></div><br><br clear=3D"all"><br>-- <br>&quot;America was found=
 ed by men who understood that the threat of domestic tyranny is as great as=
  any threat from abroad. If we want to be worthy of their legacy, we must r=
 esist the rush toward ever-increasing state control of our society. Otherwi=
 se, our own government will become a greater threat to our freedoms than an=
 y foreign terrorist.&quot;<br>
 =A0- Ron Paul, Texas Straight Talk, May 31, 2004<br>
 
 --0016e64bfe28a8cbf60491badc87--
Responsible-Changed-From-To: freebsd-ports-bugs->swills 
Responsible-Changed-By: swills 
Responsible-Changed-When: Sun Oct 3 18:51:19 UTC 2010 
Responsible-Changed-Why:  
I'd like to handle this one. 


http://www.freebsd.org/cgi/query-pr.cgi?pr=151176 
State-Changed-From-To: feedback->closed 
State-Changed-By: swills 
State-Changed-When: Wed Oct 6 00:34:45 UTC 2010 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/151176: commit references a PR
Date: Wed,  6 Oct 2010 00:33:07 +0000 (UTC)

 swills      2010-10-06 00:33:02 UTC
 
   FreeBSD ports repository
 
   Modified files:
     news/sabnzbdplus     Makefile 
   Log:
   - add missing SQLite dependency
   - use PYTHON_REL instead of PYVERSION
   - add LICENSE
   - remove unnecessary BUILD_DEPENDS
   
   PR:             ports/151176
   Submitted by:   Julien Laffaye <kimelto@gmail.com>
   Approved by:    wxs (co-mentor)
   
   Revision  Changes    Path
   1.28      +10 -4     ports/news/sabnzbdplus/Makefile
 _______________________________________________
 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"
 
>Unformatted:
