<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/poky.git/meta/recipes-devtools/file, branch master-test</title>
<subtitle>Mirror of git.yoctoproject.org/poky</subtitle>
<id>https://git.enea.com/cgit/linux/poky.git/atom?h=master-test</id>
<link rel='self' href='https://git.enea.com/cgit/linux/poky.git/atom?h=master-test'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/'/>
<updated>2020-10-30T13:22:48+00:00</updated>
<entry>
<title>file: enable all built-in compression checkers</title>
<updated>2020-10-30T13:22:48+00:00</updated>
<author>
<name>Alexander Kanavin</name>
<email>alex.kanavin@gmail.com</email>
</author>
<published>2020-10-28T21:05:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=52a31bd5ba90713af82822047c3813afc31421f8'/>
<id>urn:sha1:52a31bd5ba90713af82822047c3813afc31421f8</id>
<content type='text'>
This allows re-enabling parallel file classification in rpm
in particular, as otherwise libmagic calls out to external
executables, which isn't implemented in a thread-safe way.

(From OE-Core rev: 0515567a846adc5302384cb0a6bfcdb6dd1d8431)

Signed-off-by: Alexander Kanavin &lt;alex.kanavin@gmail.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>file: upgrade 5.38 -&gt; 5.39</title>
<updated>2020-06-24T17:06:43+00:00</updated>
<author>
<name>Andreas Müller</name>
<email>schnitzeltony@gmail.com</email>
</author>
<published>2020-06-22T22:15:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=c77746de9f18387abaa119950a2fa52b0bc6f017'/>
<id>urn:sha1:c77746de9f18387abaa119950a2fa52b0bc6f017</id>
<content type='text'>
(From OE-Core rev: a9fb039852354ada27c95401bbe9c29d8f9b7f38)

Signed-off-by: Andreas Müller &lt;schnitzeltony@gmail.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>file: add bzip2-replacement-native to DEPENDS to fix sstate issue</title>
<updated>2020-05-22T16:07:44+00:00</updated>
<author>
<name>Jan-Simon Moeller</name>
<email>dl9pf@gmx.de</email>
</author>
<published>2020-05-21T14:07:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=3c28c19791bfce1b099fe5b3159c59a034ffe5d1'/>
<id>urn:sha1:3c28c19791bfce1b099fe5b3159c59a034ffe5d1</id>
<content type='text'>
file-native when built on a Debian 10 host will embed a dependency to
'libbz2.so.1.0' (instead of 'libbz2.so.1'). This can cause issues
when sharing the sstate between hosts e.g.:

 recipe-sysroot-native/usr/lib/rpm/rpmdeps:
      error while loading shared libraries: libbz2.so.1.0: \
        cannot open shared object file: No such file or directory

To avoid this situation, let's add the bzip2-replacement-native to the
file recipe's DEPENDS_class-native .

Details in https://bugzilla.yoctoproject.org/show_bug.cgi?id=13915 .

(From OE-Core rev: 4a996574464028bd5d57b90920d0887d1a81e9e9)

Signed-off-by: Jan-Simon Moeller &lt;dl9pf@gmx.de&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>file: Remove unneccessary override of PACKAGECONFIG for native</title>
<updated>2020-05-14T13:15:11+00:00</updated>
<author>
<name>Peter Kjellerstedt</name>
<email>peter.kjellerstedt@axis.com</email>
</author>
<published>2020-05-12T21:42:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=d708afc6dfc2f1ada34871c0790cccff2c45814d'/>
<id>urn:sha1:d708afc6dfc2f1ada34871c0790cccff2c45814d</id>
<content type='text'>
There is no reason to set PACKAGECONFIG_class-native to the same value
as the default PACKAGECONFIG.

(From OE-Core rev: 276a21cbbfc929f718fd758b64e3e0567534fd41)

Signed-off-by: Peter Kjellerstedt &lt;peter.kjellerstedt@axis.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>file: add PACKAGECONFIG for auto options</title>
<updated>2020-05-12T14:20:43+00:00</updated>
<author>
<name>Konrad Weihmann</name>
<email>kweihmann@outlook.com</email>
</author>
<published>2020-05-11T19:28:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=17b80b70baadde12044f7a784c5ba85c435c0cfb'/>
<id>urn:sha1:17b80b70baadde12044f7a784c5ba85c435c0cfb</id>
<content type='text'>
A few options of file configure are set to auto, which can lead to
unpredictable effects when something in the sysroot does provide
things that satisfy the autotools checks.
In the worst case this will lead to package-qa failures as libraries are
not set in RDEPENDS but configured for the tool.

To mitigate changes of accidental configure set explicit options via
newly introduced PACKAGECONFIG variables for bzip, lzma and zlib
support, where the default is just zlib, as it was before

(From OE-Core rev: a2236917395239eba7a8358ca4de61fd0d25b27f)

Signed-off-by: Konrad Weihmann &lt;kweihmann@outlook.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>file/elfutils: Adjust some appends to guarantee leading space</title>
<updated>2020-03-30T11:33:30+00:00</updated>
<author>
<name>rpjday@crashcourse.ca</name>
<email>rpjday@crashcourse.ca</email>
</author>
<published>2020-03-29T21:40:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=8c576c31b6af5b7c3aed6cac375040efffac0293'/>
<id>urn:sha1:8c576c31b6af5b7c3aed6cac375040efffac0293</id>
<content type='text'>
Add missing leading spaces or replace += usage with a leading space.

(From OE-Core rev: 91f464177ed7ed59a4405a39a366b387338ae923)

Signed-off-by: Robert P. J. Day &lt;rpjday@crashcourse.ca&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>file: upgrade 5.37 -&gt; 5.38</title>
<updated>2020-01-27T16:48:08+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@cn.fujitsu.com</email>
</author>
<published>2020-01-20T12:26:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=de1fac5dd7af7b774775151381ae33e28d9ee4f3'/>
<id>urn:sha1:de1fac5dd7af7b774775151381ae33e28d9ee4f3</id>
<content type='text'>
CVE-2019-18218.patch
Removed since it is included in 5.38.

(From OE-Core rev: 2ac297f8906354bf3a1578b5e78df040b4712b81)

Signed-off-by: Wang Mingyu &lt;wangmy@cn.fujitsu.com&gt;
Signed-off-by: Ross Burton &lt;ross.burton@intel.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>file: run test suite when building natively</title>
<updated>2019-11-05T10:37:11+00:00</updated>
<author>
<name>Ross Burton</name>
<email>ross.burton@intel.com</email>
</author>
<published>2019-11-04T12:14:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=4626a42c7be849b9c57ddb52114e1a84db2abfcb'/>
<id>urn:sha1:4626a42c7be849b9c57ddb52114e1a84db2abfcb</id>
<content type='text'>
As we apply the same patches to native and target builds of file, we can verify
that the patches are not breaking by executing the test suite during the build
of file-native.

(From OE-Core rev: 03591b9945bf04baca794e221b93ac66568b0609)

Signed-off-by: Ross Burton &lt;ross.burton@intel.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>file: remove redundant upstream check workaround</title>
<updated>2019-11-05T10:37:11+00:00</updated>
<author>
<name>Ross Burton</name>
<email>ross.burton@intel.com</email>
</author>
<published>2019-11-04T12:14:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=5da5331fccba5f18d6f6fab19ff05a6fc3a7f945'/>
<id>urn:sha1:5da5331fccba5f18d6f6fab19ff05a6fc3a7f945</id>
<content type='text'>
This tag has been removed, so we don't need to work around it anymore.

(From OE-Core rev: 1ab9fc04d6666de0c5c176f546f64c11dffe2106)

Signed-off-by: Ross Burton &lt;ross.burton@intel.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>file: fix CVE-2019-18218</title>
<updated>2019-11-05T10:37:11+00:00</updated>
<author>
<name>Ross Burton</name>
<email>ross.burton@intel.com</email>
</author>
<published>2019-11-04T12:14:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=35c5388a7dcadea3ee3f1126676d9f8c452abc0e'/>
<id>urn:sha1:35c5388a7dcadea3ee3f1126676d9f8c452abc0e</id>
<content type='text'>
(From OE-Core rev: 626f518df57868250ea467532b8cf2968d78df6d)

Signed-off-by: Ross Burton &lt;ross.burton@intel.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
</feed>
