Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 8E63B7819CD for <~alpine/aports@lists.alpinelinux.org>; Tue, 20 Oct 2020 02:23:47 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cmpwn.com; s=key1; t=1603160625; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Ses+4F2wKZ4/5Ucu6g+Ymr8n9sws6mVGAzPI3wRN7KY=; b=Cd0DHK4LDoRoLodjfVn20cAWsPC1iDwzmboUaseQzSr5RttSN4IXUAl5j7qhlcRhgKurQr Z0TYfcso6ZzX2cCwn6ggOL1Oce6sh/kgK3255xDIXKvPDab7m+jogAg4jsuxCJP0UIoIxA TnFs1lp01gR0ypS7OuTDv6Y3Jar7u0lKYD/ZKFslT3Z+pFTV7IN+pw1Hr3jRAUizyh00op thB7wA3aGXrgGidkixXKkrd/aEgSQHJQdGsh8+7GbdJzVD/7OuUPtwlOcFgd5HRB+Y+ivL dkAs4LBJ4AEn5NqeN/CmYbKRvo2r1h8BJUcbcpb3yXNOgksurU3t+rKLZxOvYw== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH 2/5] testing/py3-i18naddress: new aport Date: Mon, 19 Oct 2020 22:23:34 -0400 Message-Id: <20201020022337.3724-3-sir@cmpwn.com> In-Reply-To: <20201020022337.3724-1-sir@cmpwn.com> References: <20201020022337.3724-1-sir@cmpwn.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.00 --- testing/py3-i18naddress/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/py3-i18naddress/APKBUILD diff --git a/testing/py3-i18naddress/APKBUILD b/testing/py3-i18naddress/APKBUILD new file mode 100644 index 0000000000..a333b87262 --- /dev/null +++ b/testing/py3-i18naddress/APKBUILD @@ -0,0 +1,28 @@ +# Maintainer: Drew DeVault +pkgname=py3-i18naddress +_pyname=google-i18n-address +pkgver=2.4.0 +pkgrel=0 +pkgdesc="Address validation helpers for Google's i18n address database" +url="https://github.com/mirumee/google-i18n-address" +arch="noarch" +license="BSD-3-Clause" +depends="python3" +makedepends="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() { + python3 setup.py check +} + +package() { + python3 setup.py install --root="$pkgdir" --optimize=1 +} + +sha512sums="a64e598b838f9d83b70b4f6acb3dc6c8930239e44b726f39a8f973334e2927d0394d1f323ca53acd43f4d9abede2a7ee48427f48a90427cbae7aada4cd8f08a5 google-i18n-address-2.4.0.tar.gz" -- 2.28.0