Package Details: python-hupper 1.12-1

Git Clone URL: https://aur.archlinux.org/python-hupper.git (read-only, click to copy)
Package Base: python-hupper
Description: Integrated process monitor for developing servers
Upstream URL: https://github.com/pylons/hupper
Licenses: MIT
Submitter: masser
Maintainer: piernov
Last Packager: piernov
Votes: 2
Popularity: 0.000000
First Submitted: 2017-03-17 13:00 (UTC)
Last Updated: 2023-09-22 11:16 (UTC)

Latest Comments

jamietanna commented on 2023-08-14 16:16 (UTC)

Currently fails to build due to https://files.pythonhosted.org/packages/source/h/hupper/hupper-1.11.tar.gz.asc not being found

Resolved with the following diff:

diff --git PKGBUILD PKGBUILD
index def6316..dfd936f 100644
--- PKGBUILD
+++ PKGBUILD
@@ -17,9 +17,9 @@ makedepends=('python-setuptools' 'python-build' 'python-installer' 'python-wheel
 checkdepends=('python-pytest' 'python-pytest-cov' 'python-watchdog')
 changelog=CHANGES.rst
 source=("$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/h/$_pkg/$_pkg-$pkgver.tar.gz"
-        "$pkgname-$pkgver.tar.gz.asc::https://files.pythonhosted.org/packages/source/h/$_pkg/$_pkg-$pkgver.tar.gz.asc")
+        )
 sha256sums=('15c11bd775d8f98095b745b4e658a17c25c86e3b73275cae896ac1c8d533cb18'
-            'SKIP')
+            )
 validpgpkeys=('CC1A48C957AC6ABEF05B2C596BC977B056B829E5')

 build() {

akstrfn commented on 2018-10-21 20:22 (UTC)

@bzt fixed, thanks.

bzt commented on 2018-10-21 17:53 (UTC)

Build does not work unless python-pytest-runner is installed. Maybe this could be added to makedepends?