X-Original-To: alpine-aports@lists.alpinelinux.org Received: from vps892.directvps.nl (ikke.info [178.21.113.177]) by lists.alpinelinux.org (Postfix) with ESMTP id C5271F8524D for ; Mon, 10 Jun 2019 07:41:39 +0000 (UTC) Received: by vps892.directvps.nl (Postfix, from userid 1008) id D8E604400C2; Mon, 10 Jun 2019 09:41:38 +0200 (CEST) Date: Mon, 10 Jun 2019 09:41:38 +0200 From: Kevin Daudt To: Drew DeVault Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH 1/3] testing/py3-dill: new APKBUILD Message-ID: <20190610074138.GC28693@alpha> References: <20190605234440.18123-1-sir@cmpwn.com> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190605234440.18123-1-sir@cmpwn.com> User-Agent: Mutt/1.11.4 (2019-03-13) This has been pushed by Leo On Wed, Jun 05, 2019 at 07:44:38PM -0400, Drew DeVault wrote: > --- > testing/py3-dill/APKBUILD | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > create mode 100644 testing/py3-dill/APKBUILD > > diff --git a/testing/py3-dill/APKBUILD b/testing/py3-dill/APKBUILD > new file mode 100644 > index 0000000000..160253471e > --- /dev/null > +++ b/testing/py3-dill/APKBUILD > @@ -0,0 +1,32 @@ > +# Maintainer: Drew DeVault > +pkgname=py3-dill > +_pyname=dill > +pkgver=0.2.9 > +pkgrel=0 > +pkgdesc="Python serializer supporting a broader range of types than pickle" > +url="https://pypi.org/projects/dill/" > +arch="noarch" > +license="BSD-3-Clause" > +makedepends="python3 py3-setuptools" > +_pypiprefix="${_pyname%${_pyname#?}}" > +source="https://files.pythonhosted.org/packages/source/$_pypiprefix/$_pyname/$_pyname-$pkgver.tar.gz" > +builddir=$srcdir/$_pyname-$pkgver > + > +build() { > + python3 setup.py build > +} > + > +check() { > + export PYTHONPATH="$(pwd):$PYTHONPATH" > + for t in tests/*.py > + do > + echo "$t" > + python3 "$t" > + done > +} > + > +package() { > + python3 setup.py install --prefix=/usr --root="$pkgdir" > +} > + > +sha512sums="b395f59a4f45cda0eb82a4ea4da03232a645daeba988b4578f8d62ef3de2b755d04cee53caa19a17ca35b64802312ec92b7d64066b494c4f954a28edcdd7742c dill-0.2.9.tar.gz" > -- > 2.21.0 > > > > --- > Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org > Help: alpine-aports+help@lists.alpinelinux.org > --- > --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---