X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id DB5DEDC09E4 for ; Mon, 28 Sep 2015 21:59:09 +0000 (UTC) Received: from mail-wi0-f174.google.com (mail-wi0-f174.google.com [209.85.212.174]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 83257DC0075 for ; Mon, 28 Sep 2015 21:59:09 +0000 (UTC) Received: by wiclk2 with SMTP id lk2so120719729wic.1 for ; Mon, 28 Sep 2015 14:59:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=DKI7szzjGcMpcJVagxrYXbRhMXusGcVmtACrzWECzkM=; b=RI5hIn4Mf9lQ3Xtk8qj+9ww5jTQ+6tiv6B7GEhdWTEKxV8vlIfKKKVMfTDO3HSuE5O PF3sxYh6YsiKkKRKeRhEDHoPZOG7B10joLJiQTc/6HqIvsWSehwS6wjKIYO1kDeTRlUS iqWW2R3qToFbNgPJdgXvZJIPeSC969X1TPC4oRaMlKidMoqKIMrByemSqdGQYdUg/UjP WL18m7WR+/3jUwwTO0Z+LF6bPXi+2mxwGkAhM9oaMx5jyeJj1G90e852aJUMJwFwv19e qqfE4g/bgN1PEw8WLPuYkQsTrrdF8rgOrvKRoxbETIl70Fwr7S2CeGC+dSqur65+wS5i Z4Ew== X-Received: by 10.180.75.176 with SMTP id d16mr22423536wiw.75.1443477547765; Mon, 28 Sep 2015 14:59:07 -0700 (PDT) Received: from 834d95ad2836.home.ishtanzar.net (eqs59-1-78-219-80-98.fbx.proxad.net. [78.219.80.98]) by smtp.gmail.com with ESMTPSA id jq3sm7099858wjb.26.2015.09.28.14.59.06 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 28 Sep 2015 14:59:06 -0700 (PDT) From: Pierre-Gildas MILLON X-Google-Original-From: Pierre-Gildas MILLON To: alpine-aports@lists.alpinelinux.org Cc: Pierre-Gildas MILLON Subject: [alpine-aports] [PATCH] testing/py-pygit2: new aport Date: Mon, 28 Sep 2015 21:58:47 +0000 Message-Id: <1443477527-795-1-git-send-email-pgmillon@gmail.com> X-Mailer: git-send-email 2.4.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://github.com/libgit2/pygit2 Python bindings for libgit2 --- testing/py-pygit2/APKBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 testing/py-pygit2/APKBUILD diff --git a/testing/py-pygit2/APKBUILD b/testing/py-pygit2/APKBUILD new file mode 100644 index 0000000..a85332f --- /dev/null +++ b/testing/py-pygit2/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Pierre-Gildas MILLON +# Maintainer: +pkgname=py-pygit2 +pkgver=0.23.1 +pkgrel=0 +pkgdesc="Python bindings for libgit2" +url=https://github.com/libgit2/pygit2 +arch=all +license=GPLv2 +depends=libgit2 +makedepends="py-setuptools py-cffi python-dev" +source=saveas-https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz/pygit2-${pkgver}.tar.gz + +_builddir=$srcdir/pygit2-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python setup.py build +} + +package() { + cd "$_builddir" + python setup.py install --root "$pkgdir" +} + +md5sums="ad1e53c55d7297ab0d84f9cbb9fc592b pygit2-0.23.1.tar.gz" +sha256sums="7ce72913a183696f90563b5710fdcb78af2559959019349de794fd1d0f8dce19 pygit2-0.23.1.tar.gz" +sha512sums="12a36cadb5292116e7a663eda62e2ccd13af8b33d0e86c8eadfbcbe838629a369fcfddcefc7a2cca6b0d6c54df60010ae891ff77e0f3ccfd48de02776ed77cfb pygit2-0.23.1.tar.gz" -- 2.4.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---