From 1f1839a91005432d35cd2d5cd32e46c256761f81 Mon Sep 17 00:00:00 2001 From: sbz Date: Wed, 6 Sep 2017 18:52:44 +0000 Subject: - Create python3 version of textproc/py-feedparser PR: 217480 Submitted by: dbaio Approved by: portmgr (bdrewery) Differential Revision: https://reviews.freebsd.org/D12197 --- textproc/Makefile | 1 + textproc/py-feedparser/Makefile | 2 +- textproc/py3-feedparser/Makefile | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 textproc/py3-feedparser/Makefile diff --git a/textproc/Makefile b/textproc/Makefile index 158034d5b0cd..ca0a09cea384 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1389,6 +1389,7 @@ SUBDIR += py3-asciinema SUBDIR += py3-chardet SUBDIR += py3-docutils + SUBDIR += py3-feedparser SUBDIR += py3-humanfriendly SUBDIR += py3-hunspell SUBDIR += py3-libxml2 diff --git a/textproc/py-feedparser/Makefile b/textproc/py-feedparser/Makefile index 377b82b7fa96..cea169f16e81 100644 --- a/textproc/py-feedparser/Makefile +++ b/textproc/py-feedparser/Makefile @@ -13,7 +13,7 @@ COMMENT= Universal feed parser written in Python LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= python tar:bzip2 +USES?= python tar:bzip2 USE_PYTHON= distutils autoplist NO_ARCH= yes diff --git a/textproc/py3-feedparser/Makefile b/textproc/py3-feedparser/Makefile new file mode 100644 index 000000000000..1b9a58700812 --- /dev/null +++ b/textproc/py3-feedparser/Makefile @@ -0,0 +1,8 @@ +# Created by: Danilo G. Baio +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-feedparser + +USES= python:3.3+ tar:bzip2 + +.include "${MASTERDIR}/Makefile" -- cgit