<feed xmlns='http://www.w3.org/2005/Atom'>
<title>extra-cmake-modules.git/modules, branch v5.67.0</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>ECMAddAppIcon: Add sc in regex to extract extension from valid names</title>
<updated>2020-01-26T12:53:51+00:00</updated>
<author>
<name>Patrick José Pereira</name>
<email>patrickelectric@gmail.com</email>
</author>
<published>2020-01-18T13:44:41+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=e8abb9601c7d08b2f6ba1ff34344acb282ec829e'/>
<id>e8abb9601c7d08b2f6ba1ff34344acb282ec829e</id>
<content type='text'>
Summary: Signed-off-by: Patrick José Pereira &lt;patrickelectric@gmail.com&gt;

Reviewers: tcanabrava, apol

Reviewed By: tcanabrava, apol

Subscribers: kde-frameworks-devel, kde-buildsystem

Tags: #frameworks, #build_system

Differential Revision: https://phabricator.kde.org/D26751
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary: Signed-off-by: Patrick José Pereira &lt;patrickelectric@gmail.com&gt;

Reviewers: tcanabrava, apol

Reviewed By: tcanabrava, apol

Subscribers: kde-frameworks-devel, kde-buildsystem

Tags: #frameworks, #build_system

Differential Revision: https://phabricator.kde.org/D26751
</pre>
</div>
</content>
</entry>
<entry>
<title>ECMAddQch: support &amp; document K_DOXYGEN macro usage</title>
<updated>2020-01-23T10:49:57+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2020-01-23T10:49:57+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=75ec6215b36a3dc75d20f130d22da994289320a6'/>
<id>75ec6215b36a3dc75d20f130d22da994289320a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>EBN extra-cmake-modules comments spelling cleanup</title>
<updated>2019-12-05T09:37:23+00:00</updated>
<author>
<name>John Hayes</name>
<email>jdhayes.linux@gmail.com</email>
</author>
<published>2019-12-05T09:37:15+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=9f441190a36a4579581c37c6ebcb36171fd9a7fd'/>
<id>9f441190a36a4579581c37c6ebcb36171fd9a7fd</id>
<content type='text'>
Summary: Correct spelling in extra-cmake-modules comments.

Reviewers: apol

Reviewed By: apol

Subscribers: kde-frameworks-devel, kde-buildsystem

Tags: #frameworks, #build_system

Differential Revision: https://phabricator.kde.org/D25752
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary: Correct spelling in extra-cmake-modules comments.

Reviewers: apol

Reviewed By: apol

Subscribers: kde-frameworks-devel, kde-buildsystem

Tags: #frameworks, #build_system

Differential Revision: https://phabricator.kde.org/D25752
</pre>
</div>
</content>
</entry>
<entry>
<title>ECMGenerateExportHeader: add NO_BUILD_SET_DEPRECATED_WARNINGS_SINCE flag</title>
<updated>2019-12-01T23:04:38+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2019-11-28T12:48:45+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=23d868a0771224c844513ab16ae423e5302d139b'/>
<id>23d868a0771224c844513ab16ae423e5302d139b</id>
<content type='text'>
Summary:
The original intention has been that by default during the build of a
library no warnings should be emitted on using own deprecated API,
as for one that has to be implemented as well as often deprecated API
is implemented using other deprecated API, so the warnings are not
helpful, and having to add lots of push/pop warnings instructions
in the code for the compiler harms readability more than it helps
ensuring to only use deprecated API where one has to.

The original intention was satisfied due to the default mechanism in the
generated export header code, where DEPRECATED_WARNINGS_SINCE if not set
defaults to DISABLE_DEPRECATED_BEFORE_AND_AT. That though breaks once
the group version of DEPRECATED_WARNINGS_SINCE is set in the build, as
this default has higher priority by design, even if the usage here only
wants to target dependency libs of the same group, not the current library.

To restore the intented default behaviour, by default
DEPRECATED_WARNINGS_SINCE is now explicitely set for the library build
itself to the EXCLUDE_DEPRECATED_BEFORE_AND_AT value, and a new macro
option allows to disable this.

Reviewers: #build_system, #frameworks, dfaure

Reviewed By: dfaure

Subscribers: kde-frameworks-devel, kde-buildsystem

Tags: #frameworks, #build_system

Differential Revision: https://phabricator.kde.org/D25589
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary:
The original intention has been that by default during the build of a
library no warnings should be emitted on using own deprecated API,
as for one that has to be implemented as well as often deprecated API
is implemented using other deprecated API, so the warnings are not
helpful, and having to add lots of push/pop warnings instructions
in the code for the compiler harms readability more than it helps
ensuring to only use deprecated API where one has to.

The original intention was satisfied due to the default mechanism in the
generated export header code, where DEPRECATED_WARNINGS_SINCE if not set
defaults to DISABLE_DEPRECATED_BEFORE_AND_AT. That though breaks once
the group version of DEPRECATED_WARNINGS_SINCE is set in the build, as
this default has higher priority by design, even if the usage here only
wants to target dependency libs of the same group, not the current library.

To restore the intented default behaviour, by default
DEPRECATED_WARNINGS_SINCE is now explicitely set for the library build
itself to the EXCLUDE_DEPRECATED_BEFORE_AND_AT value, and a new macro
option allows to disable this.

Reviewers: #build_system, #frameworks, dfaure

Reviewed By: dfaure

Subscribers: kde-frameworks-devel, kde-buildsystem

Tags: #frameworks, #build_system

Differential Revision: https://phabricator.kde.org/D25589
</pre>
</div>
</content>
</entry>
<entry>
<title>ECMGenerateExportHeader: allow ecm_[..]_format_version wo/ CURRENT_VERSION</title>
<updated>2019-10-30T00:52:08+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2019-10-30T00:52:08+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=bebafb8a2d0030120f8028eae0206c1bf1ba208d'/>
<id>bebafb8a2d0030120f8028eae0206c1bf1ba208d</id>
<content type='text'>
GIT_SILENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GIT_SILENT
</pre>
</div>
</content>
</entry>
<entry>
<title>ECMAddQch: in doxygen config template blank macros with =, not =""</title>
<updated>2019-10-22T13:18:30+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2019-10-22T13:18:30+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=d5ff8448921722a6107d0ea9d05b09f71ae5f0e5'/>
<id>d5ff8448921722a6107d0ea9d05b09f71ae5f0e5</id>
<content type='text'>
GIT_SILENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GIT_SILENT
</pre>
</div>
</content>
</entry>
<entry>
<title>ECMAddQch: support PREDEFINED_MACROS/BLANK_MACROS with blanks &amp; quotes</title>
<updated>2019-10-22T13:16:44+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2019-10-22T13:16:44+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=7cad79d0182b9ab0a88039e39822a704c2b258fb'/>
<id>7cad79d0182b9ab0a88039e39822a704c2b258fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ECMGenerateExportHeader: fix deprecation text concatenation having quotes</title>
<updated>2019-10-22T03:32:35+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2019-10-22T03:32:35+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=b9fa7d41b2300839a4c9b8886fe1bc0359ff5ff7'/>
<id>b9fa7d41b2300839a4c9b8886fe1bc0359ff5ff7</id>
<content type='text'>
GIT_SILENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GIT_SILENT
</pre>
</div>
</content>
</entry>
<entry>
<title>ECMGenerateExportHeader: generate code with C90-compatible comments</title>
<updated>2019-10-16T18:12:48+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2019-10-16T18:12:48+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=ebd61cd51ab5b66ab70bbc918cb4007da1a9af4c'/>
<id>ebd61cd51ab5b66ab70bbc918cb4007da1a9af4c</id>
<content type='text'>
GIT_SILENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GIT_SILENT
</pre>
</div>
</content>
</entry>
<entry>
<title>ECMGenerateExportHeader: adapt too small DEPRECATED_BASE_VERSION,  not fail</title>
<updated>2019-10-11T17:06:05+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2019-10-11T17:06:05+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=1fd35ecb98adcab179ba9bfccd85ca665a363537'/>
<id>1fd35ecb98adcab179ba9bfccd85ca665a363537</id>
<content type='text'>
More friendly to users which mix arguments DEPRECATED_BASE_VERSION &amp;
EXCLUDE_DEPRECATED_BEFORE_AND_AT, but e.g. allow the latter to be
configured during library build setup

GIT_SILENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
More friendly to users which mix arguments DEPRECATED_BASE_VERSION &amp;
EXCLUDE_DEPRECATED_BEFORE_AND_AT, but e.g. allow the latter to be
configured during library build setup

GIT_SILENT
</pre>
</div>
</content>
</entry>
</feed>
