Package Details: python-webpy 0.70-1

Git Clone URL: https://aur.archlinux.org/python-webpy.git (read-only, click to copy)
Package Base: python-webpy
Description: A web framework for Python
Upstream URL: https://github.com/webpy/webpy
Keywords: webpy
Licenses: Public Domain
Submitter: iAmSomeone2
Maintainer: xiota
Last Packager: xiota
Votes: 1
Popularity: 0.000000
First Submitted: 2020-06-19 02:28 (UTC)
Last Updated: 2023-11-06 03:01 (UTC)

Required by (0)

Sources (1)

Latest Comments

MarsSeed commented on 2023-07-11 11:57 (UTC)

I have triggered the disowning of this package.

You can now adopt it and update it.

Atom194 commented on 2023-07-11 11:20 (UTC) (edited on 2023-07-11 11:20 (UTC) by Atom194)

Can this package receive an update or be orphaned?

Atom194 commented on 2023-03-29 10:59 (UTC) (edited on 2023-03-29 11:01 (UTC) by Atom194)

This modification worked for me on version 0.62:

pkgname=python-webpy
pkgver=0.62
pkgrel=0
pkgdesc="A web framework for Python"
arch=("any")
url="https://webpy.org/"
license=('custom')

_name=${pkgname#python-}

depends=(
    "python-cheroot>=6.0.0"
)

source=(
    "$pkgname-$pkgver.tar.gz::https://github.com/webpy/webpy/archive/refs/tags/$pkgver.tar.gz"
)
sha256sums=(
        "c1d330fca423aaef2949a53d7cddaa23de2275ec7b034a886582cdcce7e09d3c"
)

build() {
    cd "$_name-$pkgver"
    /usr/bin/python setup.py build
}

package() {
    cd "$_name-$pkgver"
    /usr/bin/python setup.py install --root="$pkgdir" --optimize=1 --skip-build

    # Add license file to the package
    mkdir -p ${pkgdir}/usr/share/licences/${pkgname}/
    install ./LICENSE.txt ${pkgdir}/usr/share/licences/${pkgname}/license
}