three version bumps, and one license fix

This commit is contained in:
Yaron de Leeuw 2014-08-17 20:56:37 +03:00
parent 910a1776b8
commit b3f679607b
2 changed files with 6 additions and 4 deletions

View file

@ -1,10 +1,10 @@
pkgbase = python-pies
pkgdesc = The simplest (and tastiest) way to write one program that runs on both Python 2.6+ and Python 3.
pkgver = 2.6.1
pkgrel = 1
pkgrel = 2
url = https://github.com/timothycrosley/pies
arch = any
license = GPL2
license = MIT
makedepends = python-setuptools
depends = python
source = python-pies-2.6.1.tar.gz::https://github.com/timothycrosley/pies/archive/2.6.1.tar.gz

View file

@ -4,11 +4,11 @@
pkgname=python-pies
_pkgname=pies
pkgver=2.6.1
pkgrel=1
pkgrel=2
pkgdesc="The simplest (and tastiest) way to write one program that runs on both Python 2.6+ and Python 3."
arch=('any')
url="https://github.com/timothycrosley/pies"
license=('GPL2')
license=('MIT')
depends=('python')
makedepends=(python-setuptools)
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
@ -17,5 +17,7 @@ md5sums=('65312c468735c1d7b18c722b2ecd47be')
package() {
cd "$srcdir/$_pkgname-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}