Skip to content

Commit

Permalink
testing/py3-shellingham: new aport
Browse files Browse the repository at this point in the history
Python3 module to poke around and find out running shell
https://github.com/sarugaku/shellingham

Closes GH-8381
  • Loading branch information
maxice8 authored and Ikke committed Jun 2, 2019
1 parent e601817 commit a5bfb5f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions testing/py3-shellingham/APKBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=py3-shellingham
_realname=shellingham
pkgver=1.3.1
pkgrel=0
pkgdesc="Python3 module to poke around and find out running shell"
options="!check" # Requires unpackaged dependencies
url="https://github.com/sarugaku/shellingham"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools"
source="$pkgname-$pkgver.tar.gz::https://github.com/sarugaku/shellingham/archive/$pkgver.tar.gz"
builddir="$srcdir/$_realname-$pkgver"

build() {
python3 setup.py build
}

check() {
python3 setup.py test
}

package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="ba728bed5b3c0d715e8557f8364e98eebc006a4375b6e1a9c4be92571cd71c7bf6856571f3bf66879c8075fdfebc0a54a6a5190c40811b028616c5b28808d832 py3-shellingham-1.3.1.tar.gz"

0 comments on commit a5bfb5f

Please sign in to comment.