From 9f88f198abe7b4a258bea1bd401928ee51041daa Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 3 Dec 2015 20:31:31 +0200 Subject: [PATCH 1/6] procps-ng:add --- util/admin/procps-ng/actions.py | 27 +++++++++++++++ util/admin/procps-ng/pspec.xml | 61 +++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 util/admin/procps-ng/actions.py create mode 100644 util/admin/procps-ng/pspec.xml diff --git a/util/admin/procps-ng/actions.py b/util/admin/procps-ng/actions.py new file mode 100644 index 0000000000..c1c8a3ec44 --- /dev/null +++ b/util/admin/procps-ng/actions.py @@ -0,0 +1,27 @@ +#!/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 autotools +from pisi.actionsapi import shelltools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + shelltools.system("sed -i 's: + + + + procps-ng + https://gitlab.com/procps-ng/procps + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app + Utilities for monitoring your system and its processes + procps is a set of command line and full-screen utilities that provide information out of the pseudo-filesystem most commonly located at /proc. + + ncurses-devel + + http://downloads.sourceforge.net/procps-ng/procps-ng-3.3.11.tar.xz + + + + procps-ng + Utilities for monitoring your system and its processes + + ncurses + + + /usr/bin + /usr/sbin + /usr/lib/libprocps.so.* + /usr/lib/libprocps.a + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + procps-ng-devel + Development files for procps-ng + + procps-ng + + + /usr/include + /usr/lib/libprocps.so + /usr/lib/pkgconfig + + + + + + 2015-12-03 + 3.3.11 + First release + Alihan Öztürk + alihan@pisilinux.org + + + \ No newline at end of file From 616dad27fa0488df9b8656c70d11cacc27d55d22 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Fri, 4 Dec 2015 17:42:47 +0200 Subject: [PATCH 2/6] procps-ng:delete --- util/admin/procps-ng/actions.py | 27 --------------- util/admin/procps-ng/pspec.xml | 61 --------------------------------- 2 files changed, 88 deletions(-) delete mode 100644 util/admin/procps-ng/actions.py delete mode 100644 util/admin/procps-ng/pspec.xml diff --git a/util/admin/procps-ng/actions.py b/util/admin/procps-ng/actions.py deleted file mode 100644 index c1c8a3ec44..0000000000 --- a/util/admin/procps-ng/actions.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/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 autotools -from pisi.actionsapi import shelltools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - shelltools.system("sed -i 's: - - - - procps-ng - https://gitlab.com/procps-ng/procps - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app - Utilities for monitoring your system and its processes - procps is a set of command line and full-screen utilities that provide information out of the pseudo-filesystem most commonly located at /proc. - - ncurses-devel - - http://downloads.sourceforge.net/procps-ng/procps-ng-3.3.11.tar.xz - - - - procps-ng - Utilities for monitoring your system and its processes - - ncurses - - - /usr/bin - /usr/sbin - /usr/lib/libprocps.so.* - /usr/lib/libprocps.a - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - procps-ng-devel - Development files for procps-ng - - procps-ng - - - /usr/include - /usr/lib/libprocps.so - /usr/lib/pkgconfig - - - - - - 2015-12-03 - 3.3.11 - First release - Alihan Öztürk - alihan@pisilinux.org - - - \ No newline at end of file From 37a348250bfe300e841761ac1bbef4b3d62cde29 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Fri, 4 Dec 2015 18:09:22 +0200 Subject: [PATCH 3/6] python-virtualenv:first release --- .../python/python-virtualenv/actions.py | 19 ++++++++ .../python/python-virtualenv/pspec.xml | 43 +++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 programming/language/python/python-virtualenv/actions.py create mode 100644 programming/language/python/python-virtualenv/pspec.xml diff --git a/programming/language/python/python-virtualenv/actions.py b/programming/language/python/python-virtualenv/actions.py new file mode 100644 index 0000000000..e50d031303 --- /dev/null +++ b/programming/language/python/python-virtualenv/actions.py @@ -0,0 +1,19 @@ +#!/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/python2.7") + shelltools.system("sed -i 's|#!/usr/bin/env python$|#!/usr/bin/env python2|' virtualenv.py") + pythonmodules.compile(pyVer="2.7") + +def install(): + shelltools.export("PYTHON", "/usr/bin/python2.7") + pythonmodules.install(pyVer="2.7") + + pisitools.dodoc("LICENSE*", "AUTHORS*", "README*") \ No newline at end of file diff --git a/programming/language/python/python-virtualenv/pspec.xml b/programming/language/python/python-virtualenv/pspec.xml new file mode 100644 index 0000000000..db8d0c8de5 --- /dev/null +++ b/programming/language/python/python-virtualenv/pspec.xml @@ -0,0 +1,43 @@ + + + + + python-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 + + python-devel + + + + + python-virtualenv + + python + + Virtual Python Environment builder + + /usr/bin + /usr/share/doc + /usr/lib/python2.7 + + + + + + 2015-12-04 + 13.1.2 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + \ No newline at end of file From 2e03f41207a83d05902a88368963eba6f0498dbd Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Fri, 4 Dec 2015 18:16:13 +0200 Subject: [PATCH 4/6] python3-virtualenv:first release --- .../language/python3-virtualenv/actions.py | 22 ++++++++++ .../language/python3-virtualenv/pspec.xml | 43 +++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 programming/language/python3-virtualenv/actions.py create mode 100644 programming/language/python3-virtualenv/pspec.xml 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 From 9a35b1fd229ea09a4d9061fb0f8dd12b07e9ed1f Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Fri, 4 Dec 2015 18:24:03 +0200 Subject: [PATCH 5/6] python-virtualenv:delete --- .../python/python-virtualenv/actions.py | 19 -------- .../python/python-virtualenv/pspec.xml | 43 ------------------- 2 files changed, 62 deletions(-) delete mode 100644 programming/language/python/python-virtualenv/actions.py delete mode 100644 programming/language/python/python-virtualenv/pspec.xml diff --git a/programming/language/python/python-virtualenv/actions.py b/programming/language/python/python-virtualenv/actions.py deleted file mode 100644 index e50d031303..0000000000 --- a/programming/language/python/python-virtualenv/actions.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/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/python2.7") - shelltools.system("sed -i 's|#!/usr/bin/env python$|#!/usr/bin/env python2|' virtualenv.py") - pythonmodules.compile(pyVer="2.7") - -def install(): - shelltools.export("PYTHON", "/usr/bin/python2.7") - pythonmodules.install(pyVer="2.7") - - pisitools.dodoc("LICENSE*", "AUTHORS*", "README*") \ No newline at end of file diff --git a/programming/language/python/python-virtualenv/pspec.xml b/programming/language/python/python-virtualenv/pspec.xml deleted file mode 100644 index db8d0c8de5..0000000000 --- a/programming/language/python/python-virtualenv/pspec.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - python-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 - - python-devel - - - - - python-virtualenv - - python - - Virtual Python Environment builder - - /usr/bin - /usr/share/doc - /usr/lib/python2.7 - - - - - - 2015-12-04 - 13.1.2 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - \ No newline at end of file From 1d2d6aadb821d9440a16ffe15c039a0d3d766265 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Fri, 4 Dec 2015 18:24:34 +0200 Subject: [PATCH 6/6] python3-virtualenv:delete --- .../language/python3-virtualenv/actions.py | 22 ---------- .../language/python3-virtualenv/pspec.xml | 43 ------------------- 2 files changed, 65 deletions(-) delete mode 100644 programming/language/python3-virtualenv/actions.py delete mode 100644 programming/language/python3-virtualenv/pspec.xml diff --git a/programming/language/python3-virtualenv/actions.py b/programming/language/python3-virtualenv/actions.py deleted file mode 100644 index 79ce7cfbfb..0000000000 --- a/programming/language/python3-virtualenv/actions.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/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 deleted file mode 100644 index 11e85059eb..0000000000 --- a/programming/language/python3-virtualenv/pspec.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - 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