diff --git a/pisi-index.xml b/pisi-index.xml index 5a7c932fa6..a6baf480d9 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -9120,6 +9120,48 @@ + + + python-urllib3 + https://github.com/shazow/urllib3 + + PisiLinux Community + admins@pisilinux.org + + Python + library + programming.language.python + Yet another Python urllib + Yet another Python urllib + Yet another Python urllib + Yet another Python urllib + https://github.com/shazow/urllib3/archive/1.22.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-urllib3/pspec.xml + + + python-urllib3 + + python + + + /usr/lib + /usr/share/doc + + + + + 2018-05-22 + 1.22 + First release + PisiLinux Community + admins@pisilinux.org + + + python-pyblock @@ -9794,6 +9836,46 @@ + + + python-idna + https://github.com/kjd/idna + + PisiLinux Community + admins@pisilinux.org + + BSD + app + programming.language.python + Internationalized Domain Names in Applications (IDNA) + Internationalized Domain Names in Applications (IDNA) + https://github.com/kjd/idna/archive/v2.6.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-idna/pspec.xml + + + python-idna + + python + + + /usr/lib + /usr/share/doc + + + + + 2018-05-22 + 2.6 + First release + PisiLinux Community + admins@pisilinux.org + + + python-argparse @@ -10371,6 +10453,47 @@ + + + python-chardet + https://github.com/chardet/chardet + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app + programming.language.python + Chardet: The Universal Character Encoding Detector + Chardet: The Universal Character Encoding Detector + https://github.com/chardet/chardet/archive/3.0.4.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-chardet/pspec.xml + + + python-chardet + + python + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2018-05-22 + 3.0.4 + First release + PisiLinux Community + admins@pisilinux.org + + + python-backports-ssl-match-hostname diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 81fcf971cc..60c5b33d88 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -b8d7e58bf3f233f1c9958b3ae7b91dc850da1e7b \ No newline at end of file +705942012f4e63a39db56bf1edbf531dcd178e80 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index eedf6bbd40..f5a08b337c 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index 7ba78a67e3..1710a13cfc 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -f555b6253eb8469c6e18db22b82aa60e5b896234 \ No newline at end of file +63dd8b0bbe8da3942b8a147ac3ed01b135c0a7fa \ No newline at end of file diff --git a/programming/language/python/python-chardet/actions.py b/programming/language/python/python-chardet/actions.py new file mode 100755 index 0000000000..76679fe6ea --- /dev/null +++ b/programming/language/python/python-chardet/actions.py @@ -0,0 +1,17 @@ +#!/usr/bin/env 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() + +def install(): + pythonmodules.install() + + pisitools.rename("/usr/bin/chardetect", "chardetect-py2") + #pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "NEWS", "README") diff --git a/programming/language/python/python-chardet/pspec.xml b/programming/language/python/python-chardet/pspec.xml new file mode 100755 index 0000000000..54702df5f1 --- /dev/null +++ b/programming/language/python/python-chardet/pspec.xml @@ -0,0 +1,43 @@ + + + + + python-chardet + https://github.com/chardet/chardet + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app + Chardet: The Universal Character Encoding Detector + Chardet: The Universal Character Encoding Detector + https://github.com/chardet/chardet/archive/3.0.4.tar.gz + + python-devel + python-setuptools + + + + + python-chardet + + python + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + + 2018-05-22 + 3.0.4 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/programming/language/python/python-chardet/translations.xml b/programming/language/python/python-chardet/translations.xml new file mode 100755 index 0000000000..cb8c878ff0 --- /dev/null +++ b/programming/language/python/python-chardet/translations.xml @@ -0,0 +1,8 @@ + + + + python3-chardet + Chardet: The Universal Character Encoding Detector + Chardet: The Universal Character Encoding Detector + + diff --git a/programming/language/python/python-idna/actions.py b/programming/language/python/python-idna/actions.py new file mode 100755 index 0000000000..5f751c3242 --- /dev/null +++ b/programming/language/python/python-idna/actions.py @@ -0,0 +1,16 @@ +#!/usr/bin/env 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() + +def install(): + pythonmodules.install() + + #pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "NEWS", "README") diff --git a/programming/language/python/python-idna/pspec.xml b/programming/language/python/python-idna/pspec.xml new file mode 100755 index 0000000000..ed4bb00b0f --- /dev/null +++ b/programming/language/python/python-idna/pspec.xml @@ -0,0 +1,42 @@ + + + + + python-idna + https://github.com/kjd/idna + + PisiLinux Community + admins@pisilinux.org + + BSD + app + Internationalized Domain Names in Applications (IDNA) + Internationalized Domain Names in Applications (IDNA) + https://github.com/kjd/idna/archive/v2.6.tar.gz + + python-devel + python-setuptools + + + + + python-idna + + python + + + /usr/lib + /usr/share/doc + + + + + + 2018-05-22 + 2.6 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/programming/language/python/python-idna/translations.xml b/programming/language/python/python-idna/translations.xml new file mode 100755 index 0000000000..fc9b8e708b --- /dev/null +++ b/programming/language/python/python-idna/translations.xml @@ -0,0 +1,8 @@ + + + + python3-idna + Internationalized Domain Names in Applications (IDNA) + Internationalized Domain Names in Applications (IDNA) + + diff --git a/programming/language/python/python-urllib3/actions.py b/programming/language/python/python-urllib3/actions.py new file mode 100755 index 0000000000..5f751c3242 --- /dev/null +++ b/programming/language/python/python-urllib3/actions.py @@ -0,0 +1,16 @@ +#!/usr/bin/env 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() + +def install(): + pythonmodules.install() + + #pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "NEWS", "README") diff --git a/programming/language/python/python-urllib3/pspec.xml b/programming/language/python/python-urllib3/pspec.xml new file mode 100755 index 0000000000..6698ef26c5 --- /dev/null +++ b/programming/language/python/python-urllib3/pspec.xml @@ -0,0 +1,42 @@ + + + + + python-urllib3 + https://github.com/shazow/urllib3 + + PisiLinux Community + admins@pisilinux.org + + Python + library + Yet another Python urllib + Yet another Python urllib + https://github.com/shazow/urllib3/archive/1.22.tar.gz + + python-devel + python-setuptools + + + + + python-urllib3 + + python + + + /usr/lib + /usr/share/doc + + + + + + 2018-05-22 + 1.22 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/programming/language/python/python-urllib3/translations.xml b/programming/language/python/python-urllib3/translations.xml new file mode 100755 index 0000000000..1a99ddf3cc --- /dev/null +++ b/programming/language/python/python-urllib3/translations.xml @@ -0,0 +1,8 @@ + + + + python-urllib3 + Yet another Python urllib + Yet another Python urllib + +