~alpine/aports

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

[PATCH] testing/py3-gpxpy: new aport

Bart Ribbers <bribbers@disroot.org>
Details
Message ID
<20190907151710.26378-1-bribbers@disroot.org>
DKIM signature
missing
Download raw message
Patch: +28 -0
---
 testing/py3-gpxpy/APKBUILD | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 testing/py3-gpxpy/APKBUILD

diff --git a/testing/py3-gpxpy/APKBUILD b/testing/py3-gpxpy/APKBUILD
new file mode 100644
index 0000000000..ed1077c940
--- /dev/null
+++ b/testing/py3-gpxpy/APKBUILD
@@ -0,0 +1,28 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-gpxpy
_pkgname=${pkgname/py3-/}
pkgver=1.3.5
pkgrel=0
pkgdesc="A python GPX parser"
url="https://github.com/tkrajina/gpxpy"
arch="noarch"
license="Apache-2.0"
depends="python3"
makedepends="python3-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/tkrajina/$_pkgname/archive/v$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="7dc1a93f93eb3b8827e5dd5ceb3e49dc9d2be7dabddf4fb2b81c64c929f5f640ad6a62fefe9ee2762d5d04431a2e2ca4e57d2d9324dc8803b80840429cb57009  py3-gpxpy-1.3.5.tar.gz"
-- 
2.23.0
Details
Message ID
<BWTVDS2RT5VY.2B9HRY40KYS40@Impreza>
In-Reply-To
<20190907151710.26378-1-bribbers@disroot.org> (view parent)
DKIM signature
missing
Download raw message
On Sat Sep 7, 2019 at 5:17 PM Bart Ribbers wrote:
> ---
>  testing/py3-gpxpy/APKBUILD | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
>  create mode 100644 testing/py3-gpxpy/APKBUILD
> 
> diff --git a/testing/py3-gpxpy/APKBUILD b/testing/py3-gpxpy/APKBUILD
> new file mode 100644
> index 0000000000..ed1077c940
> --- /dev/null
> +++ b/testing/py3-gpxpy/APKBUILD
> @@ -0,0 +1,28 @@
> +# Contributor: Bart Ribbers <bribbers@disroot.org>
> +# Maintainer: Bart Ribbers <bribbers@disroot.org>
> +pkgname=py3-gpxpy
> +_pkgname=${pkgname/py3-/}
> +pkgver=1.3.5
> +pkgrel=0
> +pkgdesc="A python GPX parser"
> +url="https://github.com/tkrajina/gpxpy"
> +arch="noarch"
> +license="Apache-2.0"
> +depends="python3"
> +makedepends="python3-dev"

I think it should be py3-setuptools

> +source="$pkgname-$pkgver.tar.gz::https://github.com/tkrajina/$_pkgname/archive/v$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="7dc1a93f93eb3b8827e5dd5ceb3e49dc9d2be7dabddf4fb2b81c64c929f5f640ad6a62fefe9ee2762d5d04431a2e2ca4e57d2d9324dc8803b80840429cb57009  py3-gpxpy-1.3.5.tar.gz"
> -- 
> 2.23.0
Reply to thread Export thread (mbox)