summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2018-11-21 11:22:10 +0000
committernia <nia@pkgsrc.org>2018-11-21 11:22:10 +0000
commit3bdc0dd0e5ab56de5c52ab60aed7ce18e9f5432b (patch)
treed9ab4776ebcea0a952f842545fe0e829dc285320 /chat
parent471d77b41c36030fdf88c09501aba9c4b0e01914 (diff)
downloadpkgsrc-3bdc0dd0e5ab56de5c52ab60aed7ce18e9f5432b.tar.gz
tootstream: remove patch to unbreak this
Diffstat (limited to 'chat')
-rw-r--r--chat/tootstream/Makefile3
-rw-r--r--chat/tootstream/distinfo3
-rw-r--r--chat/tootstream/patches/patch-src_tootstream_toot.py19
3 files changed, 3 insertions, 22 deletions
diff --git a/chat/tootstream/Makefile b/chat/tootstream/Makefile
index dccc63abe32..ce172e7652a 100644
--- a/chat/tootstream/Makefile
+++ b/chat/tootstream/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2018/10/01 16:33:37 nia Exp $
+# $NetBSD: Makefile,v 1.7 2018/11/21 11:22:10 nia Exp $
DISTNAME= tootstream-0.3.6
+PKGREVISION= 1
CATEGORIES= chat www
MASTER_SITES= ${MASTER_SITE_GITHUB:=magicalraccoon/}
diff --git a/chat/tootstream/distinfo b/chat/tootstream/distinfo
index c2a5b46b8eb..9355fde7cec 100644
--- a/chat/tootstream/distinfo
+++ b/chat/tootstream/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.5 2018/11/09 10:21:03 nia Exp $
+$NetBSD: distinfo,v 1.6 2018/11/21 11:22:10 nia Exp $
SHA1 (tootstream-0.3.6.tar.gz) = 63e0e6b92088a80593dc44cc0cbae3d7056ed090
RMD160 (tootstream-0.3.6.tar.gz) = 2226f666c58d8a80332e3d622b4dadebc7bec4d4
SHA512 (tootstream-0.3.6.tar.gz) = 3409e9b129297bee70db3ac0bb9866261b623b41b6697f6cdb4ffa871333cab0342c2a7f6458f32dedb4f11e18d006bc2206e473a2c365641b1c34b4d3d71778
Size (tootstream-0.3.6.tar.gz) = 25030 bytes
-SHA1 (patch-src_tootstream_toot.py) = 878481fbad811db29aabd6110d1bd5ff02af1bc8
diff --git a/chat/tootstream/patches/patch-src_tootstream_toot.py b/chat/tootstream/patches/patch-src_tootstream_toot.py
deleted file mode 100644
index 0f954cd5a81..00000000000
--- a/chat/tootstream/patches/patch-src_tootstream_toot.py
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-src_tootstream_toot.py,v 1.2 2018/08/21 17:34:48 nia Exp $
-
-'async' is a reserved keyword in Python 3.7.
-
---- src/tootstream/toot.py.orig 2018-08-09 00:55:08.000000000 +0000
-+++ src/tootstream/toot.py
-@@ -1295,10 +1295,10 @@ def stream(mastodon, rest):
- cprint("List {} is not found".format(items[-1]), fg('red'))
- return
-
-- handle = mastodon.stream_list(item, toot_listener, async=True)
-+ handle = mastodon.stream_list(item, toot_listener, run_async=True)
- elif rest.startswith('#'):
- tag = rest[1:]
-- handle = mastodon.stream_hashtag(tag, toot_listener, async=True)
-+ handle = mastodon.stream_hashtag(tag, toot_listener, run_async=True)
- else:
- handle = None
- print("Only 'home', 'fed', 'local', 'list', and '#hashtag' streams are supported.")