Package Details: python-annexremote 1.6.5-1

Git Clone URL: https://aur.archlinux.org/python-annexremote.git (read-only, click to copy)
Package Base: python-annexremote
Description: git annex special remotes made easy
Upstream URL: https://github.com/Lykos153/AnnexRemote
Keywords: git git-annex
Licenses: GPL-3.0-or-later
Submitter: Lykos153
Maintainer: alerque
Last Packager: alerque
Votes: 2
Popularity: 1.00
First Submitted: 2018-03-10 17:23 (UTC)
Last Updated: 2024-05-11 20:08 (UTC)

Latest Comments

alerque commented on 2024-04-29 20:37 (UTC)

# Maintaner: Silvio Ankermann < silvio at booq dot org >
# Contributor: Caleb Maclennan <caleb@alerque.com>

pkgname=python-annexremote
_pkgname=AnnexRemote
pkgver=1.6.5
pkgrel=1
pkgdesc='git annex special remotes made easy'
url="https://github.com/Lykos153/$_pkgname"
license=(GPL-3.0-or-later)
arch=(any)
depends=(python)
makedepends=(git
             python-{build,installer,wheel}
             python-setuptools-scm)
source=("git+$url.git#tag=v$pkgver")
sha256sums=('da3c70d00a7ae75d11a672b1e6a263a1fec01aff664552dba04cdee5e14d2179')

build() {
    cd "$_pkgname"
    python -m build -wn
}

package() {
    cd "$_pkgname"
    python -m installer -d "$pkgdir" dist/*.whl
}

alerque commented on 2024-04-29 20:06 (UTC)

Besides updating this to a version that builds with Python 3.12 please use PEP517 build tooling, see the Python packaging guidelines for details.