# Maintainer: redfish # Contributor: Lothar_m pkgname='zeronet-git' _gitname='ZeroNet' _gitroot='https://github.com/HelloZeroNet/ZeroNet.git' pkgver=0.7.0 pkgrel=1 arch=('any') url="https://zeronet.io/" depends=('python' 'python-gevent>=1.1.0' 'python-gevent-websocket' 'python-msgpack>=0.4.4' 'python-websocket-client' 'python-rsa' 'python-pysocks' 'python-pyasn1' 'python-pyasn1-modules' 'python-base58' 'python-merkletools' 'python-pyelliptic>=2.0.1' 'python-bencode.py' 'python-coincurve' 'python-bitcoinlib' 'python-maxminddb' 'geoip2-database') optdepends=('tor: anonymity' 'namecoin-core: local name resolution') makedepends=('git') checkdepends=('python-pytest' 'python-mock') license=('GPL2') pkgdesc="Decentralized websites using Bitcoin crypto and the BitTorrent network." provides=(zeronet) conflicts=(zeronet) source=("git+https://github.com/HelloZeroNet/ZeroNet.git#branch=py3" "zeronet.conf" "zeronet.service") install="zeronet.install" backup=("etc/zeronet.conf") options=(!strip) # attempt to strip binaries fromA dependent libs fial pkgver() { cd "$srcdir/$_gitname" # Extract version and revision from src/Config.py and append commit echo -n $(grep -oP '(?<=self.version = ").+(?=")' src/Config.py).r$(grep -oP '(?<=self.rev = )\w+$' src/Config.py).g$(git rev-parse --short HEAD) } package() { cd "$srcdir/$_gitname" mkdir -p "$pkgdir/opt/zeronet" # There is no setup.py shipped, so brute-force copy cp -a "$srcdir/$_gitname/." "$pkgdir/opt/zeronet/" install -D -m644 "$srcdir/zeronet.conf" "$pkgdir/etc/zeronet.conf" install -D -m644 "$srcdir/zeronet.service" "$pkgdir/usr/lib/systemd/system/zeronet.service" # install license install -D -m644 "$srcdir/$_gitname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } sha256sums=('SKIP' 'ea735e82dbb10a2c1fda7abfeb2f38c2429044d8254f9e2396c50cecb6f778f8' '2ee64a1b671a49a1626901a11d4d7fa338c77cb9b7c9facd2f56b087a4a0bb83')