diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2020-07-14 22:09:03 +0800 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2020-07-14 22:09:03 +0800 |
commit | b063d9704447738127db30a5cc19e5d7e9d1135b (patch) | |
tree | b0f2484edc1d6bbcd63ad319b1eb8cb1dac12485 /mail/rss2email3 | |
parent | 8bbcafefab6056a37526e8a6611f4c8819975c64 (diff) | |
download | freebsd-ports-gnome-b063d9704447738127db30a5cc19e5d7e9d1135b.tar.gz freebsd-ports-gnome-b063d9704447738127db30a5cc19e5d7e9d1135b.tar.zst freebsd-ports-gnome-b063d9704447738127db30a5cc19e5d7e9d1135b.zip |
mail/rss2email3: Update to 3.11
* This update unbreaks the port at runtime by using the builtin
"html.unescape()" function (introduced in Python 3.4) instead of the
"html2text.unescape()" function from textproc/py-text2html which was
removed since the 2019.8.11 release.
* Submitter becomes maintainer because the previous maintainer seems to be
missing in action as there was no feedback over five months.
While I'm here:
* Switch manpages to the preferred share/man location.
* Remove no longer required CONFLICTS_INSTALL entry.
* Update the WWW field to point to the new upstream repository.
Changelog since 3.9:
https://github.com/rss2email/rss2email/blob/v3.11/CHANGELOG
PR: 243515
Submitted by: Corey Halpin <chalpin@cs.wisc.edu> (based on)
Reported by: Michael Bueker <m.bueker@berlin.de>
Approved by: maintainer timeout (5+ months)
MFH: 2020Q3 (blanket: runtime fix)
Diffstat (limited to 'mail/rss2email3')
-rw-r--r-- | mail/rss2email3/Makefile | 17 | ||||
-rw-r--r-- | mail/rss2email3/distinfo | 6 | ||||
-rw-r--r-- | mail/rss2email3/pkg-descr | 2 |
3 files changed, 12 insertions, 13 deletions
diff --git a/mail/rss2email3/Makefile b/mail/rss2email3/Makefile index 3caf75f86df6..f2b80b70cc2d 100644 --- a/mail/rss2email3/Makefile +++ b/mail/rss2email3/Makefile @@ -2,11 +2,11 @@ PORTNAME= rss2email DISTVERSIONPREFIX= v -DISTVERSION= 3.9 +DISTVERSION= 3.11 CATEGORIES= mail python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= srg@guglielmo.us +MAINTAINER= chalpin@cs.wisc.edu COMMENT= Emails posts from subscribed RSS/Atom newsfeeds LICENSE= GPLv2 GPLv3 @@ -15,21 +15,20 @@ LICENSE_COMB= dual RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}feedparser>=5.0.1:textproc/py-feedparser@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}html2text>=3.0.1:textproc/py-html2text@${PY_FLAVOR} -USES= python:3.3+ +USES= python:3.4+ USE_GITHUB= yes -GH_ACCOUNT= wking +GH_ACCOUNT= rss2email USE_PYTHON= distutils concurrent autoplist -NO_ARCH= yes -CONFLICTS_INSTALL= py*-rss2email-2.* +NO_ARCH= yes -PORTDOCS= AUTHORS CHANGELOG README +PORTDOCS= AUTHORS CHANGELOG README.rst OPTIONS_DEFINE= DOCS -PLIST_FILES= man/man1/r2e.1.gz +PLIST_FILES= share/man/man1/r2e.1.gz post-install: - ${INSTALL_MAN} ${WRKSRC}/r2e.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/r2e.1 ${STAGEDIR}${MANPREFIX}/share/man/man1 post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/mail/rss2email3/distinfo b/mail/rss2email3/distinfo index a1eec38a3066..5e4af433f1b5 100644 --- a/mail/rss2email3/distinfo +++ b/mail/rss2email3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1521956075 -SHA256 (wking-rss2email-v3.9_GH0.tar.gz) = 640ba92798940036e4a941c7705a0920d5be87a11f1817b08522e9a99606bb7f -SIZE (wking-rss2email-v3.9_GH0.tar.gz) = 160904 +TIMESTAMP = 1592833699 +SHA256 (rss2email-rss2email-v3.11_GH0.tar.gz) = ee2c7fc04afb0a8a4153f4c7e3f3bda91c358ec54740aeee9a30a93e28f80f4a +SIZE (rss2email-rss2email-v3.11_GH0.tar.gz) = 66441 diff --git a/mail/rss2email3/pkg-descr b/mail/rss2email3/pkg-descr index ad0b37deeea1..f4d1a6c9c6de 100644 --- a/mail/rss2email3/pkg-descr +++ b/mail/rss2email3/pkg-descr @@ -5,4 +5,4 @@ generally run via cron, but can be run manually as well. This is a python 3 rewrite of the original rss2email project by Lindsey Smith at AllThingsRSS. It does not run on python 2. -WWW: https://github.com/wking/rss2email +WWW: https://github.com/rss2email/rss2email |