All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH] python3-astor: 0.8 -> 0.8.1
@ 2020-01-13 17:09 Wang Mingyu
  2020-01-13 17:09 ` [meta-python][PATCH] python3-bandit: 1.5.1 -> 1.6.2 Wang Mingyu
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Wang Mingyu @ 2020-01-13 17:09 UTC (permalink / raw)
  To: openembedded-devel

f820f3ff7ad8818475b6e107e63aa9a54252d2a9.patch
Removed since it is included in 0.8.1.

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 ...f3ff7ad8818475b6e107e63aa9a54252d2a9.patch | 103 ------------------
 ...n3-astor_0.8.bb => python3-astor_0.8.1.bb} |   6 +-
 2 files changed, 2 insertions(+), 107 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python3-astor/f820f3ff7ad8818475b6e107e63aa9a54252d2a9.patch
 rename meta-python/recipes-devtools/python/{python3-astor_0.8.bb => python3-astor_0.8.1.bb} (62%)

diff --git a/meta-python/recipes-devtools/python/python3-astor/f820f3ff7ad8818475b6e107e63aa9a54252d2a9.patch b/meta-python/recipes-devtools/python/python3-astor/f820f3ff7ad8818475b6e107e63aa9a54252d2a9.patch
deleted file mode 100644
index 6d71be992..000000000
--- a/meta-python/recipes-devtools/python/python3-astor/f820f3ff7ad8818475b6e107e63aa9a54252d2a9.patch
+++ /dev/null
@@ -1,103 +0,0 @@
-From f820f3ff7ad8818475b6e107e63aa9a54252d2a9 Mon Sep 17 00:00:00 2001
-From: Jonathan Ringer <jonringer117@gmail.com>
-Date: Thu, 17 Oct 2019 16:54:16 -0700
-Subject: [PATCH] Fix packaging for setuptools>=41.4
-
-Upstream-Status: Pending
-
-Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
----
- MANIFEST.in       |  1 +
- astor/VERSION     |  1 +
- astor/__init__.py |  5 ++++-
- setup.cfg         |  3 ++-
- setup.py          | 16 +---------------
- 5 files changed, 9 insertions(+), 17 deletions(-)
- create mode 100644 astor/VERSION
-
-diff --git a/MANIFEST.in b/MANIFEST.in
-index b12a6fe..81e72d5 100644
---- a/MANIFEST.in
-+++ b/MANIFEST.in
-@@ -1,3 +1,4 @@
- include README.rst AUTHORS LICENSE CHANGES
- include setuputils.py
-+include astor/VERSION
- recursive-include tests *.py
-diff --git a/astor/VERSION b/astor/VERSION
-new file mode 100644
-index 0000000..a3df0a6
---- /dev/null
-+++ b/astor/VERSION
-@@ -0,0 +1 @@
-+0.8.0
-diff --git a/astor/__init__.py b/astor/__init__.py
-index 3b02983..8dfcdb1 100644
---- a/astor/__init__.py
-+++ b/astor/__init__.py
-@@ -9,6 +9,7 @@ Copyright 2013 (c) Berker Peksag
- 
- """
- 
-+import os
- import warnings
- 
- from .code_gen import SourceGenerator, to_source  # NOQA
-@@ -19,7 +20,9 @@ from .op_util import get_op_symbol, get_op_precedence  # NOQA
- from .op_util import symbol_data  # NOQA
- from .tree_walk import TreeWalk  # NOQA
- 
--__version__ = '0.8.0'
-+ROOT = os.path.dirname(__file__)
-+with open(os.path.join(ROOT, 'VERSION')) as version_file:
-+    __version__ = version_file.read().strip
- 
- parse_file = code_to_ast.parse_file
- 
-diff --git a/setup.cfg b/setup.cfg
-index 1baf6fc..a43634f 100644
---- a/setup.cfg
-+++ b/setup.cfg
-@@ -2,6 +2,7 @@
- name = astor
- description = Read/rewrite/write Python ASTs
- long_description = file:README.rst
-+version = file: astor/VERSION
- author = Patrick Maupin
- author_email = pmaupin@gmail.com
- platforms = Independent
-@@ -40,7 +41,7 @@ test_suite = nose.collector
- [options.packages.find]
- exclude = tests
- 
--[wheel]
-+[bdist_wheel]
- universal = 1
- 
- [build-system]
-diff --git a/setup.py b/setup.py
-index 4a111b5..6068493 100644
---- a/setup.py
-+++ b/setup.py
-@@ -1,17 +1,3 @@
--import os
--import sys
--
- from setuptools import setup
--from setuptools.config import read_configuration
--
--from setuputils import find_version
--
--
--def here(*paths):
--    return os.path.join(os.path.dirname(__file__), *paths)
--
--config = read_configuration(here('setup.cfg'))
--config['metadata']['version'] = find_version(here('astor', '__init__.py'))
--config['options'].update(config['metadata'])
- 
--setup(**config['options'])
-+setup()
--- 
-2.21.0
-
diff --git a/meta-python/recipes-devtools/python/python3-astor_0.8.bb b/meta-python/recipes-devtools/python/python3-astor_0.8.1.bb
similarity index 62%
rename from meta-python/recipes-devtools/python/python3-astor_0.8.bb
rename to meta-python/recipes-devtools/python/python3-astor_0.8.1.bb
index 17cc540f0..125a0236e 100644
--- a/meta-python/recipes-devtools/python/python3-astor_0.8.bb
+++ b/meta-python/recipes-devtools/python/python3-astor_0.8.1.bb
@@ -4,10 +4,8 @@ SECTION = "devel/python"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=561205fdabc3ec52cae2d30815b8ade7"
 
-SRC_URI = "git://github.com/berkerpeksag/astor.git \
-           file://f820f3ff7ad8818475b6e107e63aa9a54252d2a9.patch \
-          "
-SRCREV ?= "3a7607e31f0c17e747ded5cfe0b582d99f7caecf"
+SRC_URI = "git://github.com/berkerpeksag/astor.git "
+SRCREV ?= "c7553c79f9222e20783fe9bd8a553f932e918072"
 
 inherit setuptools3
 
-- 
2.17.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-python][PATCH] python3-bandit: 1.5.1 -> 1.6.2
  2020-01-13 17:09 [meta-python][PATCH] python3-astor: 0.8 -> 0.8.1 Wang Mingyu
@ 2020-01-13 17:09 ` Wang Mingyu
  2020-01-13 17:09 ` [meta-python][PATCH] python-asn1crypto: 1.2.0 -> 1.3.0 Wang Mingyu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Wang Mingyu @ 2020-01-13 17:09 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 .../{python3-bandit_1.5.1.bb => python3-bandit_1.6.2.bb}      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-bandit_1.5.1.bb => python3-bandit_1.6.2.bb} (74%)

diff --git a/meta-python/recipes-devtools/python/python3-bandit_1.5.1.bb b/meta-python/recipes-devtools/python/python3-bandit_1.6.2.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-bandit_1.5.1.bb
rename to meta-python/recipes-devtools/python/python3-bandit_1.6.2.bb
index 3002d5aa5..fa28861e9 100644
--- a/meta-python/recipes-devtools/python/python3-bandit_1.5.1.bb
+++ b/meta-python/recipes-devtools/python/python3-bandit_1.6.2.bb
@@ -2,8 +2,8 @@ SUMMARY = "Security oriented static analyser for python code."
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
 
-SRC_URI[md5sum] = "81ba3979ded1b421fa8d69e6faa06dcb"
-SRC_URI[sha256sum] = "9413facfe9de1e1bd291d525c784e1beb1a55c9916b51dae12979af63a69ba4c"
+SRC_URI[md5sum] = "c6a6772d7afa0af8828b3384e73b7085"
+SRC_URI[sha256sum] = "41e75315853507aa145d62a78a2a6c5e3240fe14ee7c601459d0df9418196065"
 
 DEPENDS = "python3-pbr-native python3-git python3-pbr python3-pyyaml python3-six python3-stevedore"
 
-- 
2.17.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-python][PATCH] python-asn1crypto: 1.2.0 -> 1.3.0
  2020-01-13 17:09 [meta-python][PATCH] python3-astor: 0.8 -> 0.8.1 Wang Mingyu
  2020-01-13 17:09 ` [meta-python][PATCH] python3-bandit: 1.5.1 -> 1.6.2 Wang Mingyu
@ 2020-01-13 17:09 ` Wang Mingyu
  2020-01-13 17:09 ` [meta-python][PATCH] python-bitarray: 1.2.0 -> 1.2.1 Wang Mingyu
  2020-01-13 17:09 ` [meta-python][PATCH] python-pyconnman: 0.1.0 -> 0.2.0 Wang Mingyu
  3 siblings, 0 replies; 5+ messages in thread
From: Wang Mingyu @ 2020-01-13 17:09 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 meta-python/recipes-devtools/python/python-asn1crypto.inc     | 4 ++--
 ...{python-asn1crypto_1.2.0.bb => python-asn1crypto_1.3.0.bb} | 0
 ...ython3-asn1crypto_1.2.0.bb => python3-asn1crypto_1.3.0.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-asn1crypto_1.2.0.bb => python-asn1crypto_1.3.0.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-asn1crypto_1.2.0.bb => python3-asn1crypto_1.3.0.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-asn1crypto.inc b/meta-python/recipes-devtools/python/python-asn1crypto.inc
index 9b8c1cb04..de6e1a55b 100644
--- a/meta-python/recipes-devtools/python/python-asn1crypto.inc
+++ b/meta-python/recipes-devtools/python/python-asn1crypto.inc
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=7439e38f5e04ff62fae436184786b7ca"
 
 PYPI_PACKAGE = "asn1crypto"
 
-SRC_URI[md5sum] = "fc3815cdd4812505e3ee297740c5f5d3"
-SRC_URI[sha256sum] = "87620880a477123e01177a1f73d0f327210b43a3cdbd714efcd2fa49a8d7b384"
+SRC_URI[md5sum] = "daad112940181917e3ff169b47b9bd9a"
+SRC_URI[sha256sum] = "5a215cb8dc12f892244e3a113fe05397ee23c5c4ca7a69cd6e69811755efc42d"
 
 inherit pypi
 
diff --git a/meta-python/recipes-devtools/python/python-asn1crypto_1.2.0.bb b/meta-python/recipes-devtools/python/python-asn1crypto_1.3.0.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-asn1crypto_1.2.0.bb
rename to meta-python/recipes-devtools/python/python-asn1crypto_1.3.0.bb
diff --git a/meta-python/recipes-devtools/python/python3-asn1crypto_1.2.0.bb b/meta-python/recipes-devtools/python/python3-asn1crypto_1.3.0.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-asn1crypto_1.2.0.bb
rename to meta-python/recipes-devtools/python/python3-asn1crypto_1.3.0.bb
-- 
2.17.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-python][PATCH] python-bitarray: 1.2.0 -> 1.2.1
  2020-01-13 17:09 [meta-python][PATCH] python3-astor: 0.8 -> 0.8.1 Wang Mingyu
  2020-01-13 17:09 ` [meta-python][PATCH] python3-bandit: 1.5.1 -> 1.6.2 Wang Mingyu
  2020-01-13 17:09 ` [meta-python][PATCH] python-asn1crypto: 1.2.0 -> 1.3.0 Wang Mingyu
@ 2020-01-13 17:09 ` Wang Mingyu
  2020-01-13 17:09 ` [meta-python][PATCH] python-pyconnman: 0.1.0 -> 0.2.0 Wang Mingyu
  3 siblings, 0 replies; 5+ messages in thread
From: Wang Mingyu @ 2020-01-13 17:09 UTC (permalink / raw)
  To: openembedded-devel

-PKG-INFO-Update: Version updated to 2019.

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 meta-python/recipes-devtools/python/python-bitarray.inc     | 6 +++---
 .../{python-bitarray_1.2.0.bb => python-bitarray_1.2.1.bb}  | 0
 .../{python3-bitarray_1.2.0.bb => python3-bitarray_1.2.1.b} | 0
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python-bitarray_1.2.0.bb => python-bitarray_1.2.1.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-bitarray_1.2.0.bb => python3-bitarray_1.2.1.b} (100%)

diff --git a/meta-python/recipes-devtools/python/python-bitarray.inc b/meta-python/recipes-devtools/python/python-bitarray.inc
index e156bd87e..32da348c4 100644
--- a/meta-python/recipes-devtools/python/python-bitarray.inc
+++ b/meta-python/recipes-devtools/python/python-bitarray.inc
@@ -1,10 +1,10 @@
 SUMMARY = "A high-level Python efficient arrays of booleans -- C extension"
 HOMEPAGE = "https://github.com/ilanschnell/bitarray"
 LICENSE = "PSF"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=f1c84020645d906bd6569f6bcf071eca"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=dc301a25ebe210dcc53b0a2d5a038eae"
 
-SRC_URI[md5sum] = "ce21bdfb6d074bd051abd601667b238e"
-SRC_URI[sha256sum] = "4f8706b651243c9faa981f075bcbdef2fab83e9b9bc9211ed2cb5849f9a68342"
+SRC_URI[md5sum] = "a46bf869f6adf34f5b0dc82b469793b7"
+SRC_URI[sha256sum] = "2ed675f460bb0d3d66fd8042a6f1f0d36cf213e52e72a745283ddb245da7b9cf"
 
 inherit pypi
 
diff --git a/meta-python/recipes-devtools/python/python-bitarray_1.2.0.bb b/meta-python/recipes-devtools/python/python-bitarray_1.2.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-bitarray_1.2.0.bb
rename to meta-python/recipes-devtools/python/python-bitarray_1.2.1.bb
diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.2.0.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.2.1.b
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-bitarray_1.2.0.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_1.2.1.b
-- 
2.17.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-python][PATCH] python-pyconnman: 0.1.0 -> 0.2.0
  2020-01-13 17:09 [meta-python][PATCH] python3-astor: 0.8 -> 0.8.1 Wang Mingyu
                   ` (2 preceding siblings ...)
  2020-01-13 17:09 ` [meta-python][PATCH] python-bitarray: 1.2.0 -> 1.2.1 Wang Mingyu
@ 2020-01-13 17:09 ` Wang Mingyu
  3 siblings, 0 replies; 5+ messages in thread
From: Wang Mingyu @ 2020-01-13 17:09 UTC (permalink / raw)
  To: openembedded-devel

0001-Import-local-modules-by-relative-path-for-python3-su.patch
Removed since it is included in 0.2.0.

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 .../python-pyconnman/python-pyconnman.inc     |  4 +-
 ...man_0.1.0.bb => python-pyconnman_0.2.0.bb} |  0
 ...ules-by-relative-path-for-python3-su.patch | 74 -------------------
 .../python3-pyconnman_0.1.0.bb                |  9 ---
 .../python3-pyconnman_0.2.0.bb                |  5 ++
 5 files changed, 7 insertions(+), 85 deletions(-)
 rename meta-python/recipes-connectivity/python-pyconnman/{python-pyconnman_0.1.0.bb => python-pyconnman_0.2.0.bb} (100%)
 delete mode 100644 meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman/0001-Import-local-modules-by-relative-path-for-python3-su.patch
 delete mode 100644 meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.1.0.bb
 create mode 100644 meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb

diff --git a/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc b/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc
index beb2baf83..8517079bf 100644
--- a/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc
+++ b/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc
@@ -4,8 +4,8 @@ LICENSE = "Apache-2.0"
 
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-SRC_URI[md5sum] = "b7fa82034b1c0e1fb1b518ffe3bb4fc0"
-SRC_URI[sha256sum] = "46c64c0692063fd0c9fb0216d49f7884bec9fa9760d8473db4b1e2f8162fab4a"
+SRC_URI[md5sum] = "d60bdffbd9c920f005fdc5e05a8b94cd"
+SRC_URI[sha256sum] = "d3a63a039c82b08a1171b003eafa62c6f128aa4eaa1ce7a55a9401b48f9ad926"
 
 inherit pypi
 
diff --git a/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman_0.1.0.bb b/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman_0.2.0.bb
similarity index 100%
rename from meta-python/recipes-connectivity/python-pyconnman/python-pyconnman_0.1.0.bb
rename to meta-python/recipes-connectivity/python-pyconnman/python-pyconnman_0.2.0.bb
diff --git a/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman/0001-Import-local-modules-by-relative-path-for-python3-su.patch b/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman/0001-Import-local-modules-by-relative-path-for-python3-su.patch
deleted file mode 100644
index 977b4aacd..000000000
--- a/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman/0001-Import-local-modules-by-relative-path-for-python3-su.patch
+++ /dev/null
@@ -1,74 +0,0 @@
-From 2e84adb042bfb742eb328220b97f79ddb28db44b Mon Sep 17 00:00:00 2001
-From: Haris Okanovic <haris.okanovic@ni.com>
-Date: Tue, 23 Oct 2018 21:39:56 +0000
-Subject: [PATCH] Import local modules by relative path for python3 support
-
-Upstream-Status: Submitted
----
- pyconnman/agent.py      | 2 +-
- pyconnman/interface.py  | 2 +-
- pyconnman/manager.py    | 2 +-
- pyconnman/service.py    | 2 +-
- pyconnman/technology.py | 2 +-
- 5 files changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/pyconnman/agent.py b/pyconnman/agent.py
-index f72de8d..453d783 100644
---- a/pyconnman/agent.py
-+++ b/pyconnman/agent.py
-@@ -1,5 +1,5 @@
- from __future__ import unicode_literals
--from exceptions import ConnCanceledException
-+from .exceptions import ConnCanceledException
- 
- import dbus.service
- 
-diff --git a/pyconnman/interface.py b/pyconnman/interface.py
-index 7d82e04..d540c81 100644
---- a/pyconnman/interface.py
-+++ b/pyconnman/interface.py
-@@ -4,7 +4,7 @@ import dbus
- import types
- import pprint
- 
--from exceptions import ConnSignalNameNotRecognisedException
-+from .exceptions import ConnSignalNameNotRecognisedException
- 
- 
- def translate_to_dbus_type(typeof, value):
-diff --git a/pyconnman/manager.py b/pyconnman/manager.py
-index f6f40a8..03244cc 100644
---- a/pyconnman/manager.py
-+++ b/pyconnman/manager.py
-@@ -1,6 +1,6 @@
- from __future__ import unicode_literals
- 
--from interface import ConnInterface
-+from .interface import ConnInterface
- 
- 
- class ConnManager(ConnInterface):
-diff --git a/pyconnman/service.py b/pyconnman/service.py
-index bbccced..c6b9241 100644
---- a/pyconnman/service.py
-+++ b/pyconnman/service.py
-@@ -1,6 +1,6 @@
- from __future__ import unicode_literals
- 
--from interface import ConnInterface
-+from .interface import ConnInterface
- 
- 
- class ConnService(ConnInterface):
-diff --git a/pyconnman/technology.py b/pyconnman/technology.py
-index 4777229..d25bad6 100644
---- a/pyconnman/technology.py
-+++ b/pyconnman/technology.py
-@@ -1,6 +1,6 @@
- from __future__ import unicode_literals
- 
--from interface import ConnInterface
-+from .interface import ConnInterface
- 
- 
- class ConnTechnology(ConnInterface):
diff --git a/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.1.0.bb b/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.1.0.bb
deleted file mode 100644
index 32bbe8b80..000000000
--- a/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.1.0.bb
+++ /dev/null
@@ -1,9 +0,0 @@
-require python-pyconnman.inc
-
-inherit setuptools3
-
-SRC_URI_append = " \
-    file://0001-Import-local-modules-by-relative-path-for-python3-su.patch \
-"
-
-RDEPENDS_${PN} += "python3-dbus python3-pprint"
diff --git a/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb b/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb
new file mode 100644
index 000000000..e0f3fdd75
--- /dev/null
+++ b/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb
@@ -0,0 +1,5 @@
+require python-pyconnman.inc
+
+inherit setuptools3
+
+RDEPENDS_${PN} += "python3-dbus python3-pprint"
-- 
2.17.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-01-13 13:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-13 17:09 [meta-python][PATCH] python3-astor: 0.8 -> 0.8.1 Wang Mingyu
2020-01-13 17:09 ` [meta-python][PATCH] python3-bandit: 1.5.1 -> 1.6.2 Wang Mingyu
2020-01-13 17:09 ` [meta-python][PATCH] python-asn1crypto: 1.2.0 -> 1.3.0 Wang Mingyu
2020-01-13 17:09 ` [meta-python][PATCH] python-bitarray: 1.2.0 -> 1.2.1 Wang Mingyu
2020-01-13 17:09 ` [meta-python][PATCH] python-pyconnman: 0.1.0 -> 0.2.0 Wang Mingyu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.