Bug 181806 - news/sabnzbdplus: FeedParser and py-OpenSSL options reversed
Summary: news/sabnzbdplus: FeedParser and py-OpenSSL options reversed
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: Mark Felder
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-04 13:20 UTC by Bernard Spil
Modified: 2013-09-05 03:16 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Bernard Spil freebsd_committer freebsd_triage 2013-09-04 13:20:00 UTC
The sabnzbd+ port depends on OpenSSL when FeedParser OPTION is enabled and vice versa

Fix: 

.if ${PORT_OPTIONS:MFEEDPARSER}
-RUN_DEPENDS+=  ${PYTHON_SITELIBDIR}/OpenSSL/SSL.so:${PORTSDIR}/security/py-openssl
+RUN_DEPENDS+=   ${PYTHON_SITELIBDIR}/feedparser.py:${PORTSDIR}/textproc/py-feedparser
 .endif

 .if ${PORT_OPTIONS:MYENC}
@@ -107,7 +107,7 @@
 .endif

 .if ${PORT_OPTIONS:MOPENSSL}
-RUN_DEPENDS+=  ${PYTHON_SITELIBDIR}/feedparser.py:${PORTSDIR}/textproc/py-feedparser
+RUN_DEPENDS+=   ${PYTHON_SITELIBDIR}/OpenSSL/SSL.so:${PORTSDIR}/security/py-openssl
 .endif

 .if ${PORT_OPTIONS:MUNRAR}--VuTHI3C5lX2LLRMf7e49qocSFMKkiWi3LgtaqJX0ejN6gMPT
Content-Type: text/plain; name="file.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="file.diff"

--- Makefile.orig       2013-09-04 14:13:04.669281507 +0200
+++ Makefile    2013-09-04 14:13:42.846277377 +0200
@@ -99,7 +99,7 @@
 .endif
How-To-Repeat: cd /usr/ports/news/sabnzbd
make -DWITHOUT_OPENSSL

Pulls in py-openssl
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-04 13:20:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->feld

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-09-04 18:39:48 UTC
Author: feld
Date: Wed Sep  4 17:39:41 2013
New Revision: 326304
URL: http://svnweb.freebsd.org/changeset/ports/326304

Log:
  Fix SSL and Feedparser options
  
  PR:		ports/181806
  Approved by:	crees (mentor)

Modified:
  head/news/sabnzbdplus/Makefile

Modified: head/news/sabnzbdplus/Makefile
==============================================================================
--- head/news/sabnzbdplus/Makefile	Wed Sep  4 17:39:25 2013	(r326303)
+++ head/news/sabnzbdplus/Makefile	Wed Sep  4 17:39:41 2013	(r326304)
@@ -99,7 +99,7 @@ RUN_DEPENDS+=	par2repair:${PORTSDIR}/arc
 .endif
 
 .if ${PORT_OPTIONS:MFEEDPARSER}
-RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/OpenSSL/SSL.so:${PORTSDIR}/security/py-openssl
+RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/feedparser.py:${PORTSDIR}/textproc/py-feedparser
 .endif
 
 .if ${PORT_OPTIONS:MYENC}
@@ -107,7 +107,7 @@ RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/_yenc
 .endif
 
 .if ${PORT_OPTIONS:MOPENSSL}
-RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/feedparser.py:${PORTSDIR}/textproc/py-feedparser
+RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/OpenSSL/SSL.so:${PORTSDIR}/security/py-openssl
 .endif
 
 .if ${PORT_OPTIONS:MUNRAR}
_______________________________________________
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"
Comment 3 Mark Felder freebsd_committer freebsd_triage 2013-09-04 18:40:34 UTC
State Changed
From-To: open->closed

Committed. Thanks!