From 377258bdbf8b89fa62b27c401a768673b1ced2cb Mon Sep 17 00:00:00 2001 From: J Irving Date: Thu, 17 Nov 2022 13:18:24 -0500 Subject: [PATCH 1/3] toot: upgrade to 0.28.1 Also change maintainer to me, since Nathan no longer uses Void. --- srcpkgs/toot/template | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template index ba8446459ecd..f23fc86e973c 100644 --- a/srcpkgs/toot/template +++ b/srcpkgs/toot/template @@ -1,14 +1,16 @@ # Template file for 'toot' pkgname=toot -version=0.27.0 -revision=4 +version=0.28.1 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-BeautifulSoup4 python3-requests python3-setuptools python3-wcwidth python3-urwid" short_desc="Mastodon CLI client" -maintainer="Nathan Owens " +maintainer="Jon Levin " license="GPL-3.0-or-later" homepage="https://github.com/ihabunek/toot" +changelog="https://raw.githubusercontent.com/ihabunek/toot/master/CHANGELOG.md" distfiles="https://github.com/ihabunek/toot/archive/${version}.tar.gz" -checksum=65007187059fe17fae29796dd813cd3bbd8c44f72b5bfec0bc9ef20c65e69410 +checksum=2f91fca2d4a596180f47579b36ddea7717c6ff725ee379e5ebadc36e20cbb0ef +checkdepends="python3-pytest ${depends}" From 195e50f2f315f7d8222d2d9902da1d590f03c8f3 Mon Sep 17 00:00:00 2001 From: J Irving Date: Fri, 18 Nov 2022 10:30:20 -0500 Subject: [PATCH 2/3] Fix some tests --- srcpkgs/toot/template | 1 + 1 file changed, 1 insertion(+) diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template index f23fc86e973c..df29c8aeeba6 100644 --- a/srcpkgs/toot/template +++ b/srcpkgs/toot/template @@ -14,3 +14,4 @@ changelog="https://raw.githubusercontent.com/ihabunek/toot/master/CHANGELOG.md" distfiles="https://github.com/ihabunek/toot/archive/${version}.tar.gz" checksum=2f91fca2d4a596180f47579b36ddea7717c6ff725ee379e5ebadc36e20cbb0ef checkdepends="python3-pytest ${depends}" +make_check_pre="env TZ=Europe/Berlin" From 76dfaa08df26909ba862ca7106a3c20cde8b5fea Mon Sep 17 00:00:00 2001 From: J Irving Date: Mon, 21 Nov 2022 14:03:50 -0500 Subject: [PATCH 3/3] Update to fixed version and add wheel dep --- srcpkgs/toot/template | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template index df29c8aeeba6..b3ef6c077d5e 100644 --- a/srcpkgs/toot/template +++ b/srcpkgs/toot/template @@ -1,6 +1,6 @@ # Template file for 'toot' pkgname=toot -version=0.28.1 +version=0.29.0 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" @@ -12,6 +12,8 @@ license="GPL-3.0-or-later" homepage="https://github.com/ihabunek/toot" changelog="https://raw.githubusercontent.com/ihabunek/toot/master/CHANGELOG.md" distfiles="https://github.com/ihabunek/toot/archive/${version}.tar.gz" -checksum=2f91fca2d4a596180f47579b36ddea7717c6ff725ee379e5ebadc36e20cbb0ef -checkdepends="python3-pytest ${depends}" -make_check_pre="env TZ=Europe/Berlin" +checksum=821d549798453da8ad669a605cddc1ead8a797d716723158526534549a4b0d4d +checkdepends="python3-wheel python3-pytest ${depends}" +pre_check() { + make dist +}