python3-PyYAML: add new package, index

This commit is contained in:
suvari
2017-01-16 20:13:07 +03:00
parent fc94ddc27a
commit ec2fb22d11
8 changed files with 112654 additions and 112519 deletions
@@ -0,0 +1,20 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir = "PyYAML-%s" % get.srcVERSION()
def build():
pythonmodules.compile(pyVer="3")
def install():
pythonmodules.install(pyVer="3")
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), "examples")
pisitools.dodoc("LICENSE", "PKG-INFO", "README")