Date: Sunday, July 7, 2019 @ 19:07:52 Author: yan12125 Revision: 487647
upgpkg: nvchecker 1.4.4-1 Added: nvchecker/trunk/fix-tests.patch Modified: nvchecker/trunk/PKGBUILD -----------------+ PKGBUILD | 18 +++++++++++++----- fix-tests.patch | 17 +++++++++++++++++ 2 files changed, 30 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-07-07 18:05:46 UTC (rev 487646) +++ PKGBUILD 2019-07-07 19:07:52 UTC (rev 487647) @@ -2,7 +2,7 @@ # Maintainer: Chih-Hsuan Yen <[email protected]> pkgname=nvchecker -pkgver=1.4.3 +pkgver=1.4.4 pkgrel=1 pkgdesc="New version checker for software releases" arch=('any') @@ -9,13 +9,20 @@ url="https://github.com/lilydjwg/nvchecker" license=('MIT') depends=('python' 'python-setuptools' 'python-structlog' 'python-tornado' 'python-pycurl') -checkdepends=('python-pytest' 'python-pytest-xdist' 'python-pytest-asyncio' 'python-flaky') +checkdepends=('python-pytest' 'python-pytest-asyncio' 'python-flaky') optdepends=( 'pyalpm: allow using "sort_version_key = vercmp" in configuration files' ) -source=("$pkgname-$pkgver.tar.gz::https://github.com/lilydjwg/nvchecker/archive/v$pkgver.tar.gz") -sha512sums=('4a0f81d201c3bbf3ff72f72b04a08e615f38cd9e0c08488392ae8f9ce706fc5044ffe1902dbf1ea9c56908df16624d940dd0771d4a44f8aff0b894c0710cc1bb') +source=("$pkgname-$pkgver.tar.gz::https://github.com/lilydjwg/nvchecker/archive/v$pkgver.tar.gz" + 'fix-tests.patch') +sha512sums=('5fb95901641953a093a8d6c10d5b72ad9982dc8cc6161e769b30a861e4057100b861dbe9ae26c288b4fa1126b261f34c82afeb0052670429c1b7f97d1b2cf6ff' + '398dd6d080bdd4d50905a32012fb33fb3d057d4e655a5a908c3ddf0f9f944a55ab5b20fd0545cb2b3e2d9ff2325c596cad8116012e6a281ca01414ead66be92e') +prepare() { + cd nvchecker-$pkgver + patch -Np1 -i ../fix-tests.patch +} + build() { cd nvchecker-$pkgver python setup.py build @@ -23,7 +30,8 @@ check() { cd nvchecker-$pkgver - pytest + # Debian API appears broken + pytest -k 'not test_debianpkg' } package() { Added: fix-tests.patch =================================================================== --- fix-tests.patch (rev 0) +++ fix-tests.patch 2019-07-07 19:07:52 UTC (rev 487647) @@ -0,0 +1,17 @@ +diff --git a/tests/test_regex.py b/tests/test_regex.py +index d131cdd..6f40efa 100644 +--- a/tests/test_regex.py ++++ b/tests/test_regex.py +@@ -5,10 +5,10 @@ import pytest + pytestmark = pytest.mark.asyncio + + async def test_regex_httpbin_default_user_agent(get_version): +- assert await get_version("example", { ++ assert (await get_version("example", { + "url": "https://httpbin.org/get", + "regex": r'"User-Agent": "([^"]+)"', +- }) == "lilydjwg/nvchecker" ++ })).startswith("lilydjwg/nvchecker") + + async def test_regex_httpbin_user_agent(get_version): + assert await get_version("example", {
