diff options
author | Hunter Peavey | 2020-06-28 17:40:21 -0700 |
---|---|---|
committer | Hunter Peavey | 2020-06-28 17:40:21 -0700 |
commit | 1660bd3863958e7e633d5259c982ed3e9bea1277 (patch) | |
tree | 8d1c4114ef7b024dfb2f42a44902d30f7a6728e4 | |
parent | 8ec8a80251d21f2360a15a7afffb602708fd1c0f (diff) | |
download | aur-1660bd3863958e7e633d5259c982ed3e9bea1277.tar.gz |
Update AUR for 1.7.0 release
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | CHANGELOG | 17 | ||||
-rw-r--r-- | PKGBUILD | 6 |
3 files changed, 21 insertions, 14 deletions
@@ -1,22 +1,22 @@ pkgbase = wtwitch pkgdesc = Terminal user interface for Twitch - pkgver = 1.6.2 + pkgver = 1.7.0 pkgrel = 1 url = https://git.sr.ht/~krathalan/wtwitch changelog = CHANGELOG arch = any license = GPL3 makedepends = scdoc + depends = curl depends = jq depends = streamlink - depends = wget optdepends = mpv: for watching streams optdepends = vlc: for watching streams - source = https://git.sr.ht/~krathalan/wtwitch/archive/1.6.2.tar.gz - source = https://git.sr.ht/~krathalan/wtwitch/blob/master/signatures/1.6.2.tar.gz.sig + source = https://git.sr.ht/~krathalan/wtwitch/archive/1.7.0.tar.gz + source = https://git.sr.ht/~krathalan/wtwitch/blob/master/signatures/1.7.0.tar.gz.sig validpgpkeys = 02AAA23ABDF1D538BD889D251AADE5E728FFC667 - sha512sums = 38f372812a9667f727ef6c3a26a280c80677c5fce69d5248ee8bb40ec114dec3e0c548db027f5745027667ec8229b5796564423353f200618b53696edf806c07 - sha512sums = 21f4bd575a4488d79595e3293269afea7558660e73ddd12a0bf74d3493d1659f8456d84099907cfecdf99be04a422f46e03ff5f8f4380b51a8a0f07e37d0870f + sha512sums = a0b84d89220b6172cbe2851fa29f4ba8e01dad1a7a68fe4cc79eaa6cd4e1f9f224838e67f70f851c7526fdabc46a97465cc50cbe19207cd1048290f8d5089467 + sha512sums = 29fb17a66dbd62c6ad094387d2de4ef1d50c3994a33132b8e3ae2b6057ac1516f42a9563b7ff82d1426af769813a275aac2ca5325ab80083ac95bd5ce3a95a59 pkgname = wtwitch diff --git a/CHANGELOG b/CHANGELOG index 8eb05309cec5..77962a61ff18 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,14 +1,21 @@ See the full changelog at https://git.sr.ht/~krathalan/wtwitch/tree/master/FULLCHANGELOG -1.5.1 (May 24, 2020) - Set OAuth token expiry for 1 day after acquisition - 1.6.0 (May 28, 2020) Add French translation patch from Léo Villeveygoux 1.6.1 (June 8, 2020) - Fixed an issue where any language not officially supported would print "null" for each localized string + Fixed an issue where any language not officially supported would print + "null" for each localized string 1.6.2 (June 19, 2020) - Fixed a bug where the first Twitch request of the day would fail due to not updating the in-memory api token + Fixed a bug where the first Twitch request of the day would fail due to not + updating the in-memory api token + +1.7.0 (June 28, 2020) + Add -b/--block feature to hide specified streamers from all output except + -c/--check + Switch to cURL, away from wget (it's faster now that less requests are + being made) + Speed improvements for -c/--check + Small man page improvements @@ -2,7 +2,7 @@ # General package information pkgname=wtwitch -pkgver=1.6.2 +pkgver=1.7.0 pkgrel=1 pkgdesc="Terminal user interface for Twitch" url="https://git.sr.ht/~krathalan/wtwitch" @@ -11,7 +11,7 @@ arch=("any") changelog="CHANGELOG" # Dependencies -depends=("jq" "streamlink" "wget") +depends=("curl" "jq" "streamlink") makedepends=("scdoc") optdepends=('mpv: for watching streams' 'vlc: for watching streams') @@ -20,7 +20,7 @@ optdepends=('mpv: for watching streams' _packagesig="${url}/blob/master/signatures/${pkgver}.tar.gz.sig" source=("${url}/archive/${pkgver}.tar.gz" "${_packagesig}") validpgpkeys=("02AAA23ABDF1D538BD889D251AADE5E728FFC667") -sha512sums=("38f372812a9667f727ef6c3a26a280c80677c5fce69d5248ee8bb40ec114dec3e0c548db027f5745027667ec8229b5796564423353f200618b53696edf806c07" "21f4bd575a4488d79595e3293269afea7558660e73ddd12a0bf74d3493d1659f8456d84099907cfecdf99be04a422f46e03ff5f8f4380b51a8a0f07e37d0870f") +sha512sums=("a0b84d89220b6172cbe2851fa29f4ba8e01dad1a7a68fe4cc79eaa6cd4e1f9f224838e67f70f851c7526fdabc46a97465cc50cbe19207cd1048290f8d5089467" "29fb17a66dbd62c6ad094387d2de4ef1d50c3994a33132b8e3ae2b6057ac1516f42a9563b7ff82d1426af769813a275aac2ca5325ab80083ac95bd5ce3a95a59") build() { cd "${srcdir}/${pkgname}-${pkgver}" |