From 7fafc2840290223f385b246293022224fe522f8f Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Tue, 7 Jun 2016 00:15:28 +0300 Subject: [PATCH] python3 add new package and fix --- .../python3/python3-argparse/actions.py | 16 +++++++ .../python3/python3-argparse/pspec.xml | 39 +++++++++++++++ .../python3/python3-colorama/actions.py | 15 ++++++ .../python3/python3-colorama/pspec.xml | 38 +++++++++++++++ .../python3/python3-docker-py/actions.py | 15 ++++++ .../python3/python3-docker-py/pspec.xml | 45 +++++++++++++++++ .../language/python3/python3-nose/actions.py | 33 +++++++++++++ .../language/python3/python3-nose/pspec.xml | 45 +++++++++++++++++ .../python3/python3-nose/translations.xml | 8 ++++ .../python3/python3-psutil/actions.py | 16 +++++++ .../language/python3/python3-psutil/pspec.xml | 41 ++++++++++++++++ .../python3/python3-psutil/translations.xml | 8 ++++ .../python3/python3-requests/actions.py | 14 ++++++ .../python3/python3-requests/pspec.xml | 40 ++++++++++++++++ .../language/python3/python3-six/actions.py | 17 +++++++ .../language/python3/python3-six/pspec.xml | 48 +++++++++++++++++++ .../python3/python3-six/translations.xml | 7 +++ .../python3-websocket-client/actions.py | 15 ++++++ .../python3-websocket-client/pspec.xml | 40 ++++++++++++++++ 19 files changed, 500 insertions(+) create mode 100644 programming/language/python3/python3-argparse/actions.py create mode 100644 programming/language/python3/python3-argparse/pspec.xml create mode 100644 programming/language/python3/python3-colorama/actions.py create mode 100644 programming/language/python3/python3-colorama/pspec.xml create mode 100644 programming/language/python3/python3-docker-py/actions.py create mode 100644 programming/language/python3/python3-docker-py/pspec.xml create mode 100644 programming/language/python3/python3-nose/actions.py create mode 100644 programming/language/python3/python3-nose/pspec.xml create mode 100644 programming/language/python3/python3-nose/translations.xml create mode 100644 programming/language/python3/python3-psutil/actions.py create mode 100644 programming/language/python3/python3-psutil/pspec.xml create mode 100644 programming/language/python3/python3-psutil/translations.xml create mode 100644 programming/language/python3/python3-requests/actions.py create mode 100644 programming/language/python3/python3-requests/pspec.xml create mode 100644 programming/language/python3/python3-six/actions.py create mode 100644 programming/language/python3/python3-six/pspec.xml create mode 100644 programming/language/python3/python3-six/translations.xml create mode 100644 programming/language/python3/python3-websocket-client/actions.py create mode 100644 programming/language/python3/python3-websocket-client/pspec.xml diff --git a/programming/language/python3/python3-argparse/actions.py b/programming/language/python3/python3-argparse/actions.py new file mode 100644 index 0000000000..8c364969fb --- /dev/null +++ b/programming/language/python3/python3-argparse/actions.py @@ -0,0 +1,16 @@ +#!/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 pisitools + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") + + pisitools.dodoc("LICENSE*", "MANIFEST*", "PKG-INFO", "NEWS*", "README*") \ No newline at end of file diff --git a/programming/language/python3/python3-argparse/pspec.xml b/programming/language/python3/python3-argparse/pspec.xml new file mode 100644 index 0000000000..d967e245a1 --- /dev/null +++ b/programming/language/python3/python3-argparse/pspec.xml @@ -0,0 +1,39 @@ + + + python3-argparse + https://pypi.python.org/pypi/argparse + + Alihan Öztürk + alihan@pisilinux.org + + apache + app:console + Python command-line parsing library + The argparse module makes it easy to write user friendly command line interfaces. + https://pypi.python.org/packages/18/dd/e617cfc3f6210ae183374cd9f6a26b20514bbb5a792af97949c5aacddf0f/argparse-1.4.0.tar.gz + + python3-devel + python3-setuptools + + + + python3-argparse + Python command-line parsing library + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2016-06-06 + 1.4.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + diff --git a/programming/language/python3/python3-colorama/actions.py b/programming/language/python3/python3-colorama/actions.py new file mode 100644 index 0000000000..432ec3a4a0 --- /dev/null +++ b/programming/language/python3/python3-colorama/actions.py @@ -0,0 +1,15 @@ +#!/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 pisitools + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") + + pisitools.dodoc("CHANGELOG*", "LICENSE*", "MANIFEST*", "PKG-INFO", "README*") \ No newline at end of file diff --git a/programming/language/python3/python3-colorama/pspec.xml b/programming/language/python3/python3-colorama/pspec.xml new file mode 100644 index 0000000000..e46bc5b720 --- /dev/null +++ b/programming/language/python3/python3-colorama/pspec.xml @@ -0,0 +1,38 @@ + + + python3-colorama + https://pypi.python.org/pypi/colorama + + Alihan Öztürk + alihan@pisilinux.org + + BSD + app:console + Cross-platform colored terminal text. + Python API for cross-platform colored terminal text. + https://pypi.python.org/packages/f0/d0/21c6449df0ca9da74859edc40208b3a57df9aca7323118c913e58d442030/colorama-0.3.7.tar.gz + + python3-devel + + + + python3-colorama + Cross-platform colored terminal text. + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2016-06-06 + 0.3.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + diff --git a/programming/language/python3/python3-docker-py/actions.py b/programming/language/python3/python3-docker-py/actions.py new file mode 100644 index 0000000000..6d692d5cee --- /dev/null +++ b/programming/language/python3/python3-docker-py/actions.py @@ -0,0 +1,15 @@ +#!/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 pisitools + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") + + pisitools.dodoc("CONTRIBUTING*", "LICENSE", "MAINTAINERS", "MANIFEST*", "README*") \ No newline at end of file diff --git a/programming/language/python3/python3-docker-py/pspec.xml b/programming/language/python3/python3-docker-py/pspec.xml new file mode 100644 index 0000000000..229b67ecd2 --- /dev/null +++ b/programming/language/python3/python3-docker-py/pspec.xml @@ -0,0 +1,45 @@ + + + python3-docker-py + https://github.com/dotcloud/docker-py + + Alihan Öztürk + alihan@pisilinux.org + + apache + app:console + Python client for Docker. + A Python library for the Docker Remote API. It does everything the docker command does, but from within Python – run containers, manage them, pull/push images, etc. + https://github.com/docker/docker-py/archive/1.8.1.tar.gz + + python3-devel + python3-setuptools + python3-websocket-client + python3-six + python3-requests + + + + python3-docker-py + Python client for Docker. + + python3 + python3-websocket-client + python3-six + python3-requests + + + /usr/lib + /usr/share/doc + + + + + 2016-06-06 + 1.8.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + diff --git a/programming/language/python3/python3-nose/actions.py b/programming/language/python3/python3-nose/actions.py new file mode 100644 index 0000000000..40826c54f4 --- /dev/null +++ b/programming/language/python3/python3-nose/actions.py @@ -0,0 +1,33 @@ +#!/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 shelltools +from pisi.actionsapi import get + +WorkDir = "nose-%s" % get.srcVERSION() + +examples = "%s/%s/" % (get.docDIR(), get.srcNAME()) + +shelltools.export("PYTHONDONTWRITEBYTECODE", "1") + +def setup(): + shelltools.system("sed -i -e 's:man/man1:share/man/man1:g' setup.py") + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") + + pisitools.rename("/usr/bin/nosetests", "nosetests3") + pisitools.removeDir("/usr/share/man") + + pisitools.dohtml("doc/*") + + shelltools.chmod("examples/*", 0644) + pisitools.insinto(examples, "examples/*") diff --git a/programming/language/python3/python3-nose/pspec.xml b/programming/language/python3/python3-nose/pspec.xml new file mode 100644 index 0000000000..2b0f16d8c4 --- /dev/null +++ b/programming/language/python3/python3-nose/pspec.xml @@ -0,0 +1,45 @@ + + + + + + python3-nose + http://somethingaboutorange.com/mrl/projects/nose/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + A unittest extension offering automatic test suite discovery and easy test authoring + python-nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to too much magic. + https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz + + python3-devel + + + + + python3-nose + + python3 + + + /usr/lib + /usr/bin + /usr/share/man + /usr/share/doc + + + + + + 2015-08-04 + 1.3.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + diff --git a/programming/language/python3/python3-nose/translations.xml b/programming/language/python3/python3-nose/translations.xml new file mode 100644 index 0000000000..79c6cc2f02 --- /dev/null +++ b/programming/language/python3/python3-nose/translations.xml @@ -0,0 +1,8 @@ + + + + python-nose + Python için unittest genişlemesi + python-nose alternatif test tanıtma ve keşif kitaplığı. + + diff --git a/programming/language/python3/python3-psutil/actions.py b/programming/language/python3/python3-psutil/actions.py new file mode 100644 index 0000000000..2279ea9b58 --- /dev/null +++ b/programming/language/python3/python3-psutil/actions.py @@ -0,0 +1,16 @@ +#!/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 pisitools + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") + + pisitools.dodoc("LICENSE", "README.rst", "INSTALL.rst") diff --git a/programming/language/python3/python3-psutil/pspec.xml b/programming/language/python3/python3-psutil/pspec.xml new file mode 100644 index 0000000000..238317d201 --- /dev/null +++ b/programming/language/python3/python3-psutil/pspec.xml @@ -0,0 +1,41 @@ + + + + + python3-psutil + https://github.com/giampaolo/psutil + + PisiLinux Community + admins@pisilinux.org + + BSD + library + A cross-platform process utilities module for Python + python3-psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by command line tools like ps, top, kill, lsof and netstat. + https://github.com/giampaolo/psutil/archive/release-4.0.0.tar.gz + + python3-devel + + + + + python3-psutil + + python3 + + + /usr/lib + /usr/share/doc + + + + + + 2016-06-06 + 4.0.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + diff --git a/programming/language/python3/python3-psutil/translations.xml b/programming/language/python3/python3-psutil/translations.xml new file mode 100644 index 0000000000..a497350e09 --- /dev/null +++ b/programming/language/python3/python3-psutil/translations.xml @@ -0,0 +1,8 @@ + + + + python3-psutil + Platform bağımsız, süreçler hakkında bilgi sağlayan bir Python modülü + python3-psutil, bütün çalışan süreçler ve sistem kullanımı (MİB - Merkezi İşlem Birim(CPU) ve hafıza gibi) hakkında bilgilere erişimek için arayüz sunan bir Python modülüdür. ps, top, kill, lsof, netstat gibi bir çok komut satırı araçlarının sunduğu işlevselliği sağlamaktadır. + + diff --git a/programming/language/python3/python3-requests/actions.py b/programming/language/python3/python3-requests/actions.py new file mode 100644 index 0000000000..ac9287a42f --- /dev/null +++ b/programming/language/python3/python3-requests/actions.py @@ -0,0 +1,14 @@ +#!/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 + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") diff --git a/programming/language/python3/python3-requests/pspec.xml b/programming/language/python3/python3-requests/pspec.xml new file mode 100644 index 0000000000..d447b574bb --- /dev/null +++ b/programming/language/python3/python3-requests/pspec.xml @@ -0,0 +1,40 @@ + + + + + python3-requests + http://www.python-requests.org/ + + Ergün Salman + ergunsalman@hotmail.com + + Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. + Python’s standard urllib2 module provides most of the HTTP capabilities you need + MIT + https://pypi.python.org/packages/source/r/requests/requests-2.9.1.tar.gz + + python3-devel + + + + + python3-requests + + python3 + + + /usr/lib + /usr/share/doc + + + + + + 2016-06-06 + 2.9.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + diff --git a/programming/language/python3/python3-six/actions.py b/programming/language/python3/python3-six/actions.py new file mode 100644 index 0000000000..ec762969dd --- /dev/null +++ b/programming/language/python3/python3-six/actions.py @@ -0,0 +1,17 @@ +#!/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 pisitools + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") + + pisitools.removeDir("/usr/lib/*/site-packages/six-1.9.0*egg-info*") + pisitools.remove("/usr/lib/*/site-packages/*egg-info*") diff --git a/programming/language/python3/python3-six/pspec.xml b/programming/language/python3/python3-six/pspec.xml new file mode 100644 index 0000000000..66a4dee297 --- /dev/null +++ b/programming/language/python3/python3-six/pspec.xml @@ -0,0 +1,48 @@ + + + + + python3-six + http://pypi.python.org/pypi/six/ + + Alihan Öztürk + alihan@pisilinux.org + + MIT + app:console + Python 2 and 3 compatibility utilities. + python-six provides simple utilities for wrapping over differences between Python 2 and Python 3. + http://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz + + python3-devel + + + + + python3-six + + python3 + + + /usr/lib + /usr/share/doc + + + + + + 2016-06-06 + 1.9.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-05-08 + 1.9.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + diff --git a/programming/language/python3/python3-six/translations.xml b/programming/language/python3/python3-six/translations.xml new file mode 100644 index 0000000000..d5f799db54 --- /dev/null +++ b/programming/language/python3/python3-six/translations.xml @@ -0,0 +1,7 @@ + + + python3-six + Python2 ve python3 uyumluluk programı. + python3-six, python2 ile python3 arasındaki farklılıkların aşılmasına yardımcı olan basit araçlar sağlar. + + diff --git a/programming/language/python3/python3-websocket-client/actions.py b/programming/language/python3/python3-websocket-client/actions.py new file mode 100644 index 0000000000..859d2fde12 --- /dev/null +++ b/programming/language/python3/python3-websocket-client/actions.py @@ -0,0 +1,15 @@ +#!/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 pisitools + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") + + pisitools.dodoc("MANIFEST*", "ChangeLog", "README*", "LICENSE") \ No newline at end of file diff --git a/programming/language/python3/python3-websocket-client/pspec.xml b/programming/language/python3/python3-websocket-client/pspec.xml new file mode 100644 index 0000000000..699b21cff9 --- /dev/null +++ b/programming/language/python3/python3-websocket-client/pspec.xml @@ -0,0 +1,40 @@ + + + python3-websocket-client + https://github.com/liris/websocket-client + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + WebSocket client library for Python + websocket-client module is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions. + https://github.com/liris/websocket-client/archive/v0.37.0.tar.gz + + python3-devel + python3-setuptools + + + + python3-websocket-client + WebSocket client library for Python + + python3 + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2016-06-06 + 0.37.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + +