removed python2-yaml because already in apps

This commit is contained in:
AlmAck 2015-01-29 22:45:34 +01:00
parent ac297e3175
commit e4c5e0eb40
2 changed files with 0 additions and 39 deletions

View File

@ -1,32 +0,0 @@
#
# Games Packages for Chakra, part of chakra-project.org
#
# Contributor: Michal Bozon <michal.bozon__at__gmail.com>
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
pkgname=python2-yaml
_pkgname=PyYAML
pkgver=3.10
pkgrel=1
pkgdesc="Python bindings for YAML, using fast libYAML library"
arch=('i686' 'x86_64')
url="http://pyyaml.org"
license=('MIT')
depends=('python' 'yaml')
provides=('python-yaml')
replaces=('python-yaml')
conflicts=('python-yaml')
install='python2-yaml.install'
source=(http://pyyaml.org/download/pyyaml/PyYAML-$pkgver.tar.gz)
md5sums=('74c94a383886519e9e7b3dd1ee540247')
package() {
cd $srcdir/$_pkgname-$pkgver
python2 setup.py install \
--prefix=/usr \
--root=$pkgdir
# License.
install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/license.txt
}

View File

@ -1,7 +0,0 @@
post_install() {
cat << EOT
==> Note that even though this package uses yaml library,
==> slower pure python implementation is used by default.
==> See http://pyyaml.org/wiki/PyYAMLDocumentation
EOT
}