diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-08 18:43:07 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-08 18:48:04 -0300 |
commit | e754376bdd016cf03bbe5e1e39202c8ba43ff14c (patch) | |
tree | e66d9c3fb856a5c7347686222f7e4865c559b328 /unmaintained | |
parent | ba0b3fecc09e845c54b60ac23736c58bedb76ce2 (diff) | |
download | aports-e754376bdd016cf03bbe5e1e39202c8ba43ff14c.tar.bz2 aports-e754376bdd016cf03bbe5e1e39202c8ba43ff14c.tar.xz |
unmaintained/py-sphinxcontrib-jsx: move from testing
- Requires unpackaged dependencies
- PyExecJS==1.0.4
- PyReact>=0.5.1
Diffstat (limited to 'unmaintained')
-rw-r--r-- | unmaintained/py-sphinxcontrib-jsx/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/unmaintained/py-sphinxcontrib-jsx/APKBUILD b/unmaintained/py-sphinxcontrib-jsx/APKBUILD new file mode 100644 index 0000000000..1f73fb7a3e --- /dev/null +++ b/unmaintained/py-sphinxcontrib-jsx/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-sphinxcontrib-jsx +_pkgname=sphinxcontrib-jsx +pkgver=0.2.0 +pkgrel=0 +pkgdesc="Sphinx JSX directive extension" +url="https://pypi.python.org/pypi/sphinxcontrib-jsx" +arch="noarch" +license="BSD" +depends="python2 py-sphinx" +depends_dev="" +makedepends="python2-dev py-setuptools" +install="" +subpackages="" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$_pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python2 setup.py build || return 1 +} + +package() { + cd "$_builddir" + python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="b29d40bea29c44b435d0d76c2a61ab5a sphinxcontrib-jsx-0.2.0.tar.gz" +sha256sums="caa24d5025785905357357d952dd75d3d728264f8361d1812f28cb9c9afc4cf6 sphinxcontrib-jsx-0.2.0.tar.gz" +sha512sums="e7be117cc2e42978c7d7381b313b04344998ef5ddee6831325a9bd75587860dcd13aa72080880b482fef33448980af21ad0e73d0bc5feaf36a6c294a7293aaa7 sphinxcontrib-jsx-0.2.0.tar.gz" |