From d3e3e07c1297ed4f8e4f777c49524803a4b4b569 Mon Sep 17 00:00:00 2001 From: blue-devil Date: Tue, 19 May 2020 01:22:34 +0300 Subject: [PATCH 1/6] pip:ver bump --- programming/language/python/pip/actions.py | 8 ++++---- programming/language/python/pip/pspec.xml | 15 +++++++++++---- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/programming/language/python/pip/actions.py b/programming/language/python/pip/actions.py index 51b8108570..c714fe7350 100644 --- a/programming/language/python/pip/actions.py +++ b/programming/language/python/pip/actions.py @@ -4,14 +4,14 @@ # 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 shelltools -from pisi.actionsapi import pisitools from pisi.actionsapi import get +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import pythonmodules WorkDir="pip-%s" % get.srcVERSION() -def setup(): +def build(): pythonmodules.compile() def install(): diff --git a/programming/language/python/pip/pspec.xml b/programming/language/python/pip/pspec.xml index c5bd8d9656..218c5305d6 100644 --- a/programming/language/python/pip/pspec.xml +++ b/programming/language/python/pip/pspec.xml @@ -12,10 +12,10 @@ MIT The PyPA recommended tool for installing Python packages The PyPA recommended tool for installing Python packages - https://github.com/pypa/pip/archive/20.0.2.tar.gz + https://github.com/pypa/pip/archive/20.1.tar.gz - python-setuptools python-devel + python-setuptools @@ -26,13 +26,20 @@ python-setuptools - /usr/bin - /usr/share/doc /usr/lib + /usr/share/doc + /usr/bin + + 2020-05-16 + 20.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + 2020-02-23 20.0.2 From 881814b58e63faf1e9d89e1146af6deef991bec9 Mon Sep 17 00:00:00 2001 From: blue-devil Date: Tue, 19 May 2020 01:22:49 +0300 Subject: [PATCH 2/6] python-importlib_resources:ver bump --- .../python-importlib_resources/actions.py | 4 ++-- .../python-importlib_resources/pspec.xml | 21 ++++++++++++------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/programming/language/python/python-importlib_resources/actions.py b/programming/language/python/python-importlib_resources/actions.py index b58ddb4a17..039be24d23 100644 --- a/programming/language/python/python-importlib_resources/actions.py +++ b/programming/language/python/python-importlib_resources/actions.py @@ -4,10 +4,10 @@ # 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 shelltools +from pisi.actionsapi import pythonmodules -shelltools.export("SETUPTOOLS_SCM_PRETEND_VERSION","1.4.0") +shelltools.export("SETUPTOOLS_SCM_PRETEND_VERSION","1.5.0") def build(): pythonmodules.compile() diff --git a/programming/language/python/python-importlib_resources/pspec.xml b/programming/language/python/python-importlib_resources/pspec.xml index e89b942d54..fe04b412af 100644 --- a/programming/language/python/python-importlib_resources/pspec.xml +++ b/programming/language/python/python-importlib_resources/pspec.xml @@ -13,11 +13,11 @@ library Design and implementation for a planned importlib.resources The key goal of this module is to replace parts of pkg_resources with a solution in Python's stdlib that relies on well-defined APIs. This makes reading resources included in packages easier, with more stable and consistent semantics. - https://gitlab.com/python-devs/importlib_resources/-/archive/v1.4.0/importlib_resources-v1.4.0.tar.gz + https://gitlab.com/python-devs/importlib_resources/-/archive/v1.5.0/importlib_resources-v1.5.0.tar.gz - python-setuptools-scm - python-setuptools python-devel + python-setuptools + python-setuptools-scm @@ -25,18 +25,25 @@ python-importlib_resources Design and implementation for a planned importlib.resources - python-importlib_metadata - python-singledispatch - python-contextlib2 python-pathlib2 + python-contextlib2 + python-singledispatch + python-importlib_metadata - /usr/share/doc/python-importlib_resources /usr/lib/python2* + /usr/share/doc/python-importlib_resources + + 2020-05-18 + 1.5.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + 2020-03-27 1.4.0 From b7e560ed85eaff14e1c09c8e7c9b11974c04ba59 Mon Sep 17 00:00:00 2001 From: blue-devil Date: Tue, 19 May 2020 01:23:10 +0300 Subject: [PATCH 3/6] python-pygobject3:ver bump --- .../python/python-pygobject3/actions.py | 7 ++-- .../python/python-pygobject3/pspec.xml | 39 +++++++++++-------- 2 files changed, 26 insertions(+), 20 deletions(-) diff --git a/programming/language/python/python-pygobject3/actions.py b/programming/language/python/python-pygobject3/actions.py index fc5dd3f953..43c2d75f7f 100755 --- a/programming/language/python/python-pygobject3/actions.py +++ b/programming/language/python/python-pygobject3/actions.py @@ -4,16 +4,15 @@ # Licensed under the GNU General Public License, version 3. # See the file http://www.gnu.org/licenses/gpl.txt -from pisi.actionsapi import shelltools +from pisi.actionsapi import get from pisi.actionsapi import autotools from pisi.actionsapi import pisitools -from pisi.actionsapi import get +from pisi.actionsapi import shelltools def setup(): shelltools.makedirs("build") shelltools.cd("build") - shelltools.system("meson .. --prefix=/usr -Dpython=python2.7") - + shelltools.system("meson .. --prefix=/usr -Dpython=python2.7") def build(): shelltools.cd("build") diff --git a/programming/language/python/python-pygobject3/pspec.xml b/programming/language/python/python-pygobject3/pspec.xml index 23b12c8aac..f5b8d9e28b 100755 --- a/programming/language/python/python-pygobject3/pspec.xml +++ b/programming/language/python/python-pygobject3/pspec.xml @@ -13,14 +13,14 @@ library Python Bindings for GLib/GObject/GIO/GTK+ pygobject is GLib's GObject library bindings for Python3. - http://ftp.acc.umu.se/pub/GNOME/sources/pygobject/3.36/pygobject-3.36.0.tar.xz + http://ftp.acc.umu.se/pub/GNOME/sources/pygobject/3.36/pygobject-3.36.1.tar.xz - gobject-introspection-devel - python-cairo-devel + meson + glib2-devel libffi-devel python-devel - glib2-devel - meson + python-cairo-devel + gobject-introspection-devel @@ -28,17 +28,17 @@ python-pygobject3 Python Bindings for GLib/GObject/GIO/GTK+ - gobject-introspection - python-cairo - libffi - cairo glib2 + cairo + libffi + python-cairo + gobject-introspection - /usr/lib/libpyglib-gi-2.0-python2.7.so* - /usr/lib/python2.7 - /usr/share/pygobject /usr/share/doc + /usr/share/pygobject + /usr/lib/python2.7 + /usr/lib/libpyglib-gi-2.0-python2.7.so* @@ -46,18 +46,25 @@ python-pygobject3-devel Development files for python3-pygobject3 - python-pygobject3 - gobject-introspection-devel - libffi-devel glib2-devel + libffi-devel + gobject-introspection-devel + python-pygobject3 - /usr/lib/pkgconfig /usr/include + /usr/lib/pkgconfig + + 2020-05-18 + 3.36.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + 2020-03-11 3.36.0 From e14f0522e539785e1b62503dd5fc4d106ad332d8 Mon Sep 17 00:00:00 2001 From: blue-devil Date: Tue, 19 May 2020 01:23:22 +0300 Subject: [PATCH 4/6] python-pyzmq:ver bump --- .../language/python/python-pyzmq/actions.py | 6 +++--- .../language/python/python-pyzmq/pspec.xml | 16 ++++++++++++---- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/programming/language/python/python-pyzmq/actions.py b/programming/language/python/python-pyzmq/actions.py index 67d7a424f3..c419c92bca 100644 --- a/programming/language/python/python-pyzmq/actions.py +++ b/programming/language/python/python-pyzmq/actions.py @@ -4,10 +4,10 @@ # 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 shelltools -from pisi.actionsapi import pisitools from pisi.actionsapi import get +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import pythonmodules def build(): # suppress compiler warnings diff --git a/programming/language/python/python-pyzmq/pspec.xml b/programming/language/python/python-pyzmq/pspec.xml index b2431ca0a2..a351abd444 100644 --- a/programming/language/python/python-pyzmq/pspec.xml +++ b/programming/language/python/python-pyzmq/pspec.xml @@ -13,12 +13,12 @@ library PyZMQ: Python bindings for zeromq This package contains Python bindings for ØMQ. ØMQ is a lightweight and fast messaging implementation. - https://github.com/zeromq/pyzmq/archive/v19.0.0.tar.gz + https://github.com/zeromq/pyzmq/archive/v19.0.1.tar.gz - python-setuptools - zeromq-devel - python-devel cython + python-devel + zeromq-devel + python-setuptools @@ -26,6 +26,7 @@ python-pyzmq PyZMQ: Python bindings for zeromq + python zeromq @@ -35,6 +36,13 @@ + + 2020-05-18 + 19.0.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + 2020-03-04 19.0.0 From e5971fbab0238cf9b8ea489768638257ac6f5025 Mon Sep 17 00:00:00 2001 From: blue-devil Date: Tue, 19 May 2020 01:23:39 +0300 Subject: [PATCH 5/6] python-sphinxcontrib-websupport:ver bump --- .../python-sphinxcontrib-websupport/pspec.xml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/programming/language/python/python-sphinxcontrib-websupport/pspec.xml b/programming/language/python/python-sphinxcontrib-websupport/pspec.xml index 580f3f9589..0a7a4fef54 100644 --- a/programming/language/python/python-sphinxcontrib-websupport/pspec.xml +++ b/programming/language/python/python-sphinxcontrib-websupport/pspec.xml @@ -13,10 +13,10 @@ library Sphinx API for Web Apps sphinxcontrib-websupport provides a Python API to easily integrate Sphinx documentation into your Web application. - https://pypi.org/packages/source/s/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.1.tar.gz + https://pypi.org/packages/source/s/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.2.tar.gz - python-setuptools python-devel + python-setuptools @@ -24,18 +24,25 @@ python-sphinxcontrib-websupport sphinxcontrib-websupport module for python - python-setuptools - python-docutils python-Jinja2 + python-docutils + python-setuptools - /usr/share/doc/python-sphinxcontrib-websupport /usr/lib/python2* + /usr/share/doc/python-sphinxcontrib-websupport + + 2020-05-18 + 1.2.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + 2020-03-27 1.2.1 From 2deb9c34b5a505c93574a33098e79a5766819465 Mon Sep 17 00:00:00 2001 From: blue-devil Date: Tue, 19 May 2020 01:23:52 +0300 Subject: [PATCH 6/6] python-tqdm:ver bump --- .../language/python/python-tqdm/actions.py | 2 +- programming/language/python/python-tqdm/pspec.xml | 15 +++++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/programming/language/python/python-tqdm/actions.py b/programming/language/python/python-tqdm/actions.py index fa3a859bc6..86e612a333 100644 --- a/programming/language/python/python-tqdm/actions.py +++ b/programming/language/python/python-tqdm/actions.py @@ -4,8 +4,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 pythonmodules def build(): pythonmodules.compile() diff --git a/programming/language/python/python-tqdm/pspec.xml b/programming/language/python/python-tqdm/pspec.xml index dcaaad0a7c..9af856c933 100644 --- a/programming/language/python/python-tqdm/pspec.xml +++ b/programming/language/python/python-tqdm/pspec.xml @@ -13,10 +13,10 @@ library A Fast, Extensible Progress Bar for Python and CLI. python-tqdm provides a fast, extensible progress bar for python and commandline. Instantly make your loops show a smart progress meter - just wrap any iterable with tqdm(iterable), and you're done! - https://github.com/tqdm/tqdm/archive/v4.45.0.tar.gz + https://github.com/tqdm/tqdm/archive/v4.46.0.tar.gz - python-setuptools python-devel + python-setuptools @@ -27,13 +27,20 @@ python-setuptools - /usr/share/doc/python-tqdm - /usr/bin/tqdm-py2 /usr/lib/python2* + /usr/bin/tqdm-py2 + /usr/share/doc/python-tqdm + + 2020-05-18 + 4.46.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + 2020-04-08 4.45.0