mirror of
https://github.com/archlinux/aur.git
synced 2026-03-07 18:09:37 +01:00
added python-natsort python-isort and python-pies
This commit is contained in:
commit
a9ea5f07aa
3 changed files with 35 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
pkgbase = python-pies
|
||||
pkgdesc = The simplest (and tastiest) way to write one program that runs on both Python 2.6+ and Python 3.
|
||||
pkgver = 1.0.3
|
||||
pkgrel = 1
|
||||
url = https://github.com/timothycrosley/pies
|
||||
arch = any
|
||||
license = GPL2
|
||||
makedepends = python-setuptools
|
||||
depends = python
|
||||
options = !emptydirs
|
||||
source = https://pypi.python.org/packages/source/p/pies/pies-1.0.3.tar.gz
|
||||
md5sums = 044f45fe0ba267a7d5978735b392599e
|
||||
|
||||
pkgname = python-pies
|
||||
|
||||
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
20
PKGBUILD
Normal file
20
PKGBUILD
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Maintainer: Yaron de Leeuw <jdlmail at gmail >
|
||||
pkgname=python-pies
|
||||
_pkgname=pies
|
||||
pkgver=1.0.3
|
||||
pkgrel=1
|
||||
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')
|
||||
depends=('python')
|
||||
makedepends=(python-setuptools)
|
||||
options=(!emptydirs)
|
||||
source=("https://pypi.python.org/packages/source/p/pies/pies-$pkgver.tar.gz")
|
||||
md5sums=('044f45fe0ba267a7d5978735b392599e')
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$_pkgname-$pkgver"
|
||||
python setup.py install --root="$pkgdir/" --optimize=1
|
||||
}
|
||||
|
||||
Loading…
Add table
Reference in a new issue