Received: from vps892.directvps.nl (ikke.info [178.21.113.177]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 0E5C3780ED0 for ; Thu, 19 Mar 2020 05:56:28 +0000 (UTC) Received: by vps892.directvps.nl (Postfix, from userid 1008) id 05A94440114; Thu, 19 Mar 2020 06:56:27 +0100 (CET) Date: Thu, 19 Mar 2020 06:56:27 +0100 From: Kevin Daudt To: Philipp Glaum Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [PATCH] testing/py3-alembic: new aport Message-ID: <20200319055627.GB1427755@alpha> References: <20200318132555.9000-1-p@pglaum.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200318132555.9000-1-p@pglaum.de> On Wed, Mar 18, 2020 at 01:25:56PM +0000, Philipp Glaum wrote: > https://pypi.org/project/alembic/ > A database migration tool for SQLAlchemy. > --- > testing/py3-alembic/APKBUILD | 29 +++++++++++++++++++++++++++++ > 1 file changed, 29 insertions(+) > create mode 100644 testing/py3-alembic/APKBUILD > > diff --git a/testing/py3-alembic/APKBUILD b/testing/py3-alembic/APKBUILD > new file mode 100644 > index 0000000000..6d8ce03762 > --- /dev/null > +++ b/testing/py3-alembic/APKBUILD > @@ -0,0 +1,29 @@ > +# Contributor: > +# Maintainer: Philipp Glaum > +pkgname=py3-alembic > +_pkgname=alembic > +pkgver=1.4.1 > +pkgrel=0 > +pkgdesc="A database migration tool for SQLAlchemy." > +url="https://pypi.org/project/alembic/" > +arch="noarch" > +license="MIT" > +depends="python3 py3-sqlalchemy py3-mako py3-python-editor py3-dateutil" > +checkdepends="py3-tox" > +makedepends="py3-setuptools" > +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" > +builddir="$srcdir/$_pkgname-$pkgver" > + > +build() { > + python3 setup.py build > +} > + > +check() { > + python3 setup.py check > +} > + > +package() { > + python3 setup.py install --prefix=/usr --root="$pkgdir" > +} > + > +sha512sums="a3333c83533e8bba5fb41a1bf438806728db9597071da2afa8e8e4f246d7d5b13d081d1df7d4e8cd17a67ba2a62900808c324e2f27de7d556f9afebea5cb6ecb alembic-1.4.1.tar.gz" > -- > 2.25.2 Hello Pilip, This patch has been applied. Thanks for your contribution. Note that we also accept contributions through our Gitlab instance, which will run the changes through our CI system. See [this mr][0] for example which I used to verify this and your other patches. Kind regards, Kevin [0]: https://gitlab.alpinelinux.org/alpine/aports/merge_requests/5542