diff --git a/programming/language/python3-virtualenv/actions.py b/programming/language/python3-virtualenv/actions.py new file mode 100644 index 0000000000..79ce7cfbfb --- /dev/null +++ b/programming/language/python3-virtualenv/actions.py @@ -0,0 +1,22 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import pythonmodules +from pisi.actionsapi import shelltools +from pisi.actionsapi import pisitools + +def build(): + + shelltools.export("PYTHON", "/usr/bin/python3.4") + pythonmodules.compile(pyVer="3.4") + +def install(): + shelltools.export("PYTHON", "/usr/bin/python3.4") + pythonmodules.install(pyVer="3.4") + + pisitools.rename("/usr/bin/virtualenv", "virtualenv3") + + pisitools.dodoc("LICENSE*", "AUTHORS*", "README*") \ No newline at end of file diff --git a/programming/language/python3-virtualenv/pspec.xml b/programming/language/python3-virtualenv/pspec.xml new file mode 100644 index 0000000000..11e85059eb --- /dev/null +++ b/programming/language/python3-virtualenv/pspec.xml @@ -0,0 +1,43 @@ + + + + + python3-virtualenv + https://virtualenv.pypa.io/ + + Alihan Öztürk + alihan@pisilinux.org + + MIT + library + Virtual Python Environment builder + Virtual Python Environment builder + https://pypi.python.org/packages/source/v/virtualenv/virtualenv-13.1.2.tar.gz + + python3-devel + + + + + python3-virtualenv + + python3 + + Virtual Python Environment builder + + /usr/bin + /usr/share/doc + /usr/lib + + + + + + 2015-12-04 + 13.1.2 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + \ No newline at end of file