diff --git a/pisi-index.xml b/pisi-index.xml index 6a67dd85aa..d33ca96d19 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -145968,7 +145968,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for librsvg librsvg için geliştirme dosyaları - librsvg + librsvg gdk-pixbuf-devel cairo-devel glib2-devel @@ -145980,6 +145980,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2020-09-24 + 2.46.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2018-07-30 2.46.4 @@ -204526,6 +204533,55 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + python3-pylint + https://pylint.org/ + + Blue Devil + bluedevil@sctzine.com + + GPL + library + programming.language.python3 + A python code static checker tools. + Python kaynak kodlarını hatalara karşı tarayan bir araç. + python3-pylint is a Python static code analysis tool which looks for programming errors, helps enforcing a coding standard, sniffs for code smells and offers simple refactoring suggestions. + python3-pylint, bir Python modülünün standartlara uyup uymadığını, hatalar içerip içermediğini analiz eden bir uygulamadır. + https://github.com/PyCQA/pylint/archive/pylint-2.6.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pylint/pspec.xml + + + python3-pylint + A Python module for decorators, wrappers and monkey patching. + + python3 + python3-toml + python3-isort + python3-mccabe + python3-astroid + python3-setuptools + + + /usr/share/doc/ + /usr/bin + /usr/lib/python3* + + + + + 2020-09-24 + 2.6.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + python3-sphinxcontrib-devhelp @@ -209311,6 +209367,59 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + python3-astroid + https://github.com/PyCQA/astroid + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Useful miscellaneous modules used by Logilab projects. + Logilab projeleri tarafından kullanılan kullanışlı çeşitli modüller. + python3-astrid provides a common base representation of python source code. It is currently the library powering pylint’s capabilities. + python3-astroid, Logilab projeleri tarafından kullanılan kullanışlı çeşitli modüller içerir. Pylınt yeteneklerini artırır. + https://github.com/PyCQA/astroid/archive/astroid-2.4.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-astroid/pspec.xml + + + python3-astroid + Useful miscellaneous modules used by Logilab projects. + + python3 + python3-six + python3-wrapt + python3-setuptools + python3-lazy-object-proxy + + + /usr/share/doc/ + /usr/lib/python3* + + + python3-logilab-astng + + + python3-logilab-astng + + + + + 2020-09-24 + 2.4.2 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + python3-urllib3 @@ -220416,9 +220525,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.A tool for generating C bindings to Rust code Rust koduna C bağlamaları oluşturmak için bir araç Rust koduna C bağlamaları oluşturmak için bir araç - https://github.com/eqrion/cbindgen/archive/v0.14.4.tar.gz + https://github.com/eqrion/cbindgen/archive/v0.14.6.tar.gz - rust + rust llvm programming/library/cbindgen/pspec.xml @@ -220431,6 +220540,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2020-09-24 + 0.14.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-09-02 0.14.4 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index d175607eb8..a8af4a7281 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -2114e589dd5fd1a4b52d8342d3ad716bbd44b9d5 \ No newline at end of file +c9e9e4bb34a662bc8ed84d22e95b20e6b85ac1d1 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index b2ab10a821..151bcb0ef1 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 0a11ff4f64..30c6373a60 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -968efa62e2eeacf3f13b4f3aba8a447f8ba6a4c9 \ No newline at end of file +82fedfc203dc905c19e450e72bdbb72ad0854fa1 \ No newline at end of file diff --git a/programming/language/python3/python3-astroid/actions.py b/programming/language/python3/python3-astroid/actions.py new file mode 100644 index 0000000000..5188bd7dcc --- /dev/null +++ b/programming/language/python3/python3-astroid/actions.py @@ -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 pisitools +from pisi.actionsapi import pythonmodules + +def setup(): + pisitools.dosed("astroid/__pkginfo__.py", "six~=[0-9.*]*", "six") + pisitools.dosed("astroid/__pkginfo__.py", "wrapt~=[0-9.*]*", "wrapt") + pisitools.dosed("astroid/__pkginfo__.py", "lazy_object_proxy==[0-9.*]*", "lazy_object_proxy") + +def build(): + pythonmodules.compile(pyVer="3") + + +def install(): + pythonmodules.install(pyVer="3") diff --git a/programming/language/python3/python3-astroid/pspec.xml b/programming/language/python3/python3-astroid/pspec.xml new file mode 100644 index 0000000000..0aba4fe35b --- /dev/null +++ b/programming/language/python3/python3-astroid/pspec.xml @@ -0,0 +1,54 @@ + + + + + python3-astroid + https://github.com/PyCQA/astroid + + Blue Devil + bluedevil@sctzine.com + + programming.language.python3 + MIT + library + Useful miscellaneous modules used by Logilab projects. + python3-astrid provides a common base representation of python source code. It is currently the library powering pylint’s capabilities. + https://github.com/PyCQA/astroid/archive/astroid-2.4.2.tar.gz + + python3-devel + python3-setuptools + + + + + python3-astroid + Useful miscellaneous modules used by Logilab projects. + + python3 + python3-six + python3-wrapt + python3-setuptools + python3-lazy-object-proxy + + + /usr/share/doc/ + /usr/lib/python3* + + + python3-logilab-astng + + + python3-logilab-astng + + + + + + 2020-09-24 + 2.4.2 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + \ No newline at end of file diff --git a/programming/language/python3/python3-astroid/translations.xml b/programming/language/python3/python3-astroid/translations.xml new file mode 100755 index 0000000000..bbccb983e6 --- /dev/null +++ b/programming/language/python3/python3-astroid/translations.xml @@ -0,0 +1,8 @@ + + + + python3-astroid + Logilab projeleri tarafından kullanılan kullanışlı çeşitli modüller. + python3-astroid, Logilab projeleri tarafından kullanılan kullanışlı çeşitli modüller içerir. Pylınt yeteneklerini artırır. + + \ No newline at end of file diff --git a/programming/language/python3/python3-pylint/actions.py b/programming/language/python3/python3-pylint/actions.py new file mode 100644 index 0000000000..3a393ce7c1 --- /dev/null +++ b/programming/language/python3/python3-pylint/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/licenses/gpl.txt + +from pisi.actionsapi import pythonmodules + + +def build(): + pythonmodules.compile(pyVer="3") + + +def install(): + pythonmodules.install(pyVer="3") diff --git a/programming/language/python3/python3-pylint/pspec.xml b/programming/language/python3/python3-pylint/pspec.xml new file mode 100644 index 0000000000..ae50169300 --- /dev/null +++ b/programming/language/python3/python3-pylint/pspec.xml @@ -0,0 +1,50 @@ + + + + + python3-pylint + https://pylint.org/ + + Blue Devil + bluedevil@sctzine.com + + programming.language.python3 + GPL + library + A python code static checker tools. + python3-pylint is a Python static code analysis tool which looks for programming errors, helps enforcing a coding standard, sniffs for code smells and offers simple refactoring suggestions. + https://github.com/PyCQA/pylint/archive/pylint-2.6.0.tar.gz + + python3-devel + python3-setuptools + + + + + python3-pylint + A Python module for decorators, wrappers and monkey patching. + + python3 + python3-toml + python3-isort + python3-mccabe + python3-astroid + python3-setuptools + + + /usr/share/doc/ + /usr/bin + /usr/lib/python3* + + + + + + 2020-09-24 + 2.6.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + \ No newline at end of file diff --git a/programming/language/python3/python3-pylint/translations.xml b/programming/language/python3/python3-pylint/translations.xml new file mode 100755 index 0000000000..8561740ddd --- /dev/null +++ b/programming/language/python3/python3-pylint/translations.xml @@ -0,0 +1,8 @@ + + + + python3-pylint + Python kaynak kodlarını hatalara karşı tarayan bir araç. + python3-pylint, bir Python modülünün standartlara uyup uymadığını, hatalar içerip içermediğini analiz eden bir uygulamadır. + + \ No newline at end of file