[arch-commits] Commit in python-ecdsa/repos (3 files)
Ángel Velásquez
angvp at nymeria.archlinux.org
Wed Nov 27 07:00:18 UTC 2013
Date: Wednesday, November 27, 2013 @ 08:00:18
Author: angvp
Revision: 101535
archrelease: copy trunk to community-any
Added:
python-ecdsa/repos/community-any/
python-ecdsa/repos/community-any/LICENSE
(from rev 101534, python-ecdsa/trunk/LICENSE)
python-ecdsa/repos/community-any/PKGBUILD
(from rev 101534, python-ecdsa/trunk/PKGBUILD)
----------+
LICENSE | 24 ++++++++++++++++++++++++
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+)
Copied: python-ecdsa/repos/community-any/LICENSE (from rev 101534, python-ecdsa/trunk/LICENSE)
===================================================================
--- community-any/LICENSE (rev 0)
+++ community-any/LICENSE 2013-11-27 07:00:18 UTC (rev 101535)
@@ -0,0 +1,24 @@
+"python-ecdsa" Copyright (c) 2010 Brian Warner
+
+Portions written in 2005 by Peter Pearson and placed in the public domain.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
Copied: python-ecdsa/repos/community-any/PKGBUILD (from rev 101534, python-ecdsa/trunk/PKGBUILD)
===================================================================
--- community-any/PKGBUILD (rev 0)
+++ community-any/PKGBUILD 2013-11-27 07:00:18 UTC (rev 101535)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Angel Velasquez <angvp at archlinux.org>
+pkgbase=python-ecdsa
+pkgname=('python-ecdsa' 'python2-ecdsa')
+pkgver=0.10
+pkgrel=1
+pkgdesc="Implementation of ECDSA in Python"
+arch=('any')
+url="https://github.com/warner/python-ecdsa"
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+options=(!emptydirs)
+source=("http://pypi.python.org/packages/source/e/ecdsa/ecdsa-$pkgver.tar.gz" "LICENSE")
+md5sums=('e95941b3bcbf1726472bb724d7478551'
+ '66ffc5e30f76cbb5358fe54b645e5a1d')
+
+build() {
+ cp -R "$srcdir/ecdsa-$pkgver" "$srcdir/ecdsa-$pkgver-py2"
+ cd "$srcdir/ecdsa-$pkgver-py2"
+ sed -ie 's#/usr/bin/env python#/usr/bin/env python2#' ecdsa/*.py
+}
+
+package_python-ecdsa() {
+ depends=('python')
+ cd "$srcdir/ecdsa-$pkgver"
+ python setup.py install --root="$pkgdir/" --optimize=1
+ install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-ecdsa() {
+ depends=('python2')
+ cd "$srcdir/ecdsa-$pkgver-py2"
+ python2 setup.py install --root="$pkgdir/" --optimize=1
+ install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
More information about the arch-commits
mailing list