diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-02-28 10:06:58 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-28 11:35:21 -0300 |
commit | cb8c4a31370088114f7cedac7bb1419790849cb8 (patch) | |
tree | f1a46c28bd87cd0aecdae8c409a0555d597de9da /community | |
parent | cf30db7e4df96d3fb557a0b2b5dbb9ff283b3d83 (diff) | |
download | aports-cb8c4a31370088114f7cedac7bb1419790849cb8.tar.bz2 aports-cb8c4a31370088114f7cedac7bb1419790849cb8.tar.xz |
community/py3-automat: upgrade to 20.2.0
Diffstat (limited to 'community')
-rw-r--r-- | community/py3-automat/APKBUILD | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/community/py3-automat/APKBUILD b/community/py3-automat/APKBUILD index 8285c5413c..488ee637f1 100644 --- a/community/py3-automat/APKBUILD +++ b/community/py3-automat/APKBUILD @@ -2,27 +2,25 @@ # Contributor: Tiago Ilieve <tiago.myhro@gmail.com> # Maintainer: Tiago Ilieve <tiago.myhro@gmail.com> pkgname=py3-automat -_pkgname=Automat -pkgver=0.8.0 -pkgrel=1 +pkgver=20.2.0 +pkgrel=0 pkgdesc="Self-service finite-state machines for the programmer on the go" url="https://automat.readthedocs.io/" arch="noarch" license="MIT" depends="py3-attrs py3-six" -makedepends="py3-setuptools" +makedepends="py3-setuptools py3-setuptools_scm" checkdepends="py3-pytest py3-pluggy" -source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" -builddir="$srcdir/$_pkgname-$pkgver" +source="$pkgname-$pkgver.tar.gz::https://github.com/glyph/automat/archive/v$pkgver.tar.gz" +builddir="$srcdir/automat-$pkgver" replaces="py-automat" # Backwards compatibility provides="py-automat=$pkgver-r$pkgrel" # Backwards compatibility prepare() { - sed -i setup.py \ - -e "/print(/d" \ - -e "/setup_requires=/,+3d" \ - -e "s/use_scm_version=True/version='${pkgver}'/" + default_prepare + + export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver } build() { @@ -37,4 +35,4 @@ package() { python3 setup.py install --prefix=/usr --root="$pkgdir" } -sha512sums="2dbd4e784f65b02a8c93fc5f15236df3649d667a9792f6cac929dbac5d971495bdab4825df0fcd6817b9a9f79b7a5d8cfbdf8e4d18605f0761546b31b3091ad7 Automat-0.8.0.tar.gz" +sha512sums="ccba3e82f589fedb1f83dfb37a6a42b51a78d8c3e6fea22c9518135ff194f5f70e2f9c5f0eab50b6e116dae92c94754aac8dbf0e670a59015c916991736b4076 py3-automat-20.2.0.tar.gz" |