Package Details: python-barcode-git v0.16.1.r18.g85acbda-4

Git Clone URL: https://aur.archlinux.org/python-barcode-git.git (read-only, click to copy)
Package Base: python-barcode-git
Description: Create standard barcodes with Python. No external modules needed. (git version)
Upstream URL: https://github.com/WhyNotHugo/python-barcode
Licenses: MIT
Conflicts: python-barcode
Provides: python-barcode
Submitter: bart
Maintainer: bart
Last Packager: bart
Votes: 0
Popularity: 0.000000
First Submitted: 2022-02-18 12:33 (UTC)
Last Updated: 2026-02-11 13:13 (UTC)

Required by (5)

Sources (1)

Latest Comments

bart commented on 2026-02-11 11:26 (UTC)

@wurzelbenutzer: Good catch, I have updated the PKGBUILD

wurzelbenutzer commented on 2026-01-24 07:41 (UTC) (edited on 2026-01-24 07:42 (UTC) by wurzelbenutzer)

docs are in wrong directory and clash with python-agate

my workaround is

package() {
    cd $pkgname
    python -m installer --destdir="$pkgdir" dist/*.whl
    # move docs 
    if [ -d $pkgdir/usr/lib/python*/site-packages/docs ]; then
        install -dm755 $pkgdir/usr/share/doc/$pkgname
        mv $pkgdir/usr/lib/python*/site-packages/docs $pkgdir/usr/share/doc/$pkgname/
    fi
    install -Dm644 LICENCE -t "$pkgdir/usr/share/licenses/$pkgname"
}