<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/poky.git/meta/recipes-devtools, branch morty-16.0.3</title>
<subtitle>Mirror of git.yoctoproject.org/poky</subtitle>
<id>https://git.enea.com/cgit/linux/poky.git/atom?h=morty-16.0.3</id>
<link rel='self' href='https://git.enea.com/cgit/linux/poky.git/atom?h=morty-16.0.3'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/'/>
<updated>2017-12-09T14:34:35+00:00</updated>
<entry>
<title>python3: do not hardcode "lib" into site-packages search path</title>
<updated>2017-12-09T14:34:35+00:00</updated>
<author>
<name>Alexander Kanavin</name>
<email>alexander.kanavin@linux.intel.com</email>
</author>
<published>2017-11-22T19:46:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=38961fcfcbf958ac4004fe6f048f44728eaf27f0'/>
<id>urn:sha1:38961fcfcbf958ac4004fe6f048f44728eaf27f0</id>
<content type='text'>
This was not working in multilib or x32 setups and amazingly, was not
noticed until now.

The actual modification is in Lib/site.py, the rest is just devtool moving things around in the patch.

(From OE-Core rev: 0713d2a325adf87d97ef5936061ff44274d5a913)

Signed-off-by: Alexander Kanavin &lt;alexander.kanavin@linux.intel.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>python-3.3-multilib.patch: Fixes getpath on multilib configurations</title>
<updated>2017-11-21T14:43:56+00:00</updated>
<author>
<name>Jose Lamego</name>
<email>jose.a.lamego@linux.intel.com</email>
</author>
<published>2017-11-16T00:56:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=b8d413eed64782c781f34452dfa11a86819c77cf'/>
<id>urn:sha1:b8d413eed64782c781f34452dfa11a86819c77cf</id>
<content type='text'>
When using multilib configurations either on arm/arm64 and x86/x86-64
python3 failed to execute due to a failure when looking for its
platform independent and dependent libraries.

This patch fixes this issue by assigning lib_python to the appropriate
macro.

[YOCTO #10812]

(From OE-Core rev: 8ef5c0511e51b82eaa45865df42ecbb2deeb7350)

Signed-off-by: Alejandro Hernandez &lt;alejandro.hernandez@linux.intel.com&gt;
Signed-off-by: Jose Lamego &lt;jose.a.lamego@linux.intel.com&gt;
Signed-off-by: Ross Burton &lt;ross.burton@intel.com&gt;
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>tcf-agent: Fix daemon termination</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Jan Kiszka</name>
<email>jan.kiszka@web.de</email>
</author>
<published>2017-11-14T19:56:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=7e357238ef49143ba0a818735553be79972da01f'/>
<id>urn:sha1:7e357238ef49143ba0a818735553be79972da01f</id>
<content type='text'>
The upstream init script uses SIGUSR2 to terminate that daemon because
SIGTERM is ignored. As the killproc function does not support specifying
a signal, switch to start-stop-daemon. Drop the retry loop because
SIGUSR2 is lethal for agent.

(From OE-Core rev: 1e6235de0a3f6302cee37332f03b1ba403c789d1)

Signed-off-by: Jan Kiszka &lt;jan.kiszka@siemens.com&gt;
Signed-off-by: Ross Burton &lt;ross.burton@intel.com&gt;
Signed-off-by: Javier Viguera &lt;javier.viguera@digi.com&gt;
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>tcf-agent: kill with USR2 in systemd stop</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Martin Kelly</name>
<email>mkelly@xevo.com</email>
</author>
<published>2017-11-14T19:56:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=3961ab82dd51c324f6b2aae9c16d2021b8d75d75'/>
<id>urn:sha1:3961ab82dd51c324f6b2aae9c16d2021b8d75d75</id>
<content type='text'>
tcf-agent ignores SIGTERM, so upstream uses USR2 instead. This issue was noticed
by Jan Kiszka and Brian Avery around the same time:

https://patchwork.openembedded.org/patch/139546/
https://patchwork.openembedded.org/patch/139560/

However, these patches fixed only the init scripts, not the systemd service
file. This patch fixes the systemd file.

(From OE-Core rev: f3c9d850af1c8dab9d46ddb136d84710e7f73fa2)

Signed-off-by: Martin Kelly &lt;mkelly@xevo.com&gt;
Signed-off-by: Ross Burton &lt;ross.burton@intel.com&gt;
Signed-off-by: Javier Viguera &lt;javier.viguera@digi.com&gt;
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>opkg: fix conffile errors in 'opkg status' calls</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Ross Burton</name>
<email>ross.burton@intel.com</email>
</author>
<published>2017-01-10T15:39:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=51d3a57bc8c5428b0010fd74a22da2a7e83697b6'/>
<id>urn:sha1:51d3a57bc8c5428b0010fd74a22da2a7e83697b6</id>
<content type='text'>
If a conffile has been deleted (common when building a debugfs) the status
command will throw errors instead of handling that situation.  Stop the code
being executed in the first place if it wasn't asked for, and handle errors
gracefully.

[ YOCTO #10761 ]

(From OE-Core rev: c32bca840d262ebc5ac93b06d0bce79729a178b1)

Signed-off-by: Ross Burton &lt;ross.burton@intel.com&gt;
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>ruby: Security fix for CVE-2017-14064</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Rajkumar Veer</name>
<email>rveer@mvista.com</email>
</author>
<published>2017-11-04T17:45:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=eb70e899c48abec05d547e43c98c9b1185ccd95d'/>
<id>urn:sha1:eb70e899c48abec05d547e43c98c9b1185ccd95d</id>
<content type='text'>
Ruby through 2.2.7, 2.3.x through 2.3.4, and 2.4.x through 2.4.1

(From OE-Core rev: 8d53b03e8fa1bc20c0d77d6cd7869bd7f7325987)

Signed-off-by: Rajkumar Veer &lt;rveer@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>ruby: Security fix for CVE-2017-14033</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Rajkumar Veer</name>
<email>rveer@mvista.com</email>
</author>
<published>2017-11-04T17:43:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=ecd6e7d10175d269a3424996f7e71ac48be3c613'/>
<id>urn:sha1:ecd6e7d10175d269a3424996f7e71ac48be3c613</id>
<content type='text'>
affects ruby before 2.2.8, 2.3.x before 2.3.5, and 2.4.x through 2.4.1

(From OE-Core rev: 6033983453ff7b39d9d0d0a64353611128e26fae)

Signed-off-by: Rajkumar Veer &lt;rveer@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>ruby: Security fix for CVE-2017-9229</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Thiruvadi Rajaraman</name>
<email>trajaraman@mvista.com</email>
</author>
<published>2017-11-04T17:41:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=32c81fb55d9889c46ca7f7854522a9d01df290c0'/>
<id>urn:sha1:32c81fb55d9889c46ca7f7854522a9d01df290c0</id>
<content type='text'>
affects ruby &lt; 2.4.1

(From OE-Core rev: a636bf8cb5063f349b2af6594b131af6852b3076)

Signed-off-by: Thiruvadi Rajaraman &lt;trajaraman@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>ruby: Secruity fix for CVE-2017-9226</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Thiruvadi Rajaraman</name>
<email>trajaraman@mvista.com</email>
</author>
<published>2017-11-04T17:39:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=7039d1ad320d3bb48c0b031340ceb8a5cd273290'/>
<id>urn:sha1:7039d1ad320d3bb48c0b031340ceb8a5cd273290</id>
<content type='text'>
affects ruby &lt; 2.4.1

(From OE-Core rev: 0c1eec0c6a789e1e9dbfcc66c3fb8c7d1d8b4e99)

Signed-off-by: Thiruvadi Rajaraman &lt;trajaraman@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>ruby: Security fix for CVE-2017-9228</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Thiruvadi Rajaraman</name>
<email>trajaraman@mvista.com</email>
</author>
<published>2017-11-04T17:37:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=7f7e00483a1c1e45e1104035433cb2981214e777'/>
<id>urn:sha1:7f7e00483a1c1e45e1104035433cb2981214e777</id>
<content type='text'>
affects ruby &lt; 2.4.1

(From OE-Core rev: cdfb60a7b573c034868ef27d8eb2c667f2a7ad1d)

Signed-off-by: Thiruvadi Rajaraman &lt;trajaraman@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
</feed>
