All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4
@ 2018-03-21  3:36 Huang Qiyu
  2018-03-21  3:36 ` [meta-networking][PATCH] strongswan: 5.5.3 -> 5.6.2 Huang Qiyu
                   ` (10 more replies)
  0 siblings, 11 replies; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

Upgrade quagga from 1.2.2 to 1.2.4.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 meta-networking/recipes-protocols/quagga/quagga_1.2.2.bb | 4 ----
 meta-networking/recipes-protocols/quagga/quagga_1.2.4.bb | 4 ++++
 2 files changed, 4 insertions(+), 4 deletions(-)
 delete mode 100644 meta-networking/recipes-protocols/quagga/quagga_1.2.2.bb
 create mode 100644 meta-networking/recipes-protocols/quagga/quagga_1.2.4.bb

diff --git a/meta-networking/recipes-protocols/quagga/quagga_1.2.2.bb b/meta-networking/recipes-protocols/quagga/quagga_1.2.2.bb
deleted file mode 100644
index 653f46b..0000000
--- a/meta-networking/recipes-protocols/quagga/quagga_1.2.2.bb
+++ /dev/null
@@ -1,4 +0,0 @@
-require quagga.inc
-
-SRC_URI[md5sum] = "e84be2938c26c0c872792090f1a6a866"
-SRC_URI[sha256sum] = "522e22f2beee64e3f0c2cde3d0155f3b8103f4f6fc8abef92cb40bc3a4cc2931"
diff --git a/meta-networking/recipes-protocols/quagga/quagga_1.2.4.bb b/meta-networking/recipes-protocols/quagga/quagga_1.2.4.bb
new file mode 100644
index 0000000..a7697a1
--- /dev/null
+++ b/meta-networking/recipes-protocols/quagga/quagga_1.2.4.bb
@@ -0,0 +1,4 @@
+require quagga.inc
+
+SRC_URI[md5sum] = "eced21b054d71c9e1b7c6ac43286a166"
+SRC_URI[sha256sum] = "e364c082c3309910e1eb7b068bf39ee298e2f2f3f31a6431a5c115193bd653d3"
-- 
2.7.4





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

* [meta-networking][PATCH] strongswan: 5.5.3 -> 5.6.2
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-21  3:36 ` [meta-oe][PATCH] python-pygobject: 3.22.0 -> 3.28.0 Huang Qiyu
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

1.Upgrade strongswan from 5.5.3 to 5.6.2.
2.Modify fix-funtion-parameter.patch, since the data has been changed.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 .../recipes-support/strongswan/files/fix-funtion-parameter.patch    | 6 +++---
 .../strongswan/{strongswan_5.5.3.bb => strongswan_5.6.2.bb}         | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)
 rename meta-networking/recipes-support/strongswan/{strongswan_5.5.3.bb => strongswan_5.6.2.bb} (97%)

diff --git a/meta-networking/recipes-support/strongswan/files/fix-funtion-parameter.patch b/meta-networking/recipes-support/strongswan/files/fix-funtion-parameter.patch
index da96983..846e0c6 100644
--- a/meta-networking/recipes-support/strongswan/files/fix-funtion-parameter.patch
+++ b/meta-networking/recipes-support/strongswan/files/fix-funtion-parameter.patch
@@ -50,7 +50,7 @@ index ff33824..bd21446 100644
   */
 -openssl_diffie_hellman_t *openssl_diffie_hellman_create(
 +openssl_diffie_hellman_t *openssl_diffie_hellman_create_custom(
- 							diffie_hellman_group_t group, chunk_t g, chunk_t p)
+											diffie_hellman_group_t group, ...)
  {
  	private_openssl_diffie_hellman_t *this;
 @@ -197,5 +197,11 @@ openssl_diffie_hellman_t *openssl_diffie_hellman_create(
@@ -70,12 +70,12 @@ index 53dc59c..eb69eaa 100644
 --- a/src/libstrongswan/plugins/openssl/openssl_diffie_hellman.h
 +++ b/src/libstrongswan/plugins/openssl/openssl_diffie_hellman.h
 @@ -44,8 +44,10 @@ struct openssl_diffie_hellman_t {
-  * @param p				custom prime, if MODP_CUSTOM
+  * @param ...			expects generator and prime as chunk_t if MODP_CUSTOM
   * @return				openssl_diffie_hellman_t object, NULL if not supported
   */
 -openssl_diffie_hellman_t *openssl_diffie_hellman_create(
 +openssl_diffie_hellman_t *openssl_diffie_hellman_create_custom(
- 							diffie_hellman_group_t group, chunk_t g, chunk_t p);
+											diffie_hellman_group_t group, ...);
 +openssl_diffie_hellman_t *openssl_diffie_hellman_create(
 +							diffie_hellman_group_t group);
  
diff --git a/meta-networking/recipes-support/strongswan/strongswan_5.5.3.bb b/meta-networking/recipes-support/strongswan/strongswan_5.6.2.bb
similarity index 97%
rename from meta-networking/recipes-support/strongswan/strongswan_5.5.3.bb
rename to meta-networking/recipes-support/strongswan/strongswan_5.6.2.bb
index 97ebcd8..f2fe1f1 100644
--- a/meta-networking/recipes-support/strongswan/strongswan_5.5.3.bb
+++ b/meta-networking/recipes-support/strongswan/strongswan_5.6.2.bb
@@ -12,8 +12,8 @@ SRC_URI = "http://download.strongswan.org/strongswan-${PV}.tar.bz2 \
            file://0001-memory.h-Include-stdint.h-for-uintptr_t.patch \
            "
 
-SRC_URI[md5sum] = "4afffe3c219bb2e04f09510905af836b"
-SRC_URI[sha256sum] = "c5ea54b199174708de11af9b8f4ecf28b5b0743d4bc0e380e741f25b28c0f8d4"
+SRC_URI[md5sum] = "46aa3aa18fbc4bd528f9a0345ce79913"
+SRC_URI[sha256sum] = "e0a60a30ebf3c534c223559e1686497a21ded709a5d605c5123c2f52bcc22e92"
 
 EXTRA_OECONF = " \
         --without-lib-prefix \
-- 
2.7.4





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

* [meta-oe][PATCH] python-pygobject: 3.22.0 -> 3.28.0
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
  2018-03-21  3:36 ` [meta-networking][PATCH] strongswan: 5.5.3 -> 5.6.2 Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-21  3:36 ` [meta-oe][PATCH] sessreg: 1.1.0 -> 1.1.1 Huang Qiyu
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

1.Upgrad python-pygobject from 3.22.0 to 3.28.0.
2.Modify 0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch, since the data has been changed.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 ...e.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch | 19 +++----------------
 ...pygobject_3.22.0.bb => python-pygobject_3.28.0.bb} |  4 ++--
 2 files changed, 5 insertions(+), 18 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-pygobject_3.22.0.bb => python-pygobject_3.28.0.bb} (87%)

diff --git a/meta-oe/recipes-devtools/python/python-pygobject/0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch b/meta-oe/recipes-devtools/python/python-pygobject/0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch
index a391f7e..9a11442 100644
--- a/meta-oe/recipes-devtools/python/python-pygobject/0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch
+++ b/meta-oe/recipes-devtools/python/python-pygobject/0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch
@@ -14,28 +14,15 @@ diff --git a/configure.ac b/configure.ac
 index 2c0cfbd..cfcb3bf 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -194,7 +194,7 @@ PKG_CHECK_MODULES(GI,
-     gobject-introspection-1.0 >= introspection_required_version
- )
+@@ -155,7 +155,7 @@ PKG_CHECK_MODULES(GI,
+ 
+ GOBJECT_INTROSPECTION_CHECK(introspection_required_version)
  
 -GI_DATADIR=$($PKG_CONFIG --variable=gidatadir gobject-introspection-1.0)
 +GI_DATADIR=$PKG_CONFIG_SYSROOT_DIR$($PKG_CONFIG --variable=gidatadir gobject-introspection-1.0)
  AC_SUBST(GI_DATADIR)
  
  if test "$enable_cairo" != no; then
-@@ -219,12 +219,6 @@ AC_ARG_WITH(common,
-     with_common=yes)
- AM_CONDITIONAL(WITH_COMMON, test "$with_common" = "yes")
- 
--INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
--INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
--
--AC_SUBST(INTROSPECTION_SCANNER)
--AC_SUBST(INTROSPECTION_COMPILER)
--
- # compiler warnings, errors, required cflags, and code coverage support
- GNOME_COMPILE_WARNINGS([maximum])
- AC_MSG_CHECKING(for Gnome code coverage support)
 -- 
 2.1.4
 
diff --git a/meta-oe/recipes-devtools/python/python-pygobject_3.22.0.bb b/meta-oe/recipes-devtools/python/python-pygobject_3.28.0.bb
similarity index 87%
rename from meta-oe/recipes-devtools/python/python-pygobject_3.22.0.bb
rename to meta-oe/recipes-devtools/python/python-pygobject_3.28.0.bb
index 7ddf4e5..ab65ba1 100644
--- a/meta-oe/recipes-devtools/python/python-pygobject_3.22.0.bb
+++ b/meta-oe/recipes-devtools/python/python-pygobject_3.28.0.bb
@@ -17,8 +17,8 @@ SRC_URI = " \
     file://0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch \
 "
 
-SRC_URI[md5sum] = "ed4117ed5d554d25fd7718807fbf819f"
-SRC_URI[sha256sum] = "08b29cfb08efc80f7a8630a2734dec65a99c1b59f1e5771c671d2e4ed8a5cbe7"
+SRC_URI[md5sum] = "b29d69edb63ae1f555afeb19f90b9996"
+SRC_URI[sha256sum] = "42b47b261b45aedfc77e02e3c90a01cd74d6f86c3273c1860a054d531d606e5a"
 
 S = "${WORKDIR}/${SRCNAME}-${PV}"
 
-- 
2.7.4





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

* [meta-oe][PATCH] sessreg: 1.1.0 -> 1.1.1
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
  2018-03-21  3:36 ` [meta-networking][PATCH] strongswan: 5.5.3 -> 5.6.2 Huang Qiyu
  2018-03-21  3:36 ` [meta-oe][PATCH] python-pygobject: 3.22.0 -> 3.28.0 Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-21  3:36 ` [meta-python][PATCH] python-cffi: 1.11.4 -> 1.11.5 Huang Qiyu
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

Upgrade sessreg from 1.1.0 to 1.1.1.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 .../recipes-graphics/xorg-app/{sessreg_1.1.0.bb => sessreg_1.1.1.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{sessreg_1.1.0.bb => sessreg_1.1.1.bb} (73%)

diff --git a/meta-oe/recipes-graphics/xorg-app/sessreg_1.1.0.bb b/meta-oe/recipes-graphics/xorg-app/sessreg_1.1.1.bb
similarity index 73%
rename from meta-oe/recipes-graphics/xorg-app/sessreg_1.1.0.bb
rename to meta-oe/recipes-graphics/xorg-app/sessreg_1.1.1.bb
index 3885d61..d2afa78 100644
--- a/meta-oe/recipes-graphics/xorg-app/sessreg_1.1.0.bb
+++ b/meta-oe/recipes-graphics/xorg-app/sessreg_1.1.1.bb
@@ -4,8 +4,8 @@ SUMMARY = "a simple program for managing utmp/wtmp entries"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d938a70c8280c265a1ccd2954365d185"
 SRC_URI += "file://0001-Makefile.am-Error-Fix.patch"
-SRC_URI[md5sum] = "e238c89dabc566e1835e1ecb61b605b9"
-SRC_URI[sha256sum] = "551177657835e0902b5eee7b19713035beaa1581bbd3c6506baa553e751e017c"
+SRC_URI[md5sum] = "e475167a892b589da23edf8edf8c942d"
+SRC_URI[sha256sum] = "78a76ae3f3f6a26547a34630d1b740f42344848b5fb6d7c9c7f7da255e35a6e1"
 
 CFLAGS_append_libc-musl = " -D_WTMPX_FILE=WTMP_FILE -D_PATH_WTMPX=_PATH_WTMP -D_UTMPX_FILE=UTMP_FILE -D_PATH_UTMPX=_PATH_UTMP "
 
-- 
2.7.4





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

* [meta-python][PATCH] python-cffi: 1.11.4 -> 1.11.5
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
                   ` (2 preceding siblings ...)
  2018-03-21  3:36 ` [meta-oe][PATCH] sessreg: 1.1.0 -> 1.1.1 Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-21  3:36 ` [meta-python][PATCH] python-cryptography: 2.1.4 -> 2.2 Huang Qiyu
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

Upgrade python-cffi from 1.11.4 to 1.11.5.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 meta-python/recipes-devtools/python/python-cffi.inc                   | 4 ++--
 .../python/{python-cffi_1.11.4.bb => python-cffi_1.11.5.bb}           | 0
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-cffi_1.11.4.bb => python-cffi_1.11.5.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-cffi.inc b/meta-python/recipes-devtools/python/python-cffi.inc
index 39ab19f..e6071ee 100644
--- a/meta-python/recipes-devtools/python/python-cffi.inc
+++ b/meta-python/recipes-devtools/python/python-cffi.inc
@@ -4,8 +4,8 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5677e2fdbf7cdda61d6dd2b57df547bf"
 DEPENDS += "libffi ${PYTHON_PN}-pycparser"
 
-SRC_URI[md5sum] = "8ef0f852498908b20bc508799901fe93"
-SRC_URI[sha256sum] = "df9083a992b17a28cd4251a3f5c879e0198bb26c9e808c4647e0a18739f1d11d"
+SRC_URI[md5sum] = "ac8492f4ad952360737413e82d661908"
+SRC_URI[sha256sum] = "e90f17980e6ab0f3c2f3730e56d1fe9bcba1891eeea58966e89d352492cc74f4"
 
 RDEPENDS_${PN}_class-target = " \
     ${PYTHON_PN}-ctypes \
diff --git a/meta-python/recipes-devtools/python/python-cffi_1.11.4.bb b/meta-python/recipes-devtools/python/python-cffi_1.11.5.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-cffi_1.11.4.bb
rename to meta-python/recipes-devtools/python/python-cffi_1.11.5.bb
-- 
2.7.4





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

* [meta-python][PATCH] python-cryptography: 2.1.4 -> 2.2
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
                   ` (3 preceding siblings ...)
  2018-03-21  3:36 ` [meta-python][PATCH] python-cffi: 1.11.4 -> 1.11.5 Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-21 14:47   ` akuster808
  2018-03-21  3:36 ` [meta-python][PATCH] python-cryptography-vectors: " Huang Qiyu
                   ` (5 subsequent siblings)
  10 siblings, 1 reply; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

1.Upgrade python-cryptography from 2.1.4 to 2.2.
2.Update the checksum of LIC_FILES_CHKSUM, but license remained the same.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 meta-python/recipes-devtools/python/python-cryptography.inc         | 6 +++---
 .../{python-cryptography_2.1.4.bb => python-cryptography_2.2.bb}    | 0
 2 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python-cryptography_2.1.4.bb => python-cryptography_2.2.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-cryptography.inc b/meta-python/recipes-devtools/python/python-cryptography.inc
index 4be7907..fcd5358 100644
--- a/meta-python/recipes-devtools/python/python-cryptography.inc
+++ b/meta-python/recipes-devtools/python/python-cryptography.inc
@@ -1,7 +1,7 @@
 SUMMARY = "Provides cryptographic recipes and primitives to python developers"
 HOMEPAGE = "https://cryptography.io/"
 LICENSE = "Apache-2.0 | BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=d5ede125ed08d4fd14ec44d334bdb388"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=097f805837700cfac572ac274cd38124"
 
 DEPENDS += " \
     ${PYTHON_PN}-cffi \
@@ -10,8 +10,8 @@ DEPENDS += " \
     ${PYTHON_PN}-six \
 "
 
-SRC_URI[md5sum] = "9f39d4d8f2b05f295fa0ff52475ec4f2"
-SRC_URI[sha256sum] = "e4d967371c5b6b2e67855066471d844c5d52d210c36c28d49a8507b96e2c5291"
+SRC_URI[md5sum] = "c49c1ee145a900313a216fa2c788208c"
+SRC_URI[sha256sum] = "f5a0279e362c37e2150a32fe35ec20226e9237b6c9927fce8d53ef8e49e64f48"
 
 RDEPENDS_${PN} += " \
     ${PYTHON_PN}-cffi \
diff --git a/meta-python/recipes-devtools/python/python-cryptography_2.1.4.bb b/meta-python/recipes-devtools/python/python-cryptography_2.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-cryptography_2.1.4.bb
rename to meta-python/recipes-devtools/python/python-cryptography_2.2.bb
-- 
2.7.4





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

* [meta-python][PATCH] python-cryptography-vectors: 2.1.4 -> 2.2
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
                   ` (4 preceding siblings ...)
  2018-03-21  3:36 ` [meta-python][PATCH] python-cryptography: 2.1.4 -> 2.2 Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-21 14:48   ` akuster808
  2018-03-21  3:36 ` [meta-python][PATCH] python-cython: 0.27.3 -> 0.28.1 Huang Qiyu
                   ` (4 subsequent siblings)
  10 siblings, 1 reply; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

Upgrade python-cryptography-vectors from 2.1.4 to 2.2.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 meta-python/recipes-devtools/python/python-cryptography-vectors.inc   | 4 ++--
 ...yptography-vectors_2.1.4.bb => python-cryptography-vectors_2.2.bb} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-cryptography-vectors_2.1.4.bb => python-cryptography-vectors_2.2.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-cryptography-vectors.inc b/meta-python/recipes-devtools/python/python-cryptography-vectors.inc
index 00bb87b..31461ec 100644
--- a/meta-python/recipes-devtools/python/python-cryptography-vectors.inc
+++ b/meta-python/recipes-devtools/python/python-cryptography-vectors.inc
@@ -8,8 +8,8 @@ DEPENDS += " \
     ${PYTHON_PN}-cryptography \
 "
 
-SRC_URI[md5sum] = "ef115b870cc8d8b9f0f4189b512bc170"
-SRC_URI[sha256sum] = "78c4b4f3f84853ea5d038e2f53d355229dd8119fe9cf949c3e497c85c760a5ca"
+SRC_URI[md5sum] = "303a08ff50a5590d0ba05252981417ee"
+SRC_URI[sha256sum] = "cf601c7d87ad6a938bcea29062375dce1d3e26dabd1db52bbc37eeaf4aac970d"
 
 PYPI_PACKAGE = "cryptography_vectors"
 
diff --git a/meta-python/recipes-devtools/python/python-cryptography-vectors_2.1.4.bb b/meta-python/recipes-devtools/python/python-cryptography-vectors_2.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-cryptography-vectors_2.1.4.bb
rename to meta-python/recipes-devtools/python/python-cryptography-vectors_2.2.bb
-- 
2.7.4





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

* [meta-python][PATCH] python-cython: 0.27.3 -> 0.28.1
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
                   ` (5 preceding siblings ...)
  2018-03-21  3:36 ` [meta-python][PATCH] python-cryptography-vectors: " Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-21 14:51   ` akuster808
  2018-03-21  3:36 ` [meta-python][PATCH] python-dbus: 1.2.4 -> 1.2.6 Huang Qiyu
                   ` (3 subsequent siblings)
  10 siblings, 1 reply; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

Upgrade python-cython from 0.27.3 to 0.28.1.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 meta-python/recipes-devtools/python/python-cython.inc                 | 4 ++--
 .../python/{python-cython_0.27.3.bb => python-cython_0.28.1.bb}       | 0
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-cython_0.27.3.bb => python-cython_0.28.1.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-cython.inc b/meta-python/recipes-devtools/python/python-cython.inc
index dee647e..5a69cd0 100644
--- a/meta-python/recipes-devtools/python/python-cython.inc
+++ b/meta-python/recipes-devtools/python/python-cython.inc
@@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
 PYPI_PACKAGE = "Cython"
 BBCLASSEXTEND = "native nativesdk"
 
-SRC_URI[md5sum] = "6149238287d662bd5d5e572482252493"
-SRC_URI[sha256sum] = "6a00512de1f2e3ce66ba35c5420babaef1fe2d9c43a8faab4080b0dbcc26bc64"
+SRC_URI[md5sum] = "c549effadb52d90bdcb1affc1e5dbb97"
+SRC_URI[sha256sum] = "152ee5f345012ca3bb7cc71da2d3736ee20f52cd8476e4d49e5e25c5a4102b12"
 
 inherit pypi
 
diff --git a/meta-python/recipes-devtools/python/python-cython_0.27.3.bb b/meta-python/recipes-devtools/python/python-cython_0.28.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-cython_0.27.3.bb
rename to meta-python/recipes-devtools/python/python-cython_0.28.1.bb
-- 
2.7.4





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

* [meta-python][PATCH] python-dbus: 1.2.4 -> 1.2.6
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
                   ` (6 preceding siblings ...)
  2018-03-21  3:36 ` [meta-python][PATCH] python-cython: 0.27.3 -> 0.28.1 Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-21  3:36 ` [meta-python][PATCH] python-msgpack: 0.5.5 -> 0.5.6 Huang Qiyu
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

1.Upgrade python-dbus from 1.2.4 ro 1.2.6.
2.Update the checksum of LIC_FILES_CHKSUM, since the following content is appended to COPYING.

	The dbus-gmain/ subdirectory is under a different license: see dbus-gmain/COPYING for details.

3.Add "file://dbus-gmain/COPYING;md5=05c3eacd50f69bb1d58afec460baad57" to LIC_FILES_CHKSUM, sice 
dbus-gmain/subdirectory is under lincese of AFL-2.1 or GPLv2.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 .../python/{python-dbus_1.2.4.bb => python-dbus_1.2.6.bb}        | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
 rename meta-python/recipes-devtools/python/{python-dbus_1.2.4.bb => python-dbus_1.2.6.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python-dbus_1.2.4.bb b/meta-python/recipes-devtools/python/python-dbus_1.2.6.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python-dbus_1.2.4.bb
rename to meta-python/recipes-devtools/python/python-dbus_1.2.6.bb
index 271b559..0f18ccc 100644
--- a/meta-python/recipes-devtools/python/python-dbus_1.2.4.bb
+++ b/meta-python/recipes-devtools/python/python-dbus_1.2.6.bb
@@ -1,15 +1,16 @@
 SUMMARY = "Python bindings for the DBus inter-process communication system"
 SECTION = "devel/python"
 HOMEPAGE = "http://www.freedesktop.org/Software/dbus"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://COPYING;md5=0b83047ce9e948b67c0facc5f233476a"
+LICENSE = "MIT & AFL-2.1 | GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b03240518994df6d8c974675675e5ca4 \
+		    file://dbus-gmain/COPYING;md5=05c3eacd50f69bb1d58afec460baad57 "
 DEPENDS = "expat dbus dbus-glib virtual/libintl python-pyrex-native"
 
 SRC_URI = "http://dbus.freedesktop.org/releases/dbus-python/dbus-python-${PV}.tar.gz \
 "
 
-SRC_URI[md5sum] = "7372a588c83a7232b4e08159bfd48fe5"
-SRC_URI[sha256sum] = "e2f1d6871f74fba23652e51d10873e54f71adab0525833c19bad9e99b1b2f9cc"
+SRC_URI[md5sum] = "1ce1ddf2582060f8f971652ea54cc17e"
+SRC_URI[sha256sum] = "32f29c17172cdb9cb61c68b1f1a71dfe7351506fc830869029c47449bd04faeb"
 S = "${WORKDIR}/dbus-python-${PV}"
 
 inherit distutils-base autotools pkgconfig
-- 
2.7.4





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

* [meta-python][PATCH] python-msgpack: 0.5.5 -> 0.5.6
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
                   ` (7 preceding siblings ...)
  2018-03-21  3:36 ` [meta-python][PATCH] python-dbus: 1.2.4 -> 1.2.6 Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-21 14:49   ` akuster808
  2018-03-21  3:36 ` [meta-python][PATCH] python-pip: 9.0.1 -> 9.0.2 Huang Qiyu
  2018-03-21  3:36 ` [meta-python][PATCH] python-pytest: 3.4.1 -> 3.4.2 Huang Qiyu
  10 siblings, 1 reply; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

Upgrade python-msgpack from 0.5.5 to 0.5.6.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 meta-python/recipes-devtools/python/python-msgpack.inc                | 4 ++--
 .../python/{python-msgpack_0.5.5.bb => python-msgpack_0.5.6.bb}       | 0
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-msgpack_0.5.5.bb => python-msgpack_0.5.6.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-msgpack.inc b/meta-python/recipes-devtools/python/python-msgpack.inc
index 2e852cc..fdc8926 100644
--- a/meta-python/recipes-devtools/python/python-msgpack.inc
+++ b/meta-python/recipes-devtools/python/python-msgpack.inc
@@ -2,8 +2,8 @@ SUMMARY = "MessagePack (de)serializer"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://COPYING;md5=cd9523181d9d4fbf7ffca52eaa2a5751"
 
-SRC_URI[md5sum] = "62640290ea856420d83b7f9dc1dd789d"
-SRC_URI[sha256sum] = "7f5d6e59228b65c47cfdae76a4aea71f6902525f18256862cda69888a686b5f9"
+SRC_URI[md5sum] = "6d644c06a87a5a111bbbf5b34b4be440"
+SRC_URI[sha256sum] = "378cc8a6d3545b532dfd149da715abae4fda2a3adb6d74e525d0d5e51f46909b"
 
 PYPI_PACKAGE = "msgpack-python"
 inherit pypi
diff --git a/meta-python/recipes-devtools/python/python-msgpack_0.5.5.bb b/meta-python/recipes-devtools/python/python-msgpack_0.5.6.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-msgpack_0.5.5.bb
rename to meta-python/recipes-devtools/python/python-msgpack_0.5.6.bb
-- 
2.7.4





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

* [meta-python][PATCH] python-pip: 9.0.1 -> 9.0.2
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
                   ` (8 preceding siblings ...)
  2018-03-21  3:36 ` [meta-python][PATCH] python-msgpack: 0.5.5 -> 0.5.6 Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-21 14:49   ` akuster808
  2018-03-21  3:36 ` [meta-python][PATCH] python-pytest: 3.4.1 -> 3.4.2 Huang Qiyu
  10 siblings, 1 reply; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

Upgrade python-pip from 9.0.1 to 9.0.2.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 .../python/{python-pip_9.0.1.bb => python-pip_9.0.2.bb}               | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-pip_9.0.1.bb => python-pip_9.0.2.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python-pip_9.0.1.bb b/meta-python/recipes-devtools/python/python-pip_9.0.2.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python-pip_9.0.1.bb
rename to meta-python/recipes-devtools/python/python-pip_9.0.2.bb
index 5ddd8d5..fa709a1 100644
--- a/meta-python/recipes-devtools/python/python-pip_9.0.1.bb
+++ b/meta-python/recipes-devtools/python/python-pip_9.0.2.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://pip.pypa.io/"
 LICENSE = "MIT & LGPL-2.1"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=25fba45109565f87de20bae85bc39452"
 
-SRC_URI[md5sum] = "35f01da33009719497f01a4ba69d63c9"
-SRC_URI[sha256sum] = "09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d"
+SRC_URI[md5sum] = "2fddd680422326b9d1fbf56112cf341d"
+SRC_URI[sha256sum] = "88110a224e9d30e5d76592a0b2130ef10e7e67a6426e8617bb918fffbfe91fe5"
 
 inherit pypi setuptools
 
-- 
2.7.4





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

* [meta-python][PATCH] python-pytest: 3.4.1 -> 3.4.2
  2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
                   ` (9 preceding siblings ...)
  2018-03-21  3:36 ` [meta-python][PATCH] python-pip: 9.0.1 -> 9.0.2 Huang Qiyu
@ 2018-03-21  3:36 ` Huang Qiyu
  2018-03-30 18:23   ` Tim Orling
  10 siblings, 1 reply; 18+ messages in thread
From: Huang Qiyu @ 2018-03-21  3:36 UTC (permalink / raw)
  To: openembedded-devel

1.Upgrade python-pytest from 3.4.1 to 3.4.2.
2.Modify pytest_version_fix.patch, since the data has been changed.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 meta-python/recipes-devtools/python/python-pytest.inc                 | 4 ++--
 .../recipes-devtools/python/python-pytest/pytest_version_fix.patch    | 2 +-
 .../python/{python-pytest_3.4.1.bb => python-pytest_3.4.2.bb}         | 0
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python-pytest_3.4.1.bb => python-pytest_3.4.2.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-pytest.inc b/meta-python/recipes-devtools/python/python-pytest.inc
index 60ff830..4feb9a0 100644
--- a/meta-python/recipes-devtools/python/python-pytest.inc
+++ b/meta-python/recipes-devtools/python/python-pytest.inc
@@ -3,8 +3,8 @@ HOMEPAGE = "http://pytest.org"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c39b24965f4aef64222cb35de9d47cc4"
 
-SRC_URI[md5sum] = "6768537cbb150022387c565051904a1c"
-SRC_URI[sha256sum] = "9ddcb879c8cc859d2540204b5399011f842e5e8823674bf429f70ada281b3cc6"
+SRC_URI[md5sum] = "1b83a25d45fad893f430fc5031653c56"
+SRC_URI[sha256sum] = "117bad36c1a787e1a8a659df35de53ba05f9f3398fb9e4ac17e80ad5903eb8c5"
 
 SRC_URI_append = " file://0001-setup.py-remove-the-setup_requires-for-setuptools-scm.patch \
                    file://pytest_version_fix.patch "
diff --git a/meta-python/recipes-devtools/python/python-pytest/pytest_version_fix.patch b/meta-python/recipes-devtools/python/python-pytest/pytest_version_fix.patch
index 908f862..b373d93 100644
--- a/meta-python/recipes-devtools/python/python-pytest/pytest_version_fix.patch
+++ b/meta-python/recipes-devtools/python/python-pytest/pytest_version_fix.patch
@@ -36,7 +36,7 @@ Index: pytest-3.2.2/setup.py
 +        return version_match.group(1)
 +    raise RuntimeError("Unable to find version string.")
  
- def has_environment_marker_support():
+ def get_environment_marker_support_level():
      """
 @@ -59,9 +72,7 @@ def main():
          name='pytest',
diff --git a/meta-python/recipes-devtools/python/python-pytest_3.4.1.bb b/meta-python/recipes-devtools/python/python-pytest_3.4.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-pytest_3.4.1.bb
rename to meta-python/recipes-devtools/python/python-pytest_3.4.2.bb
-- 
2.7.4





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

* Re: [meta-python][PATCH] python-cryptography: 2.1.4 -> 2.2
  2018-03-21  3:36 ` [meta-python][PATCH] python-cryptography: 2.1.4 -> 2.2 Huang Qiyu
@ 2018-03-21 14:47   ` akuster808
  0 siblings, 0 replies; 18+ messages in thread
From: akuster808 @ 2018-03-21 14:47 UTC (permalink / raw)
  To: Huang Qiyu, openembedded-devel



On 03/20/2018 08:36 PM, Huang Qiyu wrote:
> 1.Upgrade python-cryptography from 2.1.4 to 2.2.
> 2.Update the checksum of LIC_FILES_CHKSUM, but license remained the same.
>
> Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>

I am seeing:
ERROR: python3-cryptography-2.1.4-r0 do_fetch: Checksum failure fetching
https://files.pythonhosted.org/packages/source/c/cryptography/cryptography-2.1.4.tar.gz
ERROR: python3-cryptography-2.1.4-r0 do_fetch: Fetcher failure for URL:
'https://files.pythonhosted.org/packages/source/c/cryptography/cryptography-2.1.4.tar.gz'.
Checksum mismatch!
File: '/home/akuster/OE/downloads/cryptography-2.1.4.tar.gz' has md5
checksum 9f39d4d8f2b05f295fa0ff52475ec4f2 when
c49c1ee145a900313a216fa2c788208c was expected
File: '/home/akuster/OE/downloads/cryptography-2.1.4.tar.gz' has sha256
checksum
e4d967371c5b6b2e67855066471d844c5d52d210c36c28d49a8507b96e2c5291 when
f5a0279e362c37e2150a32fe35ec20226e9237b6c9927fce8d53ef8e49e64f48 was
expected
If this change is expected (e.g. you have upgraded to a new version
without updating the checksums) then you can use these lines within the
recipe:
SRC_URI[md5sum] = "9f39d4d8f2b05f295fa0ff52475ec4f2"
SRC_URI[sha256sum] =
"e4d967371c5b6b2e67855066471d844c5d52d210c36c28d49a8507b96e2c5291"
Otherwise you should retry the download and/or check with upstream to
determine if the file has become corrupted or otherwise unexpectedly
modified.


please double check.
- armin
> ---
>  meta-python/recipes-devtools/python/python-cryptography.inc         | 6 +++---
>  .../{python-cryptography_2.1.4.bb => python-cryptography_2.2.bb}    | 0
>  2 files changed, 3 insertions(+), 3 deletions(-)
>  rename meta-python/recipes-devtools/python/{python-cryptography_2.1.4.bb => python-cryptography_2.2.bb} (100%)
>
> diff --git a/meta-python/recipes-devtools/python/python-cryptography.inc b/meta-python/recipes-devtools/python/python-cryptography.inc
> index 4be7907..fcd5358 100644
> --- a/meta-python/recipes-devtools/python/python-cryptography.inc
> +++ b/meta-python/recipes-devtools/python/python-cryptography.inc
> @@ -1,7 +1,7 @@
>  SUMMARY = "Provides cryptographic recipes and primitives to python developers"
>  HOMEPAGE = "https://cryptography.io/"
>  LICENSE = "Apache-2.0 | BSD"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=d5ede125ed08d4fd14ec44d334bdb388"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=097f805837700cfac572ac274cd38124"
>  
>  DEPENDS += " \
>      ${PYTHON_PN}-cffi \
> @@ -10,8 +10,8 @@ DEPENDS += " \
>      ${PYTHON_PN}-six \
>  "
>  
> -SRC_URI[md5sum] = "9f39d4d8f2b05f295fa0ff52475ec4f2"
> -SRC_URI[sha256sum] = "e4d967371c5b6b2e67855066471d844c5d52d210c36c28d49a8507b96e2c5291"
> +SRC_URI[md5sum] = "c49c1ee145a900313a216fa2c788208c"
> +SRC_URI[sha256sum] = "f5a0279e362c37e2150a32fe35ec20226e9237b6c9927fce8d53ef8e49e64f48"
>  
>  RDEPENDS_${PN} += " \
>      ${PYTHON_PN}-cffi \
> diff --git a/meta-python/recipes-devtools/python/python-cryptography_2.1.4.bb b/meta-python/recipes-devtools/python/python-cryptography_2.2.bb
> similarity index 100%
> rename from meta-python/recipes-devtools/python/python-cryptography_2.1.4.bb
> rename to meta-python/recipes-devtools/python/python-cryptography_2.2.bb



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

* Re: [meta-python][PATCH] python-cryptography-vectors: 2.1.4 -> 2.2
  2018-03-21  3:36 ` [meta-python][PATCH] python-cryptography-vectors: " Huang Qiyu
@ 2018-03-21 14:48   ` akuster808
  0 siblings, 0 replies; 18+ messages in thread
From: akuster808 @ 2018-03-21 14:48 UTC (permalink / raw)
  To: Huang Qiyu, openembedded-devel



On 03/20/2018 08:36 PM, Huang Qiyu wrote:
> Upgrade python-cryptography-vectors from 2.1.4 to 2.2.

I am seeing:

ERROR: python3-cryptography-vectors-2.1.4-r0 do_fetch: Checksum failure
fetching
https://files.pythonhosted.org/packages/source/c/cryptography_vectors/cryptography_vectors-2.1.4.tar.gz
ERROR: python3-cryptography-vectors-2.1.4-r0 do_fetch: Fetcher failure
for URL:
'https://files.pythonhosted.org/packages/source/c/cryptography_vectors/cryptography_vectors-2.1.4.tar.gz'.
Checksum mismatch!
File: '/home/akuster/OE/downloads/cryptography_vectors-2.1.4.tar.gz' has
md5 checksum ef115b870cc8d8b9f0f4189b512bc170 when
303a08ff50a5590d0ba05252981417ee was expected
File: '/home/akuster/OE/downloads/cryptography_vectors-2.1.4.tar.gz' has
sha256 checksum
78c4b4f3f84853ea5d038e2f53d355229dd8119fe9cf949c3e497c85c760a5ca when
cf601c7d87ad6a938bcea29062375dce1d3e26dabd1db52bbc37eeaf4aac970d was
expected
If this change is expected (e.g. you have upgraded to a new version
without updating the checksums) then you can use these lines within the
recipe:
SRC_URI[md5sum] = "ef115b870cc8d8b9f0f4189b512bc170"
SRC_URI[sha256sum] =
"78c4b4f3f84853ea5d038e2f53d355229dd8119fe9cf949c3e497c85c760a5ca"
Otherwise you should retry the download and/or check with upstream to
determine if the file has become corrupted or otherwise unexpectedly
modified.


please double check

- armin
>
> Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
> ---
>  meta-python/recipes-devtools/python/python-cryptography-vectors.inc   | 4 ++--
>  ...yptography-vectors_2.1.4.bb => python-cryptography-vectors_2.2.bb} | 0
>  2 files changed, 2 insertions(+), 2 deletions(-)
>  rename meta-python/recipes-devtools/python/{python-cryptography-vectors_2.1.4.bb => python-cryptography-vectors_2.2.bb} (100%)
>
> diff --git a/meta-python/recipes-devtools/python/python-cryptography-vectors.inc b/meta-python/recipes-devtools/python/python-cryptography-vectors.inc
> index 00bb87b..31461ec 100644
> --- a/meta-python/recipes-devtools/python/python-cryptography-vectors.inc
> +++ b/meta-python/recipes-devtools/python/python-cryptography-vectors.inc
> @@ -8,8 +8,8 @@ DEPENDS += " \
>      ${PYTHON_PN}-cryptography \
>  "
>  
> -SRC_URI[md5sum] = "ef115b870cc8d8b9f0f4189b512bc170"
> -SRC_URI[sha256sum] = "78c4b4f3f84853ea5d038e2f53d355229dd8119fe9cf949c3e497c85c760a5ca"
> +SRC_URI[md5sum] = "303a08ff50a5590d0ba05252981417ee"
> +SRC_URI[sha256sum] = "cf601c7d87ad6a938bcea29062375dce1d3e26dabd1db52bbc37eeaf4aac970d"
>  
>  PYPI_PACKAGE = "cryptography_vectors"
>  
> diff --git a/meta-python/recipes-devtools/python/python-cryptography-vectors_2.1.4.bb b/meta-python/recipes-devtools/python/python-cryptography-vectors_2.2.bb
> similarity index 100%
> rename from meta-python/recipes-devtools/python/python-cryptography-vectors_2.1.4.bb
> rename to meta-python/recipes-devtools/python/python-cryptography-vectors_2.2.bb



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

* Re: [meta-python][PATCH] python-pip: 9.0.1 -> 9.0.2
  2018-03-21  3:36 ` [meta-python][PATCH] python-pip: 9.0.1 -> 9.0.2 Huang Qiyu
@ 2018-03-21 14:49   ` akuster808
  0 siblings, 0 replies; 18+ messages in thread
From: akuster808 @ 2018-03-21 14:49 UTC (permalink / raw)
  To: Huang Qiyu, openembedded-devel


On 03/20/2018 08:36 PM, Huang Qiyu wrote:
> Upgrade python-pip from 9.0.1 to 9.0.2.

Already have an update queued up in stagging/master-next

>
> Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
> ---
>  .../python/{python-pip_9.0.1.bb => python-pip_9.0.2.bb}               | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>  rename meta-python/recipes-devtools/python/{python-pip_9.0.1.bb => python-pip_9.0.2.bb} (75%)
>
> diff --git a/meta-python/recipes-devtools/python/python-pip_9.0.1.bb b/meta-python/recipes-devtools/python/python-pip_9.0.2.bb
> similarity index 75%
> rename from meta-python/recipes-devtools/python/python-pip_9.0.1.bb
> rename to meta-python/recipes-devtools/python/python-pip_9.0.2.bb
> index 5ddd8d5..fa709a1 100644
> --- a/meta-python/recipes-devtools/python/python-pip_9.0.1.bb
> +++ b/meta-python/recipes-devtools/python/python-pip_9.0.2.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://pip.pypa.io/"
>  LICENSE = "MIT & LGPL-2.1"
>  LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=25fba45109565f87de20bae85bc39452"
>  
> -SRC_URI[md5sum] = "35f01da33009719497f01a4ba69d63c9"
> -SRC_URI[sha256sum] = "09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d"
> +SRC_URI[md5sum] = "2fddd680422326b9d1fbf56112cf341d"
> +SRC_URI[sha256sum] = "88110a224e9d30e5d76592a0b2130ef10e7e67a6426e8617bb918fffbfe91fe5"
>  
>  inherit pypi setuptools
>  



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

* Re: [meta-python][PATCH] python-msgpack: 0.5.5 -> 0.5.6
  2018-03-21  3:36 ` [meta-python][PATCH] python-msgpack: 0.5.5 -> 0.5.6 Huang Qiyu
@ 2018-03-21 14:49   ` akuster808
  0 siblings, 0 replies; 18+ messages in thread
From: akuster808 @ 2018-03-21 14:49 UTC (permalink / raw)
  To: Huang Qiyu, openembedded-devel



On 03/20/2018 08:36 PM, Huang Qiyu wrote:
> Upgrade python-msgpack from 0.5.5 to 0.5.6.
Already have an update in stagging/master-next

>
> Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
> ---
>  meta-python/recipes-devtools/python/python-msgpack.inc                | 4 ++--
>  .../python/{python-msgpack_0.5.5.bb => python-msgpack_0.5.6.bb}       | 0
>  2 files changed, 2 insertions(+), 2 deletions(-)
>  rename meta-python/recipes-devtools/python/{python-msgpack_0.5.5.bb => python-msgpack_0.5.6.bb} (100%)
>
> diff --git a/meta-python/recipes-devtools/python/python-msgpack.inc b/meta-python/recipes-devtools/python/python-msgpack.inc
> index 2e852cc..fdc8926 100644
> --- a/meta-python/recipes-devtools/python/python-msgpack.inc
> +++ b/meta-python/recipes-devtools/python/python-msgpack.inc
> @@ -2,8 +2,8 @@ SUMMARY = "MessagePack (de)serializer"
>  LICENSE = "Apache-2.0"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=cd9523181d9d4fbf7ffca52eaa2a5751"
>  
> -SRC_URI[md5sum] = "62640290ea856420d83b7f9dc1dd789d"
> -SRC_URI[sha256sum] = "7f5d6e59228b65c47cfdae76a4aea71f6902525f18256862cda69888a686b5f9"
> +SRC_URI[md5sum] = "6d644c06a87a5a111bbbf5b34b4be440"
> +SRC_URI[sha256sum] = "378cc8a6d3545b532dfd149da715abae4fda2a3adb6d74e525d0d5e51f46909b"
>  
>  PYPI_PACKAGE = "msgpack-python"
>  inherit pypi
> diff --git a/meta-python/recipes-devtools/python/python-msgpack_0.5.5.bb b/meta-python/recipes-devtools/python/python-msgpack_0.5.6.bb
> similarity index 100%
> rename from meta-python/recipes-devtools/python/python-msgpack_0.5.5.bb
> rename to meta-python/recipes-devtools/python/python-msgpack_0.5.6.bb



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

* Re: [meta-python][PATCH] python-cython: 0.27.3 -> 0.28.1
  2018-03-21  3:36 ` [meta-python][PATCH] python-cython: 0.27.3 -> 0.28.1 Huang Qiyu
@ 2018-03-21 14:51   ` akuster808
  0 siblings, 0 replies; 18+ messages in thread
From: akuster808 @ 2018-03-21 14:51 UTC (permalink / raw)
  To: Huang Qiyu, openembedded-devel



On 03/20/2018 08:36 PM, Huang Qiyu wrote:
> Upgrade python-cython from 0.27.3 to 0.28.1.

I have a 0.28.0 update in stagging/master-next. please wait for merge to
master-next to rebase.

- armin
>
> Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
> ---
>  meta-python/recipes-devtools/python/python-cython.inc                 | 4 ++--
>  .../python/{python-cython_0.27.3.bb => python-cython_0.28.1.bb}       | 0
>  2 files changed, 2 insertions(+), 2 deletions(-)
>  rename meta-python/recipes-devtools/python/{python-cython_0.27.3.bb => python-cython_0.28.1.bb} (100%)
>
> diff --git a/meta-python/recipes-devtools/python/python-cython.inc b/meta-python/recipes-devtools/python/python-cython.inc
> index dee647e..5a69cd0 100644
> --- a/meta-python/recipes-devtools/python/python-cython.inc
> +++ b/meta-python/recipes-devtools/python/python-cython.inc
> @@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
>  PYPI_PACKAGE = "Cython"
>  BBCLASSEXTEND = "native nativesdk"
>  
> -SRC_URI[md5sum] = "6149238287d662bd5d5e572482252493"
> -SRC_URI[sha256sum] = "6a00512de1f2e3ce66ba35c5420babaef1fe2d9c43a8faab4080b0dbcc26bc64"
> +SRC_URI[md5sum] = "c549effadb52d90bdcb1affc1e5dbb97"
> +SRC_URI[sha256sum] = "152ee5f345012ca3bb7cc71da2d3736ee20f52cd8476e4d49e5e25c5a4102b12"
>  
>  inherit pypi
>  
> diff --git a/meta-python/recipes-devtools/python/python-cython_0.27.3.bb b/meta-python/recipes-devtools/python/python-cython_0.28.1.bb
> similarity index 100%
> rename from meta-python/recipes-devtools/python/python-cython_0.27.3.bb
> rename to meta-python/recipes-devtools/python/python-cython_0.28.1.bb



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

* Re: [meta-python][PATCH] python-pytest: 3.4.1 -> 3.4.2
  2018-03-21  3:36 ` [meta-python][PATCH] python-pytest: 3.4.1 -> 3.4.2 Huang Qiyu
@ 2018-03-30 18:23   ` Tim Orling
  0 siblings, 0 replies; 18+ messages in thread
From: Tim Orling @ 2018-03-30 18:23 UTC (permalink / raw)
  To: Huang Qiyu; +Cc: openembedded-devel

You failed to also update the python3-pytest recipe which now breaks my builds.

> On Mar 20, 2018, at 8:36 PM, Huang Qiyu <huangqy.fnst@cn.fujitsu.com> wrote:
> 
> 1.Upgrade python-pytest from 3.4.1 to 3.4.2.
> 2.Modify pytest_version_fix.patch, since the data has been changed.
> 
> Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
> ---
> meta-python/recipes-devtools/python/python-pytest.inc                 | 4 ++--
> .../recipes-devtools/python/python-pytest/pytest_version_fix.patch    | 2 +-
> .../python/{python-pytest_3.4.1.bb => python-pytest_3.4.2.bb}         | 0
> 3 files changed, 3 insertions(+), 3 deletions(-)
> rename meta-python/recipes-devtools/python/{python-pytest_3.4.1.bb => python-pytest_3.4.2.bb} (100%)
> 
> diff --git a/meta-python/recipes-devtools/python/python-pytest.inc b/meta-python/recipes-devtools/python/python-pytest.inc
> index 60ff830..4feb9a0 100644
> --- a/meta-python/recipes-devtools/python/python-pytest.inc
> +++ b/meta-python/recipes-devtools/python/python-pytest.inc
> @@ -3,8 +3,8 @@ HOMEPAGE = "http://pytest.org"
> LICENSE = "MIT"
> LIC_FILES_CHKSUM = "file://LICENSE;md5=c39b24965f4aef64222cb35de9d47cc4"
> 
> -SRC_URI[md5sum] = "6768537cbb150022387c565051904a1c"
> -SRC_URI[sha256sum] = "9ddcb879c8cc859d2540204b5399011f842e5e8823674bf429f70ada281b3cc6"
> +SRC_URI[md5sum] = "1b83a25d45fad893f430fc5031653c56"
> +SRC_URI[sha256sum] = "117bad36c1a787e1a8a659df35de53ba05f9f3398fb9e4ac17e80ad5903eb8c5"
> 
> SRC_URI_append = " file://0001-setup.py-remove-the-setup_requires-for-setuptools-scm.patch \
>                    file://pytest_version_fix.patch "
> diff --git a/meta-python/recipes-devtools/python/python-pytest/pytest_version_fix.patch b/meta-python/recipes-devtools/python/python-pytest/pytest_version_fix.patch
> index 908f862..b373d93 100644
> --- a/meta-python/recipes-devtools/python/python-pytest/pytest_version_fix.patch
> +++ b/meta-python/recipes-devtools/python/python-pytest/pytest_version_fix.patch
> @@ -36,7 +36,7 @@ Index: pytest-3.2.2/setup.py
> +        return version_match.group(1)
> +    raise RuntimeError("Unable to find version string.")
> 
> - def has_environment_marker_support():
> + def get_environment_marker_support_level():
>      """
> @@ -59,9 +72,7 @@ def main():
>          name='pytest',
> diff --git a/meta-python/recipes-devtools/python/python-pytest_3.4.1.bb b/meta-python/recipes-devtools/python/python-pytest_3.4.2.bb
> similarity index 100%
> rename from meta-python/recipes-devtools/python/python-pytest_3.4.1.bb
> rename to meta-python/recipes-devtools/python/python-pytest_3.4.2.bb
> -- 
> 2.7.4
> 
> 
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel



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

end of thread, other threads:[~2018-03-30 18:23 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-21  3:36 [meta-networking][PATCH] quagga: 1.2.2 -> 1.2.4 Huang Qiyu
2018-03-21  3:36 ` [meta-networking][PATCH] strongswan: 5.5.3 -> 5.6.2 Huang Qiyu
2018-03-21  3:36 ` [meta-oe][PATCH] python-pygobject: 3.22.0 -> 3.28.0 Huang Qiyu
2018-03-21  3:36 ` [meta-oe][PATCH] sessreg: 1.1.0 -> 1.1.1 Huang Qiyu
2018-03-21  3:36 ` [meta-python][PATCH] python-cffi: 1.11.4 -> 1.11.5 Huang Qiyu
2018-03-21  3:36 ` [meta-python][PATCH] python-cryptography: 2.1.4 -> 2.2 Huang Qiyu
2018-03-21 14:47   ` akuster808
2018-03-21  3:36 ` [meta-python][PATCH] python-cryptography-vectors: " Huang Qiyu
2018-03-21 14:48   ` akuster808
2018-03-21  3:36 ` [meta-python][PATCH] python-cython: 0.27.3 -> 0.28.1 Huang Qiyu
2018-03-21 14:51   ` akuster808
2018-03-21  3:36 ` [meta-python][PATCH] python-dbus: 1.2.4 -> 1.2.6 Huang Qiyu
2018-03-21  3:36 ` [meta-python][PATCH] python-msgpack: 0.5.5 -> 0.5.6 Huang Qiyu
2018-03-21 14:49   ` akuster808
2018-03-21  3:36 ` [meta-python][PATCH] python-pip: 9.0.1 -> 9.0.2 Huang Qiyu
2018-03-21 14:49   ` akuster808
2018-03-21  3:36 ` [meta-python][PATCH] python-pytest: 3.4.1 -> 3.4.2 Huang Qiyu
2018-03-30 18:23   ` Tim Orling

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.