summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorHunter Peavey2022-07-11 15:29:51 -0700
committerHunter Peavey2022-07-11 15:29:51 -0700
commit38a1978a69c2c5d6c76f05a2839307e69a0b51ea (patch)
treea33cbf82a7922dcf919861048aecbea0ae319758
parentcb34bdb12f6bc44b1c63637455f2c17cad894a6d (diff)
downloadaur-38a1978a69c2c5d6c76f05a2839307e69a0b51ea.tar.gz
Update AUR for 2.5.0
-rw-r--r--.SRCINFO10
-rw-r--r--CHANGELOG5
-rw-r--r--PKGBUILD7
3 files changed, 12 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 15af6341db5a..14fbbb2cc74d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = wtwitch
pkgdesc = Terminal user interface for Twitch
- pkgver = 2.4.0
+ pkgver = 2.5.0
pkgrel = 1
url = https://github.com/krathalan/wtwitch
changelog = CHANGELOG
@@ -13,10 +13,10 @@ pkgbase = wtwitch
optdepends = fzf: for browsing and watching streams with fzf
optdepends = mpv: for watching streams
optdepends = vlc: for watching streams
- source = https://github.com/krathalan/wtwitch/archive/refs/tags/2.4.0.tar.gz
- source = https://github.com/krathalan/wtwitch/releases/download/2.4.0/2.4.0.tar.gz.sig
+ source = https://github.com/krathalan/wtwitch/archive/refs/tags/2.5.0.tar.gz
+ source = https://github.com/krathalan/wtwitch/releases/download/2.5.0/2.5.0.tar.gz.sig
validpgpkeys = 0C6B73F391FA26F0EBCD1F75C0F9AEE56E47D174
- sha256sums = 3316677ee78f1f9fbb389d14f7106c9c355731390f13dae8816e4be131b996ff
- sha256sums = 56d52917c2dc0370304b87a4c8c0edb23b513c626cee77f99b51493f046c8424
+ sha256sums = fa134443fc69125b5f485419abbe974faa41a71f845cfaff3077eac2e79ba94a
+ sha256sums = 5dabc812f64017ab8d50b142042cb5f6a9b590b1c6a71437dcbcd71498e93b65
pkgname = wtwitch
diff --git a/CHANGELOG b/CHANGELOG
index 7ee3093f83db..faab0a88fa69 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,5 @@
See the full changelog for all versions at:
https://github.com/krathalan/wtwitch/blob/master/FULLCHANGELOG
-2.4.0 (May 15, 2022)
- Added command to show and watch subscribed online streamers via fzf from yazgoo (PR#7)
- wtwitch o
+2.5.0 (July 11, 2022)
+ Added zsh completion file from michaeldxyz (PR#9)
diff --git a/PKGBUILD b/PKGBUILD
index 1bfa20696c05..a60e336cbfe2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# General package information
pkgname=wtwitch
-pkgver=2.4.0
+pkgver=2.5.0
pkgrel=1
pkgdesc="Terminal user interface for Twitch"
url="https://github.com/krathalan/wtwitch"
@@ -20,7 +20,7 @@ optdepends=('fzf: for browsing and watching streams with fzf'
# Download information
source=("${url}/archive/refs/tags/${pkgver}.tar.gz" "${url}/releases/download/${pkgver}/${pkgver}.tar.gz.sig")
validpgpkeys=("0C6B73F391FA26F0EBCD1F75C0F9AEE56E47D174")
-sha256sums=("3316677ee78f1f9fbb389d14f7106c9c355731390f13dae8816e4be131b996ff" "56d52917c2dc0370304b87a4c8c0edb23b513c626cee77f99b51493f046c8424")
+sha256sums=("fa134443fc69125b5f485419abbe974faa41a71f845cfaff3077eac2e79ba94a" "5dabc812f64017ab8d50b142042cb5f6a9b590b1c6a71437dcbcd71498e93b65")
build() {
cd "${srcdir}/${pkgname}-${pkgver}/src"
@@ -37,6 +37,9 @@ package() {
# Bash completion file
install -D -m644 wtwitch-completion.bash "${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+
+ # ZSH completion file
+ install -D -m644 _wtwitch "${pkgdir}/usr/share/zsh/site-functions/_wtwitch"
# man page
install -D -m644 wtwitch.1 "${pkgdir}/usr/share/man/man1/wtwitch.1"