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 BF47FDCCDC6 for ; Wed, 3 Jun 2015 06:04:43 +0000 (UTC) Received: from mail-ie0-f171.google.com (mail-ie0-f171.google.com [209.85.223.171]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 82FFDDCAF4A for ; Wed, 3 Jun 2015 06:04:38 +0000 (UTC) Received: by ieclw1 with SMTP id lw1so6015519iec.3 for ; Tue, 02 Jun 2015 23:04:38 -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:in-reply-to:references; bh=/U1TcE0LWBIuyRT29IWFMdbXBLYpszPn1aH7PCZYnrA=; b=GNvPXIO/kegbiNqTdjjgz8ez6rxfzrd4X4KtybKn2gU8i4cDZB8Eqr40inV4ls7lxc pK0+3q/ziqyBoUW8TmcteIfqVHqx8TD+Zjx06p5U3zHkHOauEZC/FPo9eFDZAYdqZ5Tb YSJDpetMhRxfm6YgQ0UdJddt4AM+RC15dJg0o5uIdiznRzLF0KJeZvsPlkoDlB6Rkyd9 MQbte4VAcz028ZEliwgjZIawbJzHM/niR6suDwjdPYWDA3VQOxAHy9KIEQ37TYamBxZs P9LDA7zOiE9FV9SB9odW8+C4KjsXbQg94g4k6pPo7Wf/rq+3AwKzoUVfflS6ZUeSyDTu rwaA== X-Received: by 10.107.133.154 with SMTP id p26mr38058235ioi.7.1433311478171; Tue, 02 Jun 2015 23:04:38 -0700 (PDT) Received: from localhost.localdomain (97-90-234-80.dhcp.eucl.wi.charter.com. [97.90.234.80]) by mx.google.com with ESMTPSA id cy11sm11607921igc.14.2015.06.02.23.04.37 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 02 Jun 2015 23:04:37 -0700 (PDT) From: Peter Bui To: alpine-aports@lists.alpinelinux.org Cc: Peter Bui Subject: [alpine-aports] [PATCH 4/9] testing/py-asn1-modules: new aport Date: Wed, 3 Jun 2015 01:04:06 -0500 Message-Id: <1433311451-26735-4-git-send-email-pnutzh4x0r@gmail.com> X-Mailer: git-send-email 2.4.1 In-Reply-To: <1433311451-26735-1-git-send-email-pnutzh4x0r@gmail.com> References: <1433311451-26735-1-git-send-email-pnutzh4x0r@gmail.com> X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://pypi.python.org/pypi/pyasn1-modules A collection of ASN.1-based protocols modules --- testing/py-asn1-modules/APKBUILD | 41 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/py-asn1-modules/APKBUILD diff --git a/testing/py-asn1-modules/APKBUILD b/testing/py-asn1-modules/APKBUILD new file mode 100644 index 0000000..5f27b5d --- /dev/null +++ b/testing/py-asn1-modules/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Peter Bui +# Maintainer: +pkgname=py-asn1-modules +_pkgname=pyasn1-modules +pkgver=0.0.5 +pkgrel=0 +pkgdesc="A collection of ASN.1-based protocols modules" +url="http://pypi.python.org/pypi/pyasn1-modules" +arch="noarch" +license="BSD" +depends="python py-openssl py-asn1" +depends_dev="" +makedepends="python-dev" +install="" +subpackages="" +source="http://pypi.python.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_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 +} + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="6c5c9dd61a5784ff22695ac233cb11f8 pyasn1-modules-0.0.5.tar.gz" +sha256sums="be65f00ed28e30756f1ef39377cb382480a2368699179d646a84d79fe9349941 pyasn1-modules-0.0.5.tar.gz" +sha512sums="b8fa41ed28087097502e8362022d819fe6914511c09f60f64f173c5674684fa8c45de23ce718700001d9f2d9b11adc17657d7cfd4cb24ea740b8d14eba8d8161 pyasn1-modules-0.0.5.tar.gz" -- 2.4.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---