Received: from wout5-smtp.messagingengine.com (wout5-smtp.messagingengine.com [64.147.123.21]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 09556781D62 for ; Wed, 18 Mar 2020 13:27:44 +0000 (UTC) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id 9244B4D4; Wed, 18 Mar 2020 09:27:42 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Wed, 18 Mar 2020 09:27:42 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:date:from :message-id:mime-version:subject:to:x-me-proxy:x-me-proxy :x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=Hv97eoFK4KQmVhMUI cD+dEG7KIdEScQ/DYxCRSHAjBk=; b=iorNQWKqUDgdoskjlSQ6CWKvAktddBvP8 ZDfSttzTgLjwDJxt+YzNUVo/gd56/+7l4OE4lj2szC+YS43zjUxJg3VeyDS62W1Y G9+YWqCIoq9QaPbZTD5vC0/M/ruDvo9ikvUcNhSpy9c+eKzAZpQ8dvQyqP+XoFgA PXCN752uTXFkTEDjDv1WKwDcOBx/gRtnUAA6fAPeaHeYIS1eWtAOs4Gdeft+70BY kv6hRpnJdRQFFfVUJDyR11pMAKIVcF4S9z3kQr9Hq/QDAFa4U2KK6+gYDi6OIMUA OZ0dr/HInLagAkIbKuNBmgjsqcHTt9c+RCvjjwNdSLXRtFUNcADOA== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrudefjedgheduucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpefhvffufffkofgggfestdekredtre dttdenucfhrhhomheprfhhihhlihhpphcuifhlrghumhcuoehpsehpghhlrghumhdruggv qeenucffohhmrghinhepphihphhirdhorhhgpdhphihthhhonhhhohhsthgvugdrohhrgh enucfkphepvddtjedrudehgedrvddvjedrfeefnecuvehluhhsthgvrhfuihiivgepvden ucfrrghrrghmpehmrghilhhfrhhomhepphesphhglhgruhhmrdguvg X-ME-Proxy: Received: from localhost.localdomain (unknown [207.154.227.33]) by mail.messagingengine.com (Postfix) with ESMTPA id DA04830614FA; Wed, 18 Mar 2020 09:27:40 -0400 (EDT) From: Philipp Glaum To: alpine-aports@lists.alpinelinux.org Cc: Philipp Glaum Subject: [PATCH] testing/py3-flask-migrate: new aport Date: Wed, 18 Mar 2020 13:27:25 +0000 Message-Id: <20200318132724.9272-1-p@pglaum.de> X-Mailer: git-send-email 2.25.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://pypi.org/project/Flask-Migrate/ SQLAlchemy database migrations for Flask applications using Alembic --- testing/py3-flask-migrate/APKBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 testing/py3-flask-migrate/APKBUILD diff --git a/testing/py3-flask-migrate/APKBUILD b/testing/py3-flask-migrate/APKBUILD new file mode 100644 index 0000000000..c4ab4f6968 --- /dev/null +++ b/testing/py3-flask-migrate/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: +# Maintainer: Philipp Glaum +pkgname=py3-flask-migrate +_pkgname=Flask-Migrate +pkgver=2.5.3 +pkgrel=0 +pkgdesc="SQLAlchemy database migrations for Flask applications using Alembic" +url="https://pypi.org/project/Flask-Migrate/" +arch="noarch" +license="MIT" +depends="python3 py3-flask py3-flask-sqlalchemy py3-alembic" +makedepends="py3-setuptools" +checkdepends="py3-flask-script" +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 test +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="f26db1c6ceddceb635cce4259b4508ecc8dc26dbfa67397205668883129835840050d909337a73712d3b1ff3e0bbfab74f5ac94c2ac472ec64f86e64789107ac Flask-Migrate-2.5.3.tar.gz" -- 2.25.2