<feed xmlns='http://www.w3.org/2005/Atom'>
<title>extra-cmake-modules.git, branch v5.90.0-rc1</title>
<subtitle>hurd extra-cmake-modules.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/'/>
<entry>
<title>Add support for finding Poppler's Qt6 library</title>
<updated>2021-12-29T11:43:23+00:00</updated>
<author>
<name>Volker Krause</name>
<email>vkrause@kde.org</email>
</author>
<published>2021-12-29T11:43:23+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=29a243a9c12e1f9fdcabcae7fb8c4ab091d1ed68'/>
<id>29a243a9c12e1f9fdcabcae7fb8c4ab091d1ed68</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for finding Qt6 QML modules</title>
<updated>2021-12-27T10:58:19+00:00</updated>
<author>
<name>Volker Krause</name>
<email>vkrause@kde.org</email>
</author>
<published>2021-12-27T10:58:19+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=bc0692797aba5dd7f6d588bb75d3fc60512a9bd5'/>
<id>bc0692797aba5dd7f6d588bb75d3fc60512a9bd5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Fix QT_PLUGIN_PATH for unittests"</title>
<updated>2021-12-19T18:34:36+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-12-19T18:34:36+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=cca11c3432af161fa7da56548e1fc36bb1f4b345'/>
<id>cca11c3432af161fa7da56548e1fc36bb1f4b345</id>
<content type='text'>
As discussed in [1], it's simpler to put the files in builddir/bin/, i.e.
no /plugins subdir, this makes it easier to run the unittest directly from
the CLI/debugger/IDE, without relying on ctest exporting the correct
QT_PLUGIN_PATH; instead QCoreApplication::libraryPaths() will pick up the
plugins in e.g. builddir/bin/kf5/kio/ automatically.

This will be followed by a change in KCoreAddons to remove the /plugins/ dir
from the path in the builddir.

[1] https://invent.kde.org/frameworks/extra-cmake-modules/-/merge_requests/213
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As discussed in [1], it's simpler to put the files in builddir/bin/, i.e.
no /plugins subdir, this makes it easier to run the unittest directly from
the CLI/debugger/IDE, without relying on ctest exporting the correct
QT_PLUGIN_PATH; instead QCoreApplication::libraryPaths() will pick up the
plugins in e.g. builddir/bin/kf5/kio/ automatically.

This will be followed by a change in KCoreAddons to remove the /plugins/ dir
from the path in the builddir.

[1] https://invent.kde.org/frameworks/extra-cmake-modules/-/merge_requests/213
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix QT_PLUGIN_PATH for unittests</title>
<updated>2021-12-19T10:53:01+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-12-19T10:35:52+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=b66c9f3c35aeb76143e754808006b40f0bf7f423'/>
<id>b66c9f3c35aeb76143e754808006b40f0bf7f423</id>
<content type='text'>
It was missing the "/plugins" suffix; found while building KIO with Qt6,
where many unittests were failing with "couldn't create slave" for all slaves;
the kio slaves are in builddir/bin/plugins/kf5/kio, and KPluginMetaData
searches the directory "kf5/kio", and since it's a relative path, it assumes
it's in the "plugins" dir.

Keep the old behaviour for repos that put the plugins in builddir/bin/
directly without a "plugins" dir.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It was missing the "/plugins" suffix; found while building KIO with Qt6,
where many unittests were failing with "couldn't create slave" for all slaves;
the kio slaves are in builddir/bin/plugins/kf5/kio, and KPluginMetaData
searches the directory "kf5/kio", and since it's a relative path, it assumes
it's in the "plugins" dir.

Keep the old behaviour for repos that put the plugins in builddir/bin/
directly without a "plugins" dir.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing prefix to version-less install directory aliases</title>
<updated>2021-12-18T11:18:55+00:00</updated>
<author>
<name>Volker Krause</name>
<email>vkrause@kde.org</email>
</author>
<published>2021-12-18T11:18:55+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=1cfcd2a36035f962a27ab0a431355f302008ad0d'/>
<id>1cfcd2a36035f962a27ab0a431355f302008ad0d</id>
<content type='text'>
So far we were defining e.g. KSERVICESDIR next to KDE_INSTALL_KSERVICES5DIR
here, rather than the intended KDE_INSTALL_KSERVICESDIR.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
So far we were defining e.g. KSERVICESDIR next to KDE_INSTALL_KSERVICES5DIR
here, rather than the intended KDE_INSTALL_KSERVICESDIR.
</pre>
</div>
</content>
</entry>
<entry>
<title>GIT_SILENT Upgrade ECM version to 5.90.0.</title>
<updated>2021-12-13T11:34:54+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2021-12-13T11:34:54+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=587b091eaf2bdaa52077c9dd123d470de674b526'/>
<id>587b091eaf2bdaa52077c9dd123d470de674b526</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>FindInotify.cmake: add target support</title>
<updated>2021-12-09T23:04:52+00:00</updated>
<author>
<name>Rosen Penev</name>
<email>rosenp@gmail.com</email>
</author>
<published>2021-12-09T23:04:52+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=ee7b870eb18b040d45fa07fe8efdc9698d01407e'/>
<id>ee7b870eb18b040d45fa07fe8efdc9698d01407e</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>FindInotify.cmake: add support for SunOS</title>
<updated>2021-12-06T23:43:08+00:00</updated>
<author>
<name>Rosen Penev</name>
<email>rosenp@gmail.com</email>
</author>
<published>2021-12-06T23:23:12+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=7d81e61da2127685298d91ebc041ec26bc086d1a'/>
<id>7d81e61da2127685298d91ebc041ec26bc086d1a</id>
<content type='text'>
SunOS and variants (Solaris, OpenSolaris, illumos, etc al.) do not need a separate library for inotify.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SunOS and variants (Solaris, OpenSolaris, illumos, etc al.) do not need a separate library for inotify.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add CI for FreeBSD and Android</title>
<updated>2021-12-05T13:33:11+00:00</updated>
<author>
<name>Volker Krause</name>
<email>vkrause@kde.org</email>
</author>
<published>2021-12-05T13:33:11+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=b5684cb4b0635066b6807ae35b4af442860dcc44'/>
<id>b5684cb4b0635066b6807ae35b4af442860dcc44</id>
<content type='text'>
Might explain why the kcoreaddons CI isn't seeing ECM updates?
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Might explain why the kcoreaddons CI isn't seeing ECM updates?
</pre>
</div>
</content>
</entry>
<entry>
<title>Define version-less install targets in KDEInstallDirs5.cmake</title>
<updated>2021-12-05T00:13:05+00:00</updated>
<author>
<name>Volker Krause</name>
<email>vkrause@kde.org</email>
</author>
<published>2021-11-30T15:59:32+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=744494e6cdaee066064b9fecd86040e3b232a2f7'/>
<id>744494e6cdaee066064b9fecd86040e3b232a2f7</id>
<content type='text'>
This enables forward-compatibility with KDEInstallDirs6.cmake

This was partly done already, but in the wrong order and not for all
versioned variables.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This enables forward-compatibility with KDEInstallDirs6.cmake

This was partly done already, but in the wrong order and not for all
versioned variables.
</pre>
</div>
</content>
</entry>
</feed>
