X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-wi0-f169.google.com (mail-wi0-f169.google.com [209.85.212.169]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 5D429DC022D for ; Thu, 11 Dec 2014 09:54:54 +0000 (UTC) Received: by mail-wi0-f169.google.com with SMTP id r20so880975wiv.2 for ; Thu, 11 Dec 2014 01:54:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=qoNInHXTvm0JZ6oGKzNn4WlXxJlfQN3vqyPLs7quYCc=; b=eu1T2e0yZY4/JzR4UbqFoOlEBv3ol3gZFbqFG54D75NrubHt8G4aOvun8FwvOPLVQ2 8+KRZ5mrKVYUU6Q4mokTy5rLct0ErjnKD8X4rwGl/1yroS0KRS3qOUhfU6lhBe+4uMdZ N464G/Ui5lJ21wvELKwG+uRRH9FBEyG15nIklqVd9gb8A+qNDytNN/uN1Hmyc9ldlgcw vpx3ZEl3pLWRvYsyEt64uMwpEU1w8UbQpHJghrxQDnKhDoQak8OkJYRzeDgYxJVA21b2 HYkx3hKoOy+ASXZjs8s4Va5SU74emQC+vyq1ecJAEzBlpkNTUyEejpqFB09of3vHVmfr /4ZQ== X-Received: by 10.180.96.161 with SMTP id dt1mr14602950wib.38.1418291692712; Thu, 11 Dec 2014 01:54:52 -0800 (PST) Received: from alpine.my.domain (84.127.141.73.dyn.user.ono.com. [84.127.141.73]) by mx.google.com with ESMTPSA id eu8sm1624600wib.21.2014.12.11.01.54.51 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 11 Dec 2014 01:54:52 -0800 (PST) From: AmatCoder To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH] testing/py-xdg: new aport Date: Thu, 11 Dec 2014 09:50:08 +0000 Message-Id: <1418291408-6940-1-git-send-email-amatcoder@gmail.com> X-Mailer: git-send-email 2.2.0 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/py-xdg/APKBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 testing/py-xdg/APKBUILD diff --git a/testing/py-xdg/APKBUILD b/testing/py-xdg/APKBUILD new file mode 100644 index 0000000..c22458d --- /dev/null +++ b/testing/py-xdg/APKBUILD @@ -0,0 +1,36 @@ +# Contributor: August Klein +# Maintainer: August Klein +pkgname=py-xdg +_pkgname=pyxdg +pkgver=0.25 +pkgrel=0 +pkgdesc="A python library to access freedesktop.org standards" +url="http://freedesktop.org/wiki/Software/pyxdg" +arch="noarch" +license="LGPL" +depends="" +depends_dev="python-dev" +makedepends="$depends_dev" +install="" +subpackages="" +source="http://people.freedesktop.org/~takluyver/$_pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$_pkgname-$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 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="bedcdb3a0ed85986d40044c87f23477c pyxdg-0.25.tar.gz" +sha256sums="81e883e0b9517d624e8b0499eb267b82a815c0b7146d5269f364988ae031279d pyxdg-0.25.tar.gz" +sha512sums="86cbf3a54fb8e79043db60dcdbb3fb10013ae25a900fa3592edc8a24bf3f440c19bc04626c7906293c785fcb56eab9d87d209b723b5baa872376ba1eb86758b6 pyxdg-0.25.tar.gz" -- 2.2.0 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---