All of lore.kernel.org
 help / color / mirror / Atom feed
* [Rocko][PATCH 0/4] small pull request
@ 2018-06-07 13:52 Armin Kuster
  2018-06-07 13:52 ` [PATCH 1/4] wireshark: Update to 2.2.11 Armin Kuster
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Armin Kuster @ 2018-06-07 13:52 UTC (permalink / raw)
  To: akuster808, openembedded-devel

Please consider these changes for rocko

The following changes since commit dacfa2b1920e285531bec55cd2f08743390aaf57:

  python-automat: fix build dependencies to avoid download during do_compile (2018-03-12 14:43:28 -0700)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded rocko-next
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded/log/?h=rocko-next

Armin Kuster (2):
  wireshark: Update to 2.2.11
  wireshark: Update Package to 2.2.12

Philip Balister (1):
  protobuf: Fix fetcher failure for rocko.

Ricardo Salveti (1):
  python3-asn1crypto: add support for Python 3

 .../wireshark/{wireshark_2.2.10.bb => wireshark_2.2.12.bb}          | 6 +++---
 meta-oe/recipes-devtools/protobuf/protobuf_3.4.1.bb                 | 2 +-
 meta-python/recipes-devtools/python/python3-asn1crypto_0.23.0.bb    | 2 ++
 3 files changed, 6 insertions(+), 4 deletions(-)
 rename meta-networking/recipes-support/wireshark/{wireshark_2.2.10.bb => wireshark_2.2.12.bb} (92%)
 create mode 100644 meta-python/recipes-devtools/python/python3-asn1crypto_0.23.0.bb

-- 
2.7.4



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

* [PATCH 1/4] wireshark: Update to 2.2.11
  2018-06-07 13:52 [Rocko][PATCH 0/4] small pull request Armin Kuster
@ 2018-06-07 13:52 ` Armin Kuster
  2018-06-07 13:52 ` [PATCH 2/4] wireshark: Update Package to 2.2.12 Armin Kuster
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Armin Kuster @ 2018-06-07 13:52 UTC (permalink / raw)
  To: akuster808, openembedded-devel

From: Armin Kuster <akuster@mvista.com>

changed --with-ssh to --with-libssh=DIR

includes:

wnpa-sec-2017-47 : CVE-2017-17084
    The IWARP_MPA dissector could crash. (Bug 14236)

wnpa-sec-2017-48 : CVE-2017-17083
    The NetBIOS dissector could crash. (Bug 14249)

wnpa-sec-2017-49 : CVE-2017-17085
    The CIP Safety dissector could crash. (Bug 14250)

release notes:
https://www.wireshark.org/docs/relnotes/wireshark-2.2.11.html

Signed-off-by: Armin Kuster <akuster@mvista.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 .../wireshark/{wireshark_2.2.10.bb => wireshark_2.2.11.bb}          | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-networking/recipes-support/wireshark/{wireshark_2.2.10.bb => wireshark_2.2.11.bb} (92%)

diff --git a/meta-networking/recipes-support/wireshark/wireshark_2.2.10.bb b/meta-networking/recipes-support/wireshark/wireshark_2.2.11.bb
similarity index 92%
rename from meta-networking/recipes-support/wireshark/wireshark_2.2.10.bb
rename to meta-networking/recipes-support/wireshark/wireshark_2.2.11.bb
index 5358ba0..5eb372e 100644
--- a/meta-networking/recipes-support/wireshark/wireshark_2.2.10.bb
+++ b/meta-networking/recipes-support/wireshark/wireshark_2.2.11.bb
@@ -10,8 +10,8 @@ SRC_URI = "https://2.na.dl.wireshark.org/src/all-versions/${BP}.tar.bz2"
 
 PE = "1"
 
-SRC_URI[md5sum] = "ae3a1a43a6e3687f44a738fd15d78021"
-SRC_URI[sha256sum] = "8574a5e1fdec7affae640924bd46c1aed1bd866e02632fa5625e1450e4a50707"
+SRC_URI[md5sum] = "a79ba6cda83be2a91bde4110fe194788"
+SRC_URI[sha256sum] = "a9f11621e85d7e1d72259157edd94825e72af3fd72e184b8474459f92ad5fc40"
 
 inherit autotools pkgconfig perlnative
 
@@ -39,7 +39,7 @@ PACKAGECONFIG[geoip] = "--with-geoip=yes, --with-geoip=no, geoip"
 PACKAGECONFIG[plugins] = "--with-plugins=yes, --with-plugins=no"
 PACKAGECONFIG[sbc] = "--with-sbc=yes, --with-sbc=no, sbc"
 
-PACKAGECONFIG[libssh] = "--with-ssh=yes, --with-ssh=no, libssh2"
+PACKAGECONFIG[libssh] = "--with-libssh=${STAGING_LIBDIR}, --with-libssh=no, libssh2"
 
 
 # these next two options require addional layers
-- 
2.7.4



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

* [PATCH 2/4] wireshark: Update Package to 2.2.12
  2018-06-07 13:52 [Rocko][PATCH 0/4] small pull request Armin Kuster
  2018-06-07 13:52 ` [PATCH 1/4] wireshark: Update to 2.2.11 Armin Kuster
@ 2018-06-07 13:52 ` Armin Kuster
  2018-06-07 13:52 ` [PATCH 3/4] python3-asn1crypto: add support for Python 3 Armin Kuster
  2018-06-07 13:52 ` [PATCH 4/4] protobuf: Fix fetcher failure for rocko Armin Kuster
  3 siblings, 0 replies; 5+ messages in thread
From: Armin Kuster @ 2018-06-07 13:52 UTC (permalink / raw)
  To: akuster808, openembedded-devel

Includes:
	wnpa-sec-2018-01,  Multiple dissectors could crash. (Bug 14253) CVE-2018-5336

	wnpa-sec-2018-02, The MRDISC dissector could crash. (Bug 14299, Bug 13707) CVE-2017-17997

	wnpa-sec-2018-03, The IxVeriWave file parser could crash. (Bug 14297) CVE-2018-5334

	wnpa-sec-2018-04, The WCP dissector could crash. (Bug 14251) CVE-2018-5335

Full release notes: https://www.wireshark.org/docs/relnotes/wireshark-2.2.12.html

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 .../wireshark/{wireshark_2.2.11.bb => wireshark_2.2.12.bb}            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-networking/recipes-support/wireshark/{wireshark_2.2.11.bb => wireshark_2.2.12.bb} (95%)

diff --git a/meta-networking/recipes-support/wireshark/wireshark_2.2.11.bb b/meta-networking/recipes-support/wireshark/wireshark_2.2.12.bb
similarity index 95%
rename from meta-networking/recipes-support/wireshark/wireshark_2.2.11.bb
rename to meta-networking/recipes-support/wireshark/wireshark_2.2.12.bb
index 5eb372e..6c0b644 100644
--- a/meta-networking/recipes-support/wireshark/wireshark_2.2.11.bb
+++ b/meta-networking/recipes-support/wireshark/wireshark_2.2.12.bb
@@ -10,8 +10,8 @@ SRC_URI = "https://2.na.dl.wireshark.org/src/all-versions/${BP}.tar.bz2"
 
 PE = "1"
 
-SRC_URI[md5sum] = "a79ba6cda83be2a91bde4110fe194788"
-SRC_URI[sha256sum] = "a9f11621e85d7e1d72259157edd94825e72af3fd72e184b8474459f92ad5fc40"
+SRC_URI[md5sum] = "ebf3d4230d7a13408758cdf037c42d66"
+SRC_URI[sha256sum] = "3274458d1bb1658a5001465ecb07c7cbfc709571ef36bd062897570d4bab3ebc"
 
 inherit autotools pkgconfig perlnative
 
-- 
2.7.4



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

* [PATCH 3/4] python3-asn1crypto: add support for Python 3
  2018-06-07 13:52 [Rocko][PATCH 0/4] small pull request Armin Kuster
  2018-06-07 13:52 ` [PATCH 1/4] wireshark: Update to 2.2.11 Armin Kuster
  2018-06-07 13:52 ` [PATCH 2/4] wireshark: Update Package to 2.2.12 Armin Kuster
@ 2018-06-07 13:52 ` Armin Kuster
  2018-06-07 13:52 ` [PATCH 4/4] protobuf: Fix fetcher failure for rocko Armin Kuster
  3 siblings, 0 replies; 5+ messages in thread
From: Armin Kuster @ 2018-06-07 13:52 UTC (permalink / raw)
  To: akuster808, openembedded-devel

From: Ricardo Salveti <ricardo@opensourcefoundries.com>

python-asn1crypto.inc already available and used by the Python 2
version.

Signed-off-by: Ricardo Salveti <ricardo@opensourcefoundries.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 meta-python/recipes-devtools/python/python3-asn1crypto_0.23.0.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-asn1crypto_0.23.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-asn1crypto_0.23.0.bb b/meta-python/recipes-devtools/python/python3-asn1crypto_0.23.0.bb
new file mode 100644
index 0000000..30f3404
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-asn1crypto_0.23.0.bb
@@ -0,0 +1,2 @@
+inherit setuptools3
+require python-asn1crypto.inc
-- 
2.7.4



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

* [PATCH 4/4] protobuf: Fix fetcher failure for rocko.
  2018-06-07 13:52 [Rocko][PATCH 0/4] small pull request Armin Kuster
                   ` (2 preceding siblings ...)
  2018-06-07 13:52 ` [PATCH 3/4] python3-asn1crypto: add support for Python 3 Armin Kuster
@ 2018-06-07 13:52 ` Armin Kuster
  3 siblings, 0 replies; 5+ messages in thread
From: Armin Kuster @ 2018-06-07 13:52 UTC (permalink / raw)
  To: akuster808, openembedded-devel

From: Philip Balister <philip@opensdr.com>

The 3.4.x branch disappered from the github repo. Remviing the branch
entry from SRC_URI allows the fetch to succeed. Rocko is the only release
that has this issue. Sumo and later have 3.5.x.

Signed-off-by: Philip Balister <philip@opensdr.com>
Acked-by: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 meta-oe/recipes-devtools/protobuf/protobuf_3.4.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/protobuf/protobuf_3.4.1.bb b/meta-oe/recipes-devtools/protobuf/protobuf_3.4.1.bb
index fae7c18..fe28f47 100644
--- a/meta-oe/recipes-devtools/protobuf/protobuf_3.4.1.bb
+++ b/meta-oe/recipes-devtools/protobuf/protobuf_3.4.1.bb
@@ -18,7 +18,7 @@ SRCREV = "b04e5cba356212e4e8c66c61bbe0c3a20537c5b9"
 
 PV = "3.4.1+git${SRCPV}"
 
-SRC_URI = "git://github.com/google/protobuf.git;branch=3.4.x"
+SRC_URI = "git://github.com/google/protobuf.git"
 
 EXTRA_OECONF += " --with-protoc=echo"
 
-- 
2.7.4



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

end of thread, other threads:[~2018-06-07 13:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-07 13:52 [Rocko][PATCH 0/4] small pull request Armin Kuster
2018-06-07 13:52 ` [PATCH 1/4] wireshark: Update to 2.2.11 Armin Kuster
2018-06-07 13:52 ` [PATCH 2/4] wireshark: Update Package to 2.2.12 Armin Kuster
2018-06-07 13:52 ` [PATCH 3/4] python3-asn1crypto: add support for Python 3 Armin Kuster
2018-06-07 13:52 ` [PATCH 4/4] protobuf: Fix fetcher failure for rocko Armin Kuster

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.