X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) by lists.alpinelinux.org (Postfix) with ESMTP id CC4135C5064 for ; Sat, 25 Feb 2017 08:10:02 +0000 (GMT) Received: from piha.riseup.net (unknown [10.0.1.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 83A3F1A245D for ; Sat, 25 Feb 2017 08:10:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1488010202; bh=kQzNa+dVSCBdg3acHVXnxVTMA5lz7wF7aDZmnp4BjdI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=SoHAvoRGhFdL4a6aq7OkKFo/Xb4hwsIzyUHAnEWn/EQP++lA0eAxeQ+SAn9JULzll cKq9Am23ITJaMn46Bd8u8bAthVC539aoPzw5I7H6Sl1EZwSm/Zs9krHe3Skqv1y2Ig eyR9OgxddssRUH99drdbV4lxC4A9sSAU+Aqf+L0I= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: pickfire) with ESMTPSA id 454DF1C02B6 From: Ivan Tham To: alpine-aports@lists.alpinelinux.org Cc: Ivan Tham Subject: [alpine-aports] [PATCH 4/4] testing/goobook: new aport Date: Sat, 25 Feb 2017 16:09:44 +0800 Message-Id: <20170225080944.10345-4-pickfire@riseup.net> In-Reply-To: <20170225080944.10345-1-pickfire@riseup.net> References: <20170225080944.10345-1-pickfire@riseup.net> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://gitlab.com/goobook/goobook Access Google contacts from the command line --- testing/goobook/APKBUILD | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 testing/goobook/APKBUILD diff --git a/testing/goobook/APKBUILD b/testing/goobook/APKBUILD new file mode 100644 index 0000000..dde3f0e --- /dev/null +++ b/testing/goobook/APKBUILD @@ -0,0 +1,48 @@ +# Contributor: Ivan Tham +# Maintainer: Ivan Tham +pkgname=goobook +_pkgname=goobook +pkgver=1.9 +pkgrel=0 +pkgdesc="Access Google contacts from the command line" +url="https://gitlab.com/goobook/goobook" +arch="all" +license="GPL3" +depends="py-httplib2 py-asn1 py-rsa py-asn1-modules py-six" +makedepends="python2-dev python3-dev py-setuptools" +subpackages="py2-${pkgname}:_py2 py3-${pkgname}:_py3" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir/"$pkgname-$pkgver + +build() { + cd "$builddir" + python2 setup.py build || return 1 + python3 setup.py build || return 1 +} + +package() { + mkdir -p "$pkgdir" +} + +_py2() { + replaces="$pkgname" + depends="${depends//py-/py2-}" + _py python2 +} + +_py3() { + depends="${depends//py-/py3-}" + _py python3 +} + +_py() { + local python="$1" + pkgdesc="$pkgdesc (for $python)" + depends="$depends $python" + install_if="$pkgname=$pkgver-r$pkgrel $python" + + cd "$builddir" + $python setup.py install --prefix=/usr --root="$subpkgdir" || return 1 +} + +sha512sums="66d017bfa0fcad39d24b80e454d4d2e97f92a95f6dbf545739b89721b8c44702177a7f656d9cf1f38ac8278f235935afe666047cbfb64733f8deae6838f91d81 goobook-1.9.tar.gz" -- 2.11.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---