Received: from wout5-smtp.messagingengine.com (wout5-smtp.messagingengine.com [64.147.123.21]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 0D071781B3D for ; Wed, 18 Mar 2020 13:27:03 +0000 (UTC) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id 938044C3; Wed, 18 Mar 2020 09:27:01 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Wed, 18 Mar 2020 09:27:01 -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=xMoJCmv1dAnBFAwNF 0X8t+aoUFxRAqo0mGr+yC0TJBk=; b=aLGvw+FYpfWOf/JGacIb8OZuui9POhmH2 tuyIaFKpnnf3oypDmSSrryQFSQKFwtmcxUm28C8Fyss1ZlmrrpZ4HxriPa0cuN11 NBmZsEge0YYIih+EdJXqfkfoiBAQ96eMn4sXAaT1l2NQDa7C9w2H5jytgS3rRQTG RT4n+0+lUv3+Qqr570H9g8m1IZ63d2WnXw+6pcEVvM5Ucz7WlLr3KRbAtRSZJU1o xIsVdKsW+Ape1m4u3LzZlqZvJwnocEW87LnxNCDA394upSpNM1DzvCvcj3Cr0vHE 5qtidxje7zsteYQeSz0MKIxGqegxW0PT+QDJ0h2nWI3TpaiJlERuQ== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrudefjedgheduucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpefhvffufffkofgggfestdekredtre dttdenucfhrhhomheprfhhihhlihhpphcuifhlrghumhcuoehpsehpghhlrghumhdruggv qeenucffohhmrghinhepphihphhirdhorhhgpdhphihthhhonhhhohhsthgvugdrohhrgh enucfkphepvddtjedrudehgedrvddvjedrfeefnecuvehluhhsthgvrhfuihiivgepuden ucfrrghrrghmpehmrghilhhfrhhomhepphesphhglhgruhhmrdguvg X-ME-Proxy: Received: from localhost.localdomain (unknown [207.154.227.33]) by mail.messagingengine.com (Postfix) with ESMTPA id AC6A230614FA; Wed, 18 Mar 2020 09:27:00 -0400 (EDT) From: Philipp Glaum To: alpine-aports@lists.alpinelinux.org Cc: Philipp Glaum Subject: [PATCH] testing/py3-flask-sqlalchemy: new aport Date: Wed, 18 Mar 2020 13:26:36 +0000 Message-Id: <20200318132635.9094-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-SQLAlchemy/ Adds SQLAlchemy support to your Flask application. --- testing/py3-flask-sqlalchemy/APKBUILD | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/py3-flask-sqlalchemy/APKBUILD diff --git a/testing/py3-flask-sqlalchemy/APKBUILD b/testing/py3-flask-sqlalchemy/APKBUILD new file mode 100644 index 0000000000..d874a5128a --- /dev/null +++ b/testing/py3-flask-sqlalchemy/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: +# Maintainer: Philipp Glaum +pkgname=py3-flask-sqlalchemy +_pkgname=Flask-SQLAlchemy +pkgver=2.4.1 +pkgrel=0 +pkgdesc="Adds SQLAlchemy support to your Flask application." +url="https://pypi.org/project/Flask-SQLAlchemy/" +arch="noarch" +license="BSD-3-Clause" +depends="python3 py3-flask py3-sqlalchemy" +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 test +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="a55e6fe563583e240bb594c157424fba1a8462f953fa0bb14701954bcb52d1e7bf71eec38f4037c1752ceab90e798642274de58e0f950d83e234f4c702e0b6ee Flask-SQLAlchemy-2.4.1.tar.gz" -- 2.25.2