<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/libs/check, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2023-04-21T20:46:58Z</updated>
<entry>
<title>treewide: remove AUTORELEASE</title>
<updated>2023-04-21T20:46:58Z</updated>
<author>
<name>Paul Fertser</name>
</author>
<published>2023-04-21T16:32:27Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0c10c224be81f9221dabfab449855ab6718d2a0c'/>
<id>urn:sha1:0c10c224be81f9221dabfab449855ab6718d2a0c</id>
<content type='text'>
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser &lt;fercerpav@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: back to cmake.mk</title>
<updated>2021-06-13T04:05:01Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-06-10T23:27:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=2e654b19f38f1f941c70a5adcdac6311234362c3'/>
<id>urn:sha1:2e654b19f38f1f941c70a5adcdac6311234362c3</id>
<content type='text'>
Ninja was merged to base and therefore we can now use normal cmake.mk

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>check: update to 0.15.2</title>
<updated>2021-03-14T23:51:10Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-03-14T23:51:10Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=b2418547c573f23a1ed38fafa996ec941631aa67'/>
<id>urn:sha1:b2418547c573f23a1ed38fafa996ec941631aa67</id>
<content type='text'>
Switch to AUTORELEASE for simplicity.

Switch to building with ninja for faster compilation.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>check: bump 0.15.0</title>
<updated>2020-06-30T14:58:50Z</updated>
<author>
<name>Eduardo Abinader</name>
</author>
<published>2020-06-30T14:52:35Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=884f8fe04fe800e4d107da717da58a9c5f071e9b'/>
<id>urn:sha1:884f8fe04fe800e4d107da717da58a9c5f071e9b</id>
<content type='text'>
Compiled and run in x86_64.

Changes:
        -Define CK_ATTRIBUTE_FORMAT for GCC &gt;= 2.95.3, to make use of ‘gnu_printf’ format attribute
        -Refactor tests to fix signed - unsigned conversions
        -Refactor some Check internals to use proper interger types
Signed-off-by: Eduardo Abinader &lt;eduardoabinader@gmail.com&gt;
</content>
</entry>
<entry>
<title>check: bump 0.14.0</title>
<updated>2020-02-06T21:40:34Z</updated>
<author>
<name>Eduardo Abinader</name>
</author>
<published>2020-02-05T19:29:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=13aa2f1a0df6f3bd25a10bfbef2a05772b2ca85f'/>
<id>urn:sha1:13aa2f1a0df6f3bd25a10bfbef2a05772b2ca85f</id>
<content type='text'>
Compiled and run in x86_64.

This release adds support for CMake's FetchContent.

Changes:

    -Add support for FetchContent in CMake
    -Rename CMake project from 'check' to 'Check'
    -Fix for checking for wrong tool when building docs in Autotools
    -Fix compiler warning with printf format

Signed-off-by: Eduardo Abinader &lt;eduardoabinader@gmail.com&gt;
</content>
</entry>
<entry>
<title>check: Update to 0.13.0</title>
<updated>2019-10-30T02:59:06Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2019-10-30T02:36:14Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=26771c14f8d64623134865150448615bace841ff'/>
<id>urn:sha1:26771c14f8d64623134865150448615bace841ff</id>
<content type='text'>
Switch to CMake. Allows to simplify the Makefile.

Replaced InstallDev section with CMAKE_INSTALL.

Added PKG_BUILD_PARALLEL for faster compilation.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: Change .*GPL.*+ licenses to SPDX compatible identifier</title>
<updated>2019-09-10T05:45:15Z</updated>
<author>
<name>Sven Eckelmann</name>
</author>
<published>2019-09-02T13:15:08Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=bbb1ea7345f367ed675dcfe40e36ac32ddf8a2e1'/>
<id>urn:sha1:bbb1ea7345f367ed675dcfe40e36ac32ddf8a2e1</id>
<content type='text'>
The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL
licenses. But a lot of packages did use a different, non-SPDX style with a
"+" at the end instead of "-or-later".

Signed-off-by: Sven Eckelmann &lt;sven@narfation.org&gt;
</content>
</entry>
<entry>
<title>libs/check: update to 0.12.0</title>
<updated>2017-10-22T18:00:06Z</updated>
<author>
<name>Eduardo Abinader</name>
</author>
<published>2017-10-22T17:49:12Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=2fb9ccdbc9ada933f80cb4b1a9aa3dee95c83733'/>
<id>urn:sha1:2fb9ccdbc9ada933f80cb4b1a9aa3dee95c83733</id>
<content type='text'>
Signed-off-by: Eduardo Abinader &lt;eduardoabinader@gmail.com&gt;
</content>
</entry>
<entry>
<title>check: use sha256 checksum</title>
<updated>2017-02-13T15:12:55Z</updated>
<author>
<name>Eduardo Abinader</name>
</author>
<published>2017-02-13T13:06:56Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=ba9e8e9d37455fe0beb8c24e8af8aea4fb3edb26'/>
<id>urn:sha1:ba9e8e9d37455fe0beb8c24e8af8aea4fb3edb26</id>
<content type='text'>
Signed-off-by: Eduardo Abinader &lt;eduardoabinader@gmail.com&gt;
</content>
</entry>
<entry>
<title>check: changing Maintainer</title>
<updated>2017-02-13T09:53:12Z</updated>
<author>
<name>Eduardo Abinader</name>
</author>
<published>2017-02-13T09:51:57Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=2c543903ac56411f50dc056fede2615a5409f822'/>
<id>urn:sha1:2c543903ac56411f50dc056fede2615a5409f822</id>
<content type='text'>
As agreed on https://github.com/openwrt/packages/pull/3238

Signed-off-by: Eduardo Abinader &lt;eduardoabinader@gmail.com&gt;
</content>
</entry>
</feed>
