<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-openembedded.git/meta-oe/recipes-devtools, branch master</title>
<subtitle>Mirror of git.openembedded.org/meta-openembedded</subtitle>
<id>https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=master</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/'/>
<updated>2026-06-09T14:26:35+00:00</updated>
<entry>
<title>libdbi-perl: upgrade 1.647 -&gt; 1.648</title>
<updated>2026-06-09T14:26:35+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2026-06-09T10:28:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=c317345bd4e7a01a310103b905fb8b94a4dff891'/>
<id>urn:sha1:c317345bd4e7a01a310103b905fb8b94a4dff891</id>
<content type='text'>
License-Update: Copyright year updated to 2026.

Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>ctags: upgrade 6.2.20260531.0 -&gt; 6.2.20260607.0</title>
<updated>2026-06-09T14:26:33+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2026-06-09T10:28:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=6996d9e72d4681e3b05ab3fcd0f35323f3e413c7'/>
<id>urn:sha1:6996d9e72d4681e3b05ab3fcd0f35323f3e413c7</id>
<content type='text'>
Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>android-tools-conf-configs: revert deletion of the recipe</title>
<updated>2026-06-09T14:26:33+00:00</updated>
<author>
<name>Dmitry Baryshkov</name>
<email>dmitry.baryshkov@oss.qualcomm.com</email>
</author>
<published>2026-06-09T10:15:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=50efc66dcb61f2db1c5ac5303274723d92e29e77'/>
<id>urn:sha1:50efc66dcb61f2db1c5ac5303274723d92e29e77</id>
<content type='text'>
The commit 33c1e33d2303 ("android-tools: remove android-tools 5.x from
meta-oe/recipes-devtools") blindly dropped all recipes from the
android-tools dir. Later commits moved the android-tools recipe and
other related recipes from the SELinux dynamic layer, bumping the
version to 29.x, but somehow the author of the patches didn't notice
that the resulting set of packages doesn't work out of box on any
upstream kernels, as the default android-tools-conf setup scripts use
Android-proprietary way of setting up the USB gadget
(/sys/class/android_usb).

Bring back the android-tools-conf-configs recipe, which uses upstream
mechanism (ConfigFS) to setup the USB gadget for ADB.

Fixes: 33c1e33d2303 ("android-tools: remove android-tools 5.x from meta-oe/recipes-devtools")
Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>php: upgrade 8.5.6 -&gt; 8.5.7</title>
<updated>2026-06-08T01:21:51+00:00</updated>
<author>
<name>Jason Schonberg</name>
<email>schonm@gmail.com</email>
</author>
<published>2026-06-07T00:38:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=e14f72c5d7832011fc18760f1a44e56044c981e6'/>
<id>urn:sha1:e14f72c5d7832011fc18760f1a44e56044c981e6</id>
<content type='text'>
This is a bug fix release.

Changelog: https://www.php.net/ChangeLog-8.php#8.5.7

Signed-off-by: Jason Schonberg &lt;schonm@gmail.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>nodejs: fix v8 -Wtemplate-body build error with GCC 15 on ia32</title>
<updated>2026-06-08T01:21:47+00:00</updated>
<author>
<name>Bin Cao</name>
<email>bin.cao.cn@windriver.com</email>
</author>
<published>2026-06-03T02:04:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=b23409aef2bf4fa265c425ce9037b4a7638fafe0'/>
<id>urn:sha1:b23409aef2bf4fa265c425ce9037b4a7638fafe0</id>
<content type='text'>
GCC 15 introduced -Wtemplate-body (enabled by default as an error) which
performs stricter name lookup checking inside template bodies. In the
Int64LoweringReducer template class (only compiled for 32-bit targets),
the expression `__ Tuple&lt;Word32, Word32&gt;(...)` is ambiguous in a
dependent context because GCC cannot determine whether `Tuple` after
the `__` macro expansion (`Asm().`) refers to a template member function
or the struct type `Tuple`.

Add the C++ `template` disambiguator keyword to tell the compiler that
`Tuple` is a dependent template name. This is a minimal backport of commit
7772a2df9d0b4db9947dbb902b4aec33c35401c0.

Signed-off-by: Bin Cao &lt;bin.cao.cn@windriver.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>php: Correct the license to PHP-3.01</title>
<updated>2026-06-08T01:21:46+00:00</updated>
<author>
<name>Peter Kjellerstedt</name>
<email>pkj@axis.com</email>
</author>
<published>2026-06-02T18:48:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=8aade001c144873283a54d74184617654b5c7a4f'/>
<id>urn:sha1:8aade001c144873283a54d74184617654b5c7a4f</id>
<content type='text'>
The license used by PHP is actually PHP-3.01, not PHP-3.0.

Signed-off-by: Peter Kjellerstedt &lt;peter.kjellerstedt@axis.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>exiftool: upgrade 13.58 -&gt; 13.59</title>
<updated>2026-06-08T01:21:36+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2026-06-02T10:07:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=20f49f4e9ee35e233934a899943c9b311764237b'/>
<id>urn:sha1:20f49f4e9ee35e233934a899943c9b311764237b</id>
<content type='text'>
Changelog:
===============
- Security update
- Added NewUUID Extra tag
- Added a new Canon RF lens
- Added config_files/novelty.config to the distribution
- Decode tags from the Sony ILCE-7RM6
- Decode a new FujiFilm tag
- Decode a few more DJI protobuf tags
- Decode a new Ricoh Pentax tag
- Issue Error instead of Warning when writing XMP with some problems which
  could cause loss of data
- Improved error message when reading wrongly encoded CSV or JSON file
- Enhanced -config option to allow piped input with "-config -"
- Enhanced -validate option to do more strict checking of EXIF-for-XMP tags
- Patched -sort option avoid inconsistent output ordering of same-named tags
- Patched Composite SubSec date/time tags to specify the EXIF group for the
  SubSec and OffsetTime tags upon which they are based (avoids non-standard
  XMP tags from being incorrectly used here)
- Fixed bug in -diff feature when finding differences for specific tags and a
  specified tag was missing from the source file

Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>debootstrap: upgrade 1.0.143 -&gt; 1.0.144</title>
<updated>2026-06-08T01:21:35+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2026-06-02T10:07:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=6358f4faeb86ee763b9eb54897bbc6b5d563ebc3'/>
<id>urn:sha1:6358f4faeb86ee763b9eb54897bbc6b5d563ebc3</id>
<content type='text'>
Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>ctags: upgrade 6.2.20260524.0 -&gt; 6.2.20260531.0</title>
<updated>2026-06-08T01:21:35+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2026-06-02T10:07:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=6a1f98457feb845281b289c4e1638eeeaada65d6'/>
<id>urn:sha1:6a1f98457feb845281b289c4e1638eeeaada65d6</id>
<content type='text'>
Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>nodejs: Delete clang libatomic patch</title>
<updated>2026-06-08T01:21:34+00:00</updated>
<author>
<name>Khem Raj</name>
<email>khem.raj@oss.qualcomm.com</email>
</author>
<published>2026-05-24T15:28:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=f3521aa7abfd48fb4d70c79bd707c08ce0efb6db'/>
<id>urn:sha1:f3521aa7abfd48fb4d70c79bd707c08ce0efb6db</id>
<content type='text'>
This patch is not right and moreover not needed anymore
with latest clang

Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
</feed>
